:root {
  --bg: #070a14;
  --bg-soft: #0b1224;
  --bg-panel: #0f1830;
  --text: #ecf2ff;
  --muted: #a5b5d8;
  --line: rgba(162, 179, 220, 0.25);
  --fire-a: #ff2f4f;
  --fire-b: #ff7a18;
  --fire-c: #ffc857;
  --cyan: #22d3ee;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -6%, rgba(255, 122, 24, 0.26) 0, rgba(255, 122, 24, 0) 28%),
    radial-gradient(circle at 88% 8%, rgba(34, 211, 238, 0.2) 0, rgba(34, 211, 238, 0) 36%),
    var(--bg);
  line-height: 1.8;
  overflow-x: hidden;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--cyan), var(--fire-a), var(--fire-c));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.6);
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-header {
  position: relative;
  padding: 1.1rem 0 2.4rem;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
  z-index: -1;
}

.glow-orb-one {
  width: 260px;
  height: 260px;
  background: rgba(255, 79, 79, 0.35);
  top: -85px;
  left: -90px;
}

.glow-orb-two {
  width: 340px;
  height: 340px;
  background: rgba(34, 211, 238, 0.24);
  top: 60px;
  right: -140px;
}

.top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 200, 87, 0.65);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(140deg, #0e1730, #0a1122 58%, #131e3a);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.35);
}

.brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  padding: 0.2rem 0.4rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-cta {
  display: flex;
  gap: 0.65rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #091326;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire-a), var(--fire-b) 55%, var(--fire-c));
  box-shadow: 0 9px 28px rgba(255, 86, 33, 0.46);
}

.btn-secondary {
  background: linear-gradient(135deg, #98f8ff, #47d9ff 55%, #7fe7ff);
  box-shadow: 0 9px 24px rgba(34, 211, 238, 0.4);
}

.btn.big {
  font-size: 1.04rem;
  padding: 0.92rem 1.42rem;
}

.pulse {
  animation: pulseGlow 2.4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.15) brightness(1.04);
  }
}

.breadcrumb-wrap {
  margin-top: 0.85rem;
  margin-bottom: 1.2rem;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb-list li + li::before {
  content: '›';
  margin-right: 0.38rem;
  color: #61729b;
}

.breadcrumb-list a {
  color: var(--cyan);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(165deg, rgba(12, 20, 40, 0.95), rgba(8, 13, 25, 0.95));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-family: 'Space Mono', monospace;
  color: var(--cyan);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.25;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

h2 {
  font-size: clamp(1.42rem, 2.2vw, 2.1rem);
}

h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.34rem);
}

.lead {
  color: #d8e4ff;
  max-width: 66ch;
}

.cta-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.adres-panel {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 211, 238, 0.4);
  background: linear-gradient(140deg, rgba(8, 17, 34, 0.95), rgba(9, 20, 40, 0.95));
}

.adres-title {
  margin: 0 0 0.45rem;
  font-weight: 700;
}

.adres-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.adres-kod {
  flex: 1;
  display: inline-block;
  font-family: 'Space Mono', monospace;
  background: rgba(13, 23, 45, 0.9);
  border: 1px dashed rgba(255, 200, 87, 0.6);
  padding: 0.62rem 0.74rem;
  border-radius: 10px;
  color: #ffe9be;
  word-break: break-all;
}

.copy-btn {
  border: 1px solid rgba(255, 200, 87, 0.65);
  background: linear-gradient(130deg, #ff9a35, #ffc55e);
  color: #1a1405;
  font-weight: 800;
  padding: 0.62rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
}

.adres-note {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.rating-card {
  margin-top: 1rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.32rem;
  padding: 0.82rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 24, 0.56);
  background: linear-gradient(130deg, rgba(255, 47, 79, 0.16), rgba(255, 122, 24, 0.08));
}

.rating-card strong {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #ffe7c8;
}

.rating-card span {
  font-family: 'Space Mono', monospace;
  color: var(--cyan);
}

.rating-card p {
  margin: 0;
  color: #d0dcfa;
  max-width: 38ch;
  font-size: 0.92rem;
}

.hero-art {
  background: linear-gradient(190deg, rgba(10, 17, 32, 0.95), rgba(10, 17, 34, 0.75));
  border: 1px solid var(--line);
  border-radius: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
}

.flame-svg {
  width: 96%;
  max-width: 490px;
  overflow: visible;
}

.flame-main,
.flame-inner {
  transform-origin: center bottom;
  animation: sway 5.2s ease-in-out infinite;
}

.flame-inner {
  animation-duration: 4s;
}

.flame-glow {
  animation: pulseCore 3s ease-in-out infinite;
}

.spark {
  animation: drift 4.2s ease-in-out infinite;
}

.spark-two { animation-delay: 0.8s; }
.spark-three { animation-delay: 1.3s; }

@keyframes sway {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(1.4deg) translateY(-4px); }
}

