/* ============================
   FONT-FACE: FORZA
   ============================ */
@font-face {
  font-family: 'Forza';
  src: url('../fonts/Forza-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Forza';
  src: url('../fonts/Forza-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Forza';
  src: url('../fonts/Forza-BookItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Forza';
  src: url('../fonts/Forza-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Forza';
  src: url('../fonts/Forza-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ============================
   CSS VARIABLES
   ============================ */
:root {
  --bg: #050505;
  --bg-card: #0A0A0A;
  --primary: #8A2BE2;
  --secondary: #B764FF;
  --accent: #F04CFF;
  --white: #FFFFFF;
  --text: #D5D5D5;
  --text-muted: #888;
  --font-title: 'Forza', sans-serif;
  --font-body: 'Forza', sans-serif;
  --container: 1200px;
  --header-h: 80px;
  --section-gap: 120px;
  --radius: 25px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-primary: 0 0 20px rgba(138, 43, 226, 0.4), 0 0 60px rgba(138, 43, 226, 0.15);
  --glow-accent: 0 0 20px rgba(240, 76, 255, 0.4), 0 0 60px rgba(240, 76, 255, 0.15);
  --glow-text: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* ============================
   RESET / BASE
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ============================
   UTILITY
   ============================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-gap) 0;
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section__title--center {
  text-align: center;
}

.section__title-badge {
  background-color: var(--accent);
  padding: 10px 40px;
  border-radius: 7px;
  font-size: 2rem;
  text-transform: uppercase;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 14px 32px;
  box-shadow: var(--glow-primary);
}

.btn--primary:hover {
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.6), 0 0 80px rgba(240, 76, 255, 0.3);
  transform: translateY(-2px);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.btn--primary:hover::before {
  transform: translateX(100%);
}

.btn--ghost {
  border: 1.5px solid var(--primary);
  color: var(--white);
  padding: 14px 32px;
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(138, 43, 226, 0.1);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 17px;
}

/* ============================
   PARTICLES CANVAS
   ============================ */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
}

/* ============================
   DECORATIVE CUBES
   ============================ */
.decorative-cubes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cube {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(138, 43, 226, 0.2);
  border-radius: 8px;
  background: rgba(138, 43, 226, 0.03);
  animation: floatCube linear infinite;
}

.cube::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(138, 43, 226, 0.1);
  border-radius: 4px;
}

.cube--1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 5%;
  animation-duration: 20s;
  animation-delay: -2s;
}

.cube--2 {
  width: 50px;
  height: 50px;
  top: 60%;
  left: 85%;
  animation-duration: 25s;
  animation-delay: -8s;
}

.cube--3 {
  width: 40px;
  height: 40px;
  top: 30%;
  left: 92%;
  animation-duration: 18s;
  animation-delay: -5s;
}

.cube--4 {
  width: 70px;
  height: 70px;
  top: 75%;
  left: 10%;
  animation-duration: 22s;
  animation-delay: -12s;
}

.cube--5 {
  width: 35px;
  height: 35px;
  top: 45%;
  left: 50%;
  animation-duration: 28s;
  animation-delay: -3s;
}

@keyframes floatCube {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.4;
  }

  25% {
    transform: translateY(-30px) rotate(90deg) scale(1.05);
    opacity: 0.6;
  }

  50% {
    transform: translateY(10px) rotate(180deg) scale(0.95);
    opacity: 0.3;
  }

  75% {
    transform: translateY(-20px) rotate(270deg) scale(1.02);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0) rotate(360deg) scale(1);
    opacity: 0.4;
  }
}

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(138, 43, 226, 0.12);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1001;
}

.header__logo img {
  filter: drop-shadow(0 0 6px rgba(138, 43, 226, 0.5));
  max-width: 100%;
  width: 200px;
}

.header__nav {
  display: flex;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 12px 30px;
}

.header__menu {
  display: flex;
  gap: 32px;
}

.header__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition);
}

.header__link:hover {
  color: var(--white);
}

