/* ============================================================
   INDEX PAGE SPECIFIC STYLES
============================================================ */


/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/home/home-banner-1.webp');
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0%{transform:scale(1);} 100%{transform:scale(1.06);} }

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(8,10,15,0.93) 0%,
    rgba(8,10,15,0.75) 50%,
    rgba(255,61,90,0.12) 100%
  );
  z-index: 1;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,61,90,0.15), transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat1 10s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(155,92,255,0.1), transparent 70%);
  bottom: -50px; left: -50px;
  animation: orbFloat2 12s ease-in-out infinite alternate;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,183,3,0.08), transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat1 8s ease-in-out infinite alternate;
}
@keyframes orbFloat1 { 0%{transform:translate(0,0);} 100%{transform:translate(30px,-20px);} }
@keyframes orbFloat2 { 0%{transform:translate(0,0);} 100%{transform:translate(-20px,30px);} }

.hero-content { position: relative; z-index: 2; }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,61,90,0.12);
  border: 1px solid rgba(255,61,90,0.35);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.4s infinite;
  box-shadow: 0 0 6px var(--red);
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

/* Hero title */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: #fff;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 40px rgba(255,61,90,0.5);
}
.hero-line {
  display: block;
  animation: slideUp 0.8s ease both;
}
.hero-line.line-1 { animation-delay: 0.1s; }
.hero-line.line-2 { animation-delay: 0.25s; }
.hero-line.line-3 { animation-delay: 0.4s; }

@keyframes slideUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform: translateY(-20px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-caption {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
  animation: slideUp 0.8s 0.5s ease both;
}
.hero-caption strong { color: #fff; font-weight: 700; }

.hero-cta { animation: slideUp 0.8s 0.65s ease both; }

.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--red), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(10px);
}
.btn-glow:hover::after { opacity: 1; }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: slideUp 0.8s 0.8s ease both;
}
.hero-stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero-stat-item .lbl { font-size: 0.7rem; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* Hero Visual - floating cards */
.hero-visual {
  position: relative;
  width: 380px;
  height: 450px;
  animation: slideUp 0.8s 0.3s ease both;
}
.hero-visual-card {
  position: absolute;
  width: 225px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-visual-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.hvc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px 4px;
  background: rgba(13,15,24,0.95);
}
.hvc-tag {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hvc-live {
  font-size: 0.6rem;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}
.hvc-live i { font-size: 0.4rem; animation: blink 1.2s infinite; }
.hvc-prize { font-size: 0.62rem; color: var(--gold); font-weight: 700; }
.hvc-name {
  padding: 4px 10px 10px;
  background: rgba(13,15,24,0.95);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.card-1 { top: 0; left: 0px; animation: cardFloat1 6s ease-in-out infinite alternate; }
.card-2 { top: 150px; right: 10px; animation: cardFloat2 7s ease-in-out infinite alternate; }
.card-3 { bottom: 0px; left: 0px; animation: cardFloat3 5.5s ease-in-out infinite alternate; }

@keyframes cardFloat1 { 0%{transform:translateY(0) rotate(-2deg);} 100%{transform:translateY(-12px) rotate(1deg);} }
@keyframes cardFloat2 { 0%{transform:translateY(0) rotate(2deg);} 100%{transform:translateY(-16px) rotate(-1deg);} }
@keyframes cardFloat3 { 0%{transform:translateY(0) rotate(-1deg);} 100%{transform:translateY(-10px) rotate(2deg);} }

/* Floating badges */
.hero-prize-float {
  position: absolute;
  top: 20px; right: -10px;
  background: rgba(13,15,24,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,183,3,0.3);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: cardFloat2 4s ease-in-out infinite alternate;
  z-index: 3;
}
.hpf-icon { font-size: 1.8rem; }
.hpf-title { font-size: 0.62rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.hpf-val { font-size: 0.88rem; font-weight: 700; color: var(--text); }

.hero-join-float {
  position: absolute;
  bottom: 30px;
  right: 0px;
  background: rgba(13,15,24,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: cardFloat1 5s ease-in-out infinite alternate;
  z-index: 3;
}
.hj-avatars { display: flex; }
.hj-avatars img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  object-fit: cover;
}
.hj-avatars img:first-child { margin-left: 0; }
.hj-count { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.hj-label { font-size: 0.62rem; color: var(--text3); }

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.3; transform: scaleY(1); }
  50% { opacity:1; transform: scaleY(0.5); }
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track { white-space: nowrap; }
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marqueeScroll 100s linear infinite;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}
.marquee-content .sep { color: rgba(255,255,255,0.4); font-size: 0.6rem; }
@keyframes marqueeScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ── HOW IT WORKS ── */
.how-section { padding: 100px 0; background: var(--bg2); }
.how-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.how-step-card {
  flex: 1 1 230px;
  text-align: center;
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  cursor: default;
}
.how-step-card:hover {
  border-color: rgba(255,61,90,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.how-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 10px; right: 14px;
  letter-spacing: -1px;
}
.how-step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}
.how-step-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.how-step-card p { font-size: 0.84rem; color: var(--text2); line-height: 1.6; }
.how-step-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(2px);
}
.how-step-card:hover .how-step-glow { opacity: 0.8; }

.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--text3);
  font-size: 1.1rem;
}