@keyframes pulseCore {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.55; }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(-14px); opacity: 0.45; }
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(90deg, #0a1022, #111b35, #0c142a);
  margin: 0.5rem 0;
}

.marquee-track {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.68rem 0;
  white-space: nowrap;
  width: max-content;
  color: #d5e4ff;
  font-family: 'Space Mono', monospace;
  animation: marquee 24s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

main {
  padding-top: 1.15rem;
  padding-bottom: 4.8rem;
}

.content-section,
.panel,
.faq-section,
.countdown {
  margin-top: 1.15rem;
  background: linear-gradient(150deg, rgba(13, 23, 46, 0.95), rgba(9, 15, 28, 0.95));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1rem, 2vw, 1.75rem);
  box-shadow: var(--shadow);
}

.content-section p,
.panel p,
.countdown p,
.faq-section p,
li {
  color: #d9e6ff;
}

.content-section ul {
  margin: 0.4rem 0 1rem 1.25rem;
  padding: 0;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.timer div {
  border: 1px solid rgba(255, 200, 87, 0.5);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 122, 24, 0.12), rgba(34, 211, 238, 0.06));
  text-align: center;
  padding: 0.7rem 0.4rem;
}

.timer strong {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 1.4rem;
}

.timer span {
  font-size: 0.86rem;
  color: var(--muted);
}

.slider {
  position: relative;
}

.slides {
  min-height: 205px;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide blockquote {
  margin: 0;
  font-size: 1.08rem;
}

.author {
  margin-top: 0.7rem;
  font-family: 'Space Mono', monospace;
  color: var(--cyan);
}

.dots {
  margin-top: 0.62rem;
  display: flex;
  gap: 0.42rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(212, 225, 255, 0.26);
  border: none;
  cursor: pointer;
}

.dot.active {
  background: linear-gradient(130deg, var(--fire-a), var(--fire-c));
  box-shadow: 0 0 14px rgba(255, 122, 24, 0.62);
}

.faq-list details {
  border: 1px solid rgba(136, 160, 209, 0.36);
  border-radius: 14px;
  padding: 0.74rem 0.9rem;
  background: rgba(6, 12, 24, 0.45);
  margin-bottom: 0.64rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #e9f1ff;
}

.faq-list p {
  margin: 0.6rem 0 0;
  color: #d4e2ff;
}

.site-footer {
  padding-bottom: 6.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0.9rem 0;
  color: #a9b9de;
}

.site-footer a {
  color: #8de9ff;
  text-decoration: none;
  font-weight: 700;
}

.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  background: linear-gradient(180deg, rgba(9, 14, 28, 0.9), rgba(6, 10, 20, 0.98));
  border-top: 1px solid rgba(140, 159, 212, 0.36);
  backdrop-filter: blur(8px);
  padding: 0.62rem 0.86rem calc(0.62rem + env(safe-area-inset-bottom, 0));
  display: none;
  gap: 0.6rem;
}

.mobile-dock .btn {
  flex: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .top-nav {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.65rem;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  body {
    line-height: 1.7;
  }

  .site-header,
  main,
  .site-footer {
    width: min(1180px, calc(100% - 1rem));
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    flex: 1;
  }

  .timer {
    grid-template-columns: repeat(2, minmax(70px, 1fr));
  }

  .slides {
    min-height: 260px;
  }

  .mobile-dock {
    display: flex;
  }

  .site-footer {
    padding-bottom: 7.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