.header__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__cta {
  font-size: 14px;
  padding: 10px 24px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 34px;
  justify-content: center;
  z-index: 1001;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 7px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
  background: rgba(138, 43, 226, 0.06);
  animation: glowPulse 3s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero__text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  text-align: center;
  padding: 20px 0;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

.hero__character {
  position: relative;
  width: 100%;
  /* max-width: 400px; */
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero__character svg {
  width: 100%;
  height: auto;
}

.hero-logo {
  margin-bottom: 35px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  animation: floatOrb linear infinite;
}

.hero__orb--1 {
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  top: 10%;
  right: 20%;
  animation-duration: 4s;
}

.hero__orb--2 {
  width: 4px;
  height: 4px;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  bottom: 20%;
  right: 10%;
  animation-duration: 3.5s;
  animation-delay: -1s;
}

.hero__orb--3 {
  width: 5px;
  height: 5px;
  background: var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
  top: 40%;
  left: 5%;
  animation-duration: 5s;
  animation-delay: -2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  25% {
    transform: translate(10px, -15px) scale(1.3);
    opacity: 1;
  }

  50% {
    transform: translate(-5px, -30px) scale(0.8);
    opacity: 0.5;
  }

  75% {
    transform: translate(-15px, -10px) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* ============================
   ABOUT
   ============================ */
.about {
  position: relative;
  z-index: 1;
}

.about__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about__inner .section__title {
  text-align: center;
}

.about__text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  margin: 0 auto 24px;
}

.about__text:last-child {
  margin-bottom: 0;
}

/* ============================
   BENEFITS
   ============================ */
.benefits {
  position: relative;
  z-index: 1;
}

.benefits__title {
  text-align: center;
  margin-top: 40px;
  color: #000;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* ============================
   CARD
   ============================ */
.card {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(138, 43, 226, 0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: var(--glow-primary);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 135px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin: auto;
  transition: var(--transition);
}

.card:hover .card__icon {
  background: rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.card__title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

/* ============================
   PARTICIPANTS
   ============================ */
.participants {
  position: relative;
  z-index: 1;
}

.participants__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 50px;
}

.participants__text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.participants__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.participants__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: var(--text);
}

.participants__item svg {
  flex-shrink: 0;
}

.participants__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.participants__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 100, 255, 0.15), transparent 70%);
  animation: glowPulse 5s ease-in-out infinite;
}

.participants__character {
  position: relative;
  width: 100%;
  animation: float 7s ease-in-out infinite;
  z-index: 1;
}

.participants__character svg {
  width: 100%;
  height: auto;
}

/* ============================
   STEPS
   ============================ */
.steps {
  position: relative;
  z-index: 1;
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.step-card {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(138, 43, 226, 0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  gap: 10px;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: var(--glow-primary);
  transform: translateY(-4px);
}

.step-card:hover::before {
  opacity: 1;
}

.step-card__number {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  position: absolute;
  top: -20px;
  background: var(--accent);
  padding: 10px;
  border-radius: var(--radius);
}

.step-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card__title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.step-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

/* ============================
   PRIZES
   ============================ */
.prizes {
  position: relative;
  z-index: 1;
}

.prizes__subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text);
  max-width: 600px;
  margin: -16px auto 60px;
}

.prizes__podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}

.prize {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(138, 43, 226, 0.15);
  background: rgba(10, 10, 10, 0.8);
  transition: var(--transition);
  position: relative;
}

.prize:hover {
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: var(--glow-primary);
  transform: translateY(-4px);
}

.prize--second {
  padding-bottom: 48px;
}

.prize--first {
  padding: 40px 36px 60px;
  border-color: rgba(240, 76, 255, 0.2);
}

.prize--first:hover {
  border-color: rgba(240, 76, 255, 0.4);
  box-shadow: var(--glow-accent);
}

.prize--third {
  padding-bottom: 48px;
}

.prize__character {
  width: 120px;
  margin-bottom: 16px;
}

.prize--second .prize__character {
  width: 100px;
}

.prize--third .prize__character {
  width: 100px;
}

.prize__character svg {
  width: 100%;
  height: auto;
}

.prize--first .prize__character {
  animation: float 5s ease-in-out infinite;
}

.prize--second .prize__character {
  animation: float 6s ease-in-out infinite;
  animation-delay: -2s;
}

.prize--third .prize__character {
  animation: float 5.5s ease-in-out infinite;
  animation-delay: -4s;
}

.prize__medal {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.prize__medal--gold {
  font-size: 36px;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(240, 76, 255, 0.6);
}

.prize__title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.prize__text {
  font-size: 14px;
  color: var(--text);
  text-align: center;
}

/* ============================
   FAQ
   ============================ */
.faq {
  position: relative;
  z-index: 1;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.faq__item {
  border: 1px solid rgba(138, 43, 226, 0.12);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.6);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover {
  border-color: rgba(138, 43, 226, 0.25);
}

.faq__item.active {
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq__number {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  min-width: 24px;
}

.faq__text {
  flex: 1;
  color: var(--white);
}

.faq__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  color: var(--primary);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

/* ============================
   COUNTDOWN
   ============================ */
.countdown {
  position: relative;
  z-index: 1;
}

.countdown__box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: var(--radius);
  padding: 60px 40px;
  background: rgba(10, 10, 10, 0.6);
  position: relative;
  overflow: hidden;
}

.countdown__box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), transparent, rgba(240, 76, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.countdown__box .section__title {
  margin-bottom: 48px;
}

.countdown__timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown__value {
  font-family: var(--font-title);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.3));
}

.countdown__label {
  font-family: var(--font-title);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 8px;
}

.countdown__separator {
  font-family: var(--font-title);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  padding-top: 0;
  line-height: 1;
}

.countdown__text {
  font-size: 16px;
  color: var(--text);
  max-width: 400px;
  margin: 0 auto;
}

/* ============================
   CTA FINAL
   ============================ */
.cta-final {
  position: relative;
  z-index: 1;
}

.cta-final__box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px;
  border: 1px solid rgba(138, 43, 226, 0.15);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-final__box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), transparent, rgba(240, 76, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-final__character {
  width: 200px;
  margin: 0 auto 32px;
  animation: float 6s ease-in-out infinite;
}

.cta-final__character svg {
  width: 100%;
  height: auto;
}

.cta-final__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-final__text {
  font-size: 18px;
  color: var(--text);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-final__btn {
  margin-bottom: 40px;
}

.cta-final__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.cta-final__logo svg {
  filter: drop-shadow(0 0 6px rgba(138, 43, 226, 0.3));
}

/* ============================
   FOOTER
   ============================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(138, 43, 226, 0.1);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__copy {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================
   ANIMATIONS - KEYFRAMES
   ============================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================
   SELECTION
   ============================ */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}