/* ── COMP SECTION ── */
.comp-section { padding: 100px 0; background: var(--bg); }

/* Filter tabs */
.comp-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-tab {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text2);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-family: 'Roboto', sans-serif;
}
.filter-tab:hover { border-color: var(--border2); color: var(--text); }
.filter-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,61,90,0.35);
}

/* ── ABOUT ── */
.about-section { padding: 100px 0; background: var(--bg2); }

.about-visual {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--bg2);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-stat-float {
  position: absolute;
  top: 30px; right: 0;
  background: var(--red);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  z-index: 2;
}
.asf-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; line-height: 1; }
.asf-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.75); font-weight: 700; letter-spacing: 1px; }

.about-since-float {
  position: absolute;
  bottom: 80px; left: 10px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  backdrop-filter: blur(8px);
  z-index: 3;
}

.about-feature {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.2s;
}
.about-feature:hover { border-color: rgba(255,61,90,0.25); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.about-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.about-feature h6 { font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
.text-sub { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }

/* ── PRIZES ── */
.prizes-section { padding: 100px 0; background: #04060b; }

.prize-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
.prize-glow-ring {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,183,3,0.15);
  box-shadow: 0 0 60px rgba(255,183,3,0.1), inset 0 0 60px rgba(255,183,3,0.05);
  animation: ringPulse 3s ease-in-out infinite alternate;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}
.prize-trophy-img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.prize-total-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: linear-gradient(135deg, rgba(255,183,3,0.9), rgba(255,140,0,0.9));
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(255,183,3,0.3);
}
.ptb-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(0,0,0,0.6); margin-bottom: 2px; }
.ptb-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #1a0a00; line-height: 1; }

/* ── CONTACT ── */
.contact-section { padding: 100px 0; background: var(--bg2); }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cii-icon {
  width: 48px; height: 48px;
  background: rgba(255,61,90,0.1);
  border: 1px solid rgba(255,61,90,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cii-label { font-size: 0.72rem; font-weight: 700; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.cii-val { font-size: 0.9rem; color: var(--text); font-weight: 500; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-card h5 { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.contact-card .form-control,
.contact-card textarea {
  background: var(--bg2) !important;
  border-color: var(--border2);
  color: var(--text);
  min-height: auto;
}
.contact-card textarea { resize: vertical; min-height: 120px; }

/* ── TAGLINE ── */
.tagline-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.tagline-bg {
  position: absolute;
  inset: 0;
  background: var(--bg3);
}
.tagline-bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,61,90,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}

.tagline-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--red);
  border-radius: 50%;
  animation: particleFly linear infinite;
  opacity: 0.4 !important;
}
@keyframes particleFly {
  0%   { transform: translateY(0) scale(1); opacity: 0.4; }
  100% { transform: translateY(-400px) scale(0); opacity: 0; }
}

.tagline-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -2px;
}
.tagline-sub {
  font-size: 1.05rem;
  color: var(--text2);
  margin-top: 20px;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-section { padding-top: 100px; min-height: auto; }
  .how-grid { flex-direction: column; }
  .how-connector { transform: rotate(90deg); }
  /* .about-visual { height: 320px; } */
  .contact-card { padding: 28px 20px; }
}
@media (max-width: 767px) {
  .hero-stats { gap: 18px; }
  .hero-stat-divider { display: none; }
  /* .hero-visual { display: none; } */
 /*  .about-visual { height: 260px; } */
  .tagline-main { font-size: clamp(3rem, 12vw, 6rem); }
}

@media (max-width: 580px) {
    .hero-section {
        padding-top: 50px;
    }
}