/* ==========================================================================
   TEENS ROCK 2026 — theme tokens
   ========================================================================== */
:root {
  --bg: #07070c;
  --bg-soft: #0f0f18;
  --purple: #7c3aed;
  --purple-deep: #5b21b6;
  --pink: #ec4899;
  --gv-purple: var(--purple);
  --magenta: #c026d3;
  --text: #f5f5f7;
  --text-muted: #bbbbc1;
  --line: #1b3345;

  --purple: #a665ff;
  --blue: #5f42e8;

  --bg-soft: #0f0f18;

    --gv-card-border: rgba(166, 101, 255, 0.45);
  --gv-prize-border: rgba(166, 101, 255, 0.4);

  --uppercase:uppercase;

  --bg-footer: linear-gradient(180deg, #0a0411 0%, #330e5c 100%);


  --font-Compressed-y: 'GT America Y Compressed', Impact, sans-serif;
  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}


.otp-hint.text-muted{color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;}





/* Participating Bands End */

.band-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  margin-bottom: 2.25rem;
  color: var(--text-muted);
  font-size: 1.92rem;
  text-align: center;
}
.band-notice strong {
  color: #a864fb;
  font-weight: 700;
}
.band-notice i { color: var(--purple); font-size: 1rem; flex-shrink: 0; }

.band-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.band-section-title {
  font-family: var(--font-Compressed-y);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  position: relative;
  padding-left: 14px;
}
.band-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--purple), var(--pink));
}
.band-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.band-view-toggle i { font-size: 0.95rem; }

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.band-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.band-card:hover {
  border-color: rgba(166, 101, 255, 0.5);
  transform: translateY(-3px);
}

.band-card-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  display: block;
}
.band-card-thumb.grad-1 { background: linear-gradient(135deg, #4c1d95, #db2777); }
.band-card-thumb.grad-2 { background: linear-gradient(135deg, #1d3f95, #0891b2); }
.band-card-thumb.grad-3 { background: linear-gradient(135deg, #7c2d12, #c026d3); }
.band-card-thumb.grad-4 { background: linear-gradient(135deg, #064e3b, #0f766e); }

.band-card-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.6) 100%);
}

.band-card-note {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

.band-card-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.band-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  background:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)) padding-box,
    linear-gradient(135deg, var(--purple), var(--pink)) border-box;
  border: 2px solid transparent;
  transition: transform 0.2s ease;
}
.band-card .band-card-play { transform: translate(-50%, -50%) scale(1.06); }

.band-card-body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.band-card-body .btn-submit{ padding-top: 6px; padding-bottom: 6px;}
.band-card-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
  font-family: var(--font-body);
  margin-bottom: 11px;
}
.band-card-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.35;
  margin-bottom: 0;
	min-height: 36px;
}
.band-card-meta i { color: var(--purple); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.band-card-fans {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pink);
  font-size: 0.85rem;
}
.band-card-fans i { color: var(--pink); font-size: 0.85rem; }

.band-card-vote-btn {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.band-card-vote-btn i { font-size: 0.85rem; }

/* ---- List view ---- */
.band-grid.is-list {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.band-grid.is-list .band-card {
  flex-direction: row;
  align-items: center;
}
.band-grid.is-list .band-card-thumb {
  width: 128px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.band-grid.is-list .band-card-body {
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 1.25rem;
  flex-wrap: wrap;
}
.band-grid.is-list .band-card-name-wrap { flex: 1; min-width: 160px; }
.band-grid.is-list .band-card-fans { flex-shrink: 0; }
.band-grid.is-list .band-card-vote-btn { width: auto; margin-top: 0; padding: 0.6rem 1.5rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1199.98px) {
  .band-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  .band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .band-card-body { padding: 0.9rem 0.9rem 1rem; gap: 0.45rem; }
  .band-card-name { font-size: 0.95rem; }
  .band-notice { font-size: 0.82rem; padding: 0.75rem 1rem; text-align: center; }
  .band-section-head { gap: 0.75rem; }

  .band-grid.is-list .band-card { flex-direction: column; align-items: stretch; }
  .band-grid.is-list .band-card-thumb { width: 100%; aspect-ratio: 4 / 3; }
  .band-grid.is-list .band-card-body { flex-direction: column; align-items: stretch; padding: 1rem; }
  .band-grid.is-list .band-card-vote-btn { width: 100%; }
}

@media (max-width: 480px) {
  .band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
  .band-card-body { padding: 0.75rem 0.75rem 0.9rem; }
  .band-card-name { font-size: 0.86rem; }
  .band-card-meta, .band-card-fans { font-size: 0.72rem; }
  .band-card-vote-btn { font-size: 0.68rem; padding: 0.55rem 0.6rem; }
  .band-card-play { width: 42px; height: 42px; font-size: 0.9rem; }
  .band-card-note { width: 24px; height: 24px; font-size: 0.7rem; }
  .band-card-duration { font-size: 0.66rem; padding: 0.15rem 0.4rem; }
}

@media (max-width: 360px) {
  .band-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   Public Voting Leaderboard 
   ========================================================================== */

.lb-info {
  --lb-info-lime: #c6ff5e;
  --lb-info-green: #4ade80;
  --lb-info-gray: #8b8b93;
}

.lb-info-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

.lb-info-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.lb-info-title {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-Compressed-y);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.6rem;
}
.lb-info-title i {
  color: var(--purple);
  font-size: 0.85em;
}
.lb-info-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.lb-info-subtitle .hl-lime { color: var(--purple); font-weight: 700; }
.lb-info-subtitle .hl-pink { color: var(--pink); font-weight: 700; }

/* ---- three-up grid: rules / highlight / legend ---- */
.lb-info-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.lb-info-rules {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.lb-info-rule {
  display: flex;
  gap: 0.9rem;
}
.lb-info-rule-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.lb-info-rule-title {
  font-family: var(--font-Compressed-y);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 0.25rem;
}
.lb-info-rule-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

.lb-info-highlight {
  background: rgba(198, 255, 94, 0.04);
  border: 1px solid rgba(176, 121, 220, 0.35);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
}
.lb-info-highlight-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  color: var(--purple);
}
.lb-info-highlight-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.lb-info-legend {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.1rem;
}
.lb-info-legend-title {
  font-family: var(--font-Compressed-y);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 1rem;
}
.lb-info-legend-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
}
.lb-info-legend-item:first-of-type { border-top: none; padding-top: 0; }
.lb-info-legend-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
}
.lb-info-legend-icon.is-finalist { color: var(--purple); background: rgba(166, 101, 255, 0.16); }
.lb-info-legend-icon.is-eligible { color: var(--lb-info-green); background: rgba(74, 222, 128, 0.14); }
.lb-info-legend-icon.is-ineligible { color: var(--lb-info-gray); background: rgba(139, 139, 147, 0.14); }
.lb-info-legend-title-sm {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.15rem;
  text-transform: uppercase;
}
.lb-info-legend-item.is-finalist .lb-info-legend-title-sm { color: var(--purple); }
.lb-info-legend-item.is-eligible .lb-info-legend-title-sm { color: var(--lb-info-green); }
.lb-info-legend-item.is-ineligible .lb-info-legend-title-sm { color: var(--lb-info-gray); }
.lb-info-legend-desc {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

/* ---- notice bar (shared visual language with band-notice) ---- */
.lb-info-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}
.lb-info-notice strong { color: var(--lb-info-lime); font-weight: 700; }
.lb-info-notice i { color: var(--purple); font-size: 1.1rem; flex-shrink: 0; }

/* ---- compliance strip ---- */
.lb-compliance {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem 1.85rem;
  overflow: hidden;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.lb-compliance-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.lb-compliance-body { position: relative; z-index: 2;  }
.lb-compliance-title {
  font-family: var(--purple);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-Compressed-y);
  color: var(--purple);
  margin: 0 0 0.4rem;
}
.lb-compliance-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
.lb-compliance-art {
  position: absolute;
  right: -10px;
  bottom: -6px;
  width: 46%;
  max-width: 420px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
  .lb-info-grid { grid-template-columns: 1fr 1fr; }
  .lb-info-legend { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  .lb-info-panel { padding: 1.4rem 1.1rem 1.6rem; border-radius: 16px; }
  .lb-info-grid { grid-template-columns: 1fr; gap: 1rem; }
  .lb-info-legend { grid-column: auto; }
  .lb-compliance { flex-direction: column; padding: 1.35rem 1.25rem; }
  .lb-compliance-art { width: 65%; opacity: 0.55; }
}

@media (max-width: 480px) {
  .lb-info-title { font-size: 1.15rem; gap: 0.5rem; }
  .lb-info-rule-icon { width: 36px; height: 36px; font-size: 0.95rem; }
  .lb-info-notice { font-size: 0.8rem; padding: 0.7rem 1rem; }
}


/* Participating Bands End */

/*LOGIN POPUP*/
#popupFullNameGroup #popupLoginAsLabel{ padding-bottom:5px;}
.login-popup{ 
  position: fixed;
  top:0;
  inset: 0;
  margin-top: 0 !important;
  background: rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: .3s ease;
}
.login-popup.show{ opacity: 1; visibility: visible;}

/*LOGIN POPUP END*/




/* ==========================================================================
   Font Family
   ========================================================================== */

@font-face {
    font-family: 'GT America Y Compressed';
    src: url('../fonts/GTAmericaY-CompressedBold.woff2') format('woff2'),
        url('../fonts/GTAmericaY-CompressedBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT America';
    src: url('../fonts/GTAmerica-Regular.woff2') format('woff2'),
        url('../fonts/GTAmerica-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'GT America Y';
    src: url('../fonts/GTAmericaY-Regular.woff2') format('woff2'),
        url('../fonts/GTAmericaY-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6{font-family: 'GT America Y Compressed';}


/*CONTENT PAGES*/
.content-page{  padding-top: 60px !important; padding-bottom: 60px !important;}
.content-page li{ padding-bottom:10px;}
.content-page li ol{ padding-top:10px; padding-bottom:15px;}
/*CONTENT PAGES END*/

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.logo-group { min-width: 0; align-items: baseline !important;}

.yamahaLogo img {
  height: 28px;
  width: auto;
  display: block;
}

.teensRock img {
  height: 46px;   /* is logo ka guitar-neck part upar tak jaata hai, isliye ye thoda bada rakha */
  width: auto;
  display: block;
}
.brand-yamaha {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  /* align-items: end;  <- remove this line */
}

.hd-header {
  background: rgba(7,7,12,0.85);
  backdrop-filter: blur(10px);
  /*border-bottom: 1px solid var(--line);*/
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar { padding: 0.9rem 0; }

.brand-mark {
  color: var(--text);
  font-size: 1.6rem;
}
.brand-yamaha {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--text);

      display: flex;
    align-items: end;
}

.event-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}

.navbar-nav .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.25rem;
  position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--text);
}
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

.btn-login {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-login:hover { color: #fff; opacity: 0.92; }

.navbar-toggler {
  border-color: var(--line);
  padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
  filter: invert(1);
}


main{ min-height: 550px;}
.btn a{ color:#fff;}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 2rem 0 3.5rem 4rem;
  overflow: hidden;
}

.hero-glow { }

.eyebrow {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1;
}
.eyebrow-accent { color: var(--text); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.85;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--text);
}
.hero-year {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.heroImg{ margin-top: 0 !important;}
.heroContent{ margin-top: 0;}
.heroContent > img{ width: 100%; max-width: 500px;}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.hero-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 2px;
}

.hero-sub {
  font-family: var(--font-Compressed-y);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--text);
  text-transform: var(--uppercase);
  position: relative;
  margin-top: 22px;
  padding-left: 12px;
  overflow: hidden;
}
.hero-sub::after{
    content: '';
    width: 4px;
    height: 100%;
    background: linear-gradient(181deg, var(--purple), var(--pink));
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
}

.hero-copy {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.6;
}
.hero-btn a{
  font-size: 21px;
    text-transform: uppercase;
        display: flex;
    align-items: center;
}
.hero-btn a i{ 
  font-size: 38px;
    line-height: 26px;
}
.btn-trailer {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  border-radius: 50px;
  padding: 0.45rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  height: 55px;
}
.btn-trailer:hover { color: #fff; opacity: 0.92; }

.btn-vote-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--text);
  border-radius: 50px;
  padding: 0.8rem 1.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: transparent;
  height: 55px;
}
.btn-vote-outline:hover {
  border-color: var(--pink);
  color: var(--text);
  background: rgba(236,72,153,0.08);
}

.stage-visual { width: 100%; }
.stage-visual img{ width: 100%;}

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats-strip { padding: 0 0 4rem; }

.stats-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem 1.75rem;
  margin: 0;

  display: flex;
  gap: 22px;

  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}

@media (min-width: 992px) {
  .stat-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 68px;
    background: var(--line);
  }
}

.stat-item i {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;

  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item:nth-of-type(1) i,
.stat-item:nth-of-type(2) i,
.stat-item:nth-of-type(4) i {
 

}
.stat-item:nth-of-type(3) i {
  
 
}
.stat-item:nth-of-type(5) i {

  
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.stat-value {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2px;
  font-family: var(--font-Compressed-y);
}
.stat-value-big {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1;
}

/* ==========================================================================
   Footer (desktop)
   ========================================================================== */
.site-footer {
  background: var(--bg-footer);
  padding: 1.75rem 0;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0.5rem;
}
.footer-links a.active,
.footer-links a:hover { color: var(--pink); }
.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   Login / Register page
   ========================================================================== */
.login-section {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.login-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 10% 30%, rgba(124,58,237,0.22), transparent 70%),
    radial-gradient(550px 450px at 90% 70%, rgba(236,72,153,0.16), transparent 70%);
  pointer-events: none;
}

.login-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
}

@media (min-width: 992px) {
  .login-card { padding: 3rem 3.25rem; }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  font-family: var(--font-Compressed-y);
  
}
.back-link:hover { color: var(--pink); }
.back-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #484b54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 1.9rem);
  letter-spacing: 0.01em;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
}

.login-input {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  padding: 0.85rem 1.4rem;
  font-size: 0.95rem;
}
.otp-input{
  max-width: 200px;
    margin-right: 8px;
}
.login-input::placeholder { color: var(--text-muted); }
.login-input:focus {
  background: transparent;
  border-color: var(--pink);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.18);
}

.phone-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
}
.phone-code {
  padding: 0.85rem 1rem 0.85rem 1.4rem;
  color: var(--text);
  font-weight: 600;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}
.phone-input {
  border: none;
  border-radius: 0;
  flex: 1;
}
.phone-input:focus { box-shadow: none; }
.btn-otp {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: none;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  margin-right: 6px;
  flex-shrink: 0;
}
.btn-otp:hover { background: rgba(255,255,255,0.15); color: var(--text); }

.form-check-input {
  background-color: transparent;
  border: 1px solid var(--line);
  width: 1.1em;
  height: 1.1em;
}
.form-check-input:checked {
  background-color: var(--purple);
  border-color: var(--purple);
}
.terms-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.terms-label a { color: var(--purple); font-weight: 600; }
.terms-label a:hover { text-decoration: underline; }

.btn-submit {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.7rem  0.9rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-submit:hover { color: #fff; opacity: 0.92; }

.privacy-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.privacy-note i {
  color: var(--purple);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.privacy-note p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==========================================================================
   Vote page
   ========================================================================== */
.vote-hero {
  position: relative;
  padding: 3rem 0 1.75rem;
  overflow: hidden;
  background: url(../images/voting-bg.jpg);
}
.vote-hero-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  max-height: 260px;
  opacity: 0.9;
}

.vote-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--text);
}
.vote-title a{
background: linear-gradient(90deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.grad-text {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vote-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.votes-remaining-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 265px;
  height: 164px;
}
.vr-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(124,58,237,0.15);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.vr-body { flex: 1; }
.vr-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.vr-count {
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
      background: linear-gradient(90deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

        align-items: center;
    display: flex;
    gap: 8px;
}
.vr-count span{  font-weight: bold;}
.vr-count span:first-child {font-size: 2.2rem; font-weight: bold; color: var(--text); }
.vr-progress {
  display: flex;
  gap: 4px;
}
.giveAwayBox{ max-width:850px; margin:0 auto;}
.vtWin{    color: #ca7cfe}
.vr-seg {
  flex: 1;
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
}
.vr-seg.filled  {
  background: linear-gradient(180deg, #8014dc, #5e02c1);
}

.vote-rule {
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple) 30%, rgba(255,255,255,0.12) 30%);
  margin-top: 0;
}

.vote-search {
  position: relative;
  max-width: 380px;
  border: 1px solid #fff;
  border-radius: 50px;
}
.vote-search .form-control {
  background: transparent;
  border:0;
	width:90%;
  color: var(--text);
  padding: 0.75rem .7rem 0.75rem 1rem;
}
#searchInput::-webkit-search-cancel-button {
    filter: invert(30%) sepia(90%) saturate(3000%) hue-rotate(250deg);
}
.vote-search i {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translateY(-50%);
  color: var(--purple);
	cursor: pointer;
}
.vote-search .form-control::placeholder { color: var(--text-muted); }
.vote-search .form-control:focus {
  background: transparent;
  border-color: var(--purple);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
}

.perf-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
  height: 100%;
  position: relative;
}
.perf-card .perf-thumb.grad-1{ background:none;}
.perf-thumb {
  /*aspect-ratio: 4 / 3;*/
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.perf-thumb-link, .perf-band-link { display: block; color: inherit; }
.perf-band-link:hover .perf-band { color: var(--pink); }
.perf-thumb i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.55);
}
.perf-thumb.grad-1 { background: linear-gradient(135deg, #4c1d95, #db2777); }
.perf-thumb.grad-2 { background: linear-gradient(135deg, #6d28d9, #0891b2); }
.perf-thumb.grad-3 { background: linear-gradient(135deg, #9d174d, #7c3aed); }
.perf-thumb.grad-4 { background: linear-gradient(135deg, #1e1b4b, #c026d3); }
.perf-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.perf-info {
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;

  background: #0000007d;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
}
.perf-info .perf-school{
display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.perf-band {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 2px;
}
.perf-school {
  font-size: 0.78rem;
  color: var(--text-muted);
	min-height: 36px;
}
.btn-vote-now {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
}
.btn-vote-now:hover { color: #fff; opacity: 0.9; }
.btn-vote-now.voted {
  background: rgba(124,58,237,0.15);
  color: var(--purple);
  border: 1px solid var(--purple);
}
.btn-vote-now:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#voteToast {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
}

/* ==========================================================================
   Performance detail page
   ========================================================================== */
 /* Popup Overlay */
.confirm-model {
    position: fixed !important;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

/* Active */
.confirm-model.show {
    opacity: 1;
    visibility: visible;
	top:0;
}

/* Popup Box */
.confirm-panel-inner {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 1.75rem;
    transform: scale(.9);
    transition: .3s ease;
}

.confirm-model.show .confirm-panel-inner {
    transform: scale(1);
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

@media (max-width: 480px) {
/* Popup Overlay */
.confirm-model.show {
    display:block;
	top:0 !important;
}

}





.videoPlayer{}
.perf-band-title {
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 4vw, 1.6rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.perf-band-school {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.share-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-right: 0.35rem;
}
.share-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
}
.share-fb { background: #1877f2; }
.share-ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.share-wa { background: #25d366; }
.share-x { background: #000; border: 1px solid var(--line); }
.share-icon:hover { opacity: 0.85; }



.info-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}
.info-card-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.info-card-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  border-radius: 999px;
  padding: 0.35rem 0.85rem 0.35rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.tag-pill i { font-size: 1.2rem; color: var(--purple); }

.vote-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}
.vote-note strong { color: var(--text); }

.vtConfirm{ display: flex; justify-content: space-between; align-items: center;}
.vtConfirm .btn-submit{
    max-width: 212px;
    height: 40px;
    line-height: 13px;
}


/* Confirm votes panel */
.confirm-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: sticky;
  top: 100px;
}
.confirm-panel-inner { padding: 1.75rem 1.5rem; }
.confirm-back-btn {
  background: transparent;
  border: none;
  padding: 0;
}
.confirm-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  color: var(--purple);
  font-size: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.confirm-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.confirm-subtitle {
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
}
.confirm-warning {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.confirm-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.confirm-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0.9rem;
}
.confirm-item-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--purple);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.confirm-item-num i{ font-size: 32px;}
.confirm-item-body { flex: 1; min-width: 0; }
.confirm-item-band { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.confirm-item-school { font-size: 0.76rem; color: var(--text-muted); }
.confirm-item-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.confirm-item-remove:hover { color: var(--pink); }
.confirm-empty { color: var(--text-muted); font-size: 0.88rem; text-align: center; padding: 1rem 0; }

.confirm-modal-content {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
}




/* ==========================================================================
   Mobile bottom nav
   ========================================================================== */
.mobile-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 420px;
  z-index: 1040;
  background: rgba(18,18,26,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 600;
  border-radius: 999px;
  position: relative;
}

.bn-icon { font-size: 1.15rem; line-height: 1; }

.bn-item.active {
  color: #fff;
}
.bn-item.active .bn-icon {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bn-item.active .bn-label {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bn-has-dot .bn-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 22%;
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
}

/* Reserve space so bottom nav never covers content on mobile */
@media (max-width: 991.98px) {
  body { padding-bottom: 90px; }
}



/* ==========================================================================
   Vote Confirmation page
   ========================================================================== */

.vt-btn-mobile{ display: none;}

/* ==========================================================================
   Leaderboard page
   ========================================================================== */
.lb-tabs {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.lb-tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
}
.lb-tab.active {
  border-color: var(--purple);
  color: var(--text);
}
.lb-tab:not(.active):hover { color: var(--text); }

.podium-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Rank 1 sits in the middle and is visibly bigger, like a podium */
.podium-card.podium-first {
  transform: scale(1.06);
  z-index: 2;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.podium-first .podium-thumb { aspect-ratio: 3 / 4; }
.podium-first .podium-band { font-size: 1.4rem; }
.podium-first .podium-votes-value { font-size: 2rem; }
.podium-first .podium-info { padding: 1.35rem 1.25rem 1.6rem; }
@media (max-width: 767.98px) {
  .podium-card.podium-first { transform: none; margin-bottom: 0.5rem; }
}

.podium-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.podium-rank-gold {
  background: linear-gradient(135deg, #ffd76a, #f5a623);
  border-color: transparent;
  color: #402400;
}

.podium-thumb-link { display: block; }
.podium-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}
.podium-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podium-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  background: rgba(0,0,0,0.35);
  border: 2px solid transparent;
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    linear-gradient(135deg, var(--purple), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.podium-info {
  padding: 1rem 1.1rem 1.25rem;
  text-align: center;
}
.podium-band {
  font-family: var(--font-Compressed-y);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.podium-school {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.podium-votes-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.15rem;
}
.podium-votes-value {
  font-family: var(--font-Compressed-y);
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1;
}

.lb-table-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.5rem 0rem;
}
.lb-table {
  width: 100%;
  border-collapse: collapse;
}
.lb-table thead th {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 1rem 1rem  1rem 1.6rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.lb-table tbody td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
}
.lb-table tbody td a{ color:#fff; }
.lb-table tbody tr:last-child td { border-bottom: none; }

.lb-table tbody tr:last-child td{ border:0 !important;}

.btn-view-full {
  display: inline-block;
  border: 1px solid var(--purple);
  color: var(--text);
  border-radius: 999px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
}
.btn-view-full:hover {
  color: var(--text);
  background: rgba(124,58,237,0.12);
}

/* =========================================================
   Leaderboard Top 3 — strict screenshot layout
   ========================================================= */

.leaderboard-podium,
.leaderboard-podium * {
  box-sizing: border-box;
}

.leaderboard-podium {
  width: 100%;
  background: #000;
  padding: 63px 0 0;
  overflow: hidden;
}

.leaderboard-podium__container {
  /*width: calc(100% - 32px);*/
  max-width: 400px;
  /*min-height: 492px;*/
  margin: 0 auto 18px auto;

  display: grid;
  grid-template-columns: repeat(1, minmax(0, 489px));
  justify-content: space-between;
  align-items: start;
  column-gap: 48px;
}

.leaderboard-podium__card {
  width: 100%;
  min-width: 0;
  text-align: center;
}

/* Center card screenshot mein 55px upar hai */
.leaderboard-podium__card--winner {
  margin-top: -55px;
}

/* Image box */

.leaderboard-podium__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid #303036;
  border-radius: 19px;
  background: #0f0f18;
  color: inherit;
}

/* Side cards exact desktop ratio */
.leaderboard-podium__card--side .leaderboard-podium__media {
  height: 329px;
}

/* Winner exact desktop ratio */
.leaderboard-podium__card--winner .leaderboard-podium__media {
  height: 384px;
}

.leaderboard-podium__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Rank badge */

.leaderboard-podium__rank {
  position: absolute;
  top: 9px;
  left: 11px;
  z-index: 3;

  width: 51px;
  height: 51px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(5, 7, 9, 0.77);
  border: 1px solid rgba(255, 255, 255, 0.14);

  color: #e5a64d;
  font-family: var(--font-Compressed-y);
  font-size: 33px;
  font-weight: 700;
  line-height: 1;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Play button */

.leaderboard-podium__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;

  width: 76px;
  height: 76px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);

  background:
    linear-gradient(#080808, #080808) padding-box,
    conic-gradient(
      from 20deg,
      #ffad00,
      #ff5a00,
      #ff00a8,
      #ff00ec,
      #ff5a00,
      #ffad00
    ) border-box;

  border: 4px solid transparent;

  box-shadow:
    0 0 5px rgba(255, 0, 174, 1),
    0 0 11px rgba(255, 0, 174, 0.9),
    0 0 18px rgba(255, 89, 0, 0.75);
}

.leaderboard-podium__triangle {
  width: 0;
  height: 0;
  margin-left: 6px;

  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;

  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

/* Text area */

.leaderboard-podium__content {
  padding: 22px 8px 0;
}

.leaderboard-podium__title {
  margin: 0 0 4px;
  padding: 0;

  font-family: var(--font-Compressed-y);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.leaderboard-podium__title a {
  color: #f5f5f7;
  text-decoration: none;
}

.leaderboard-podium__school {
  margin: 0;
  padding: 0;

  color: #bdbdc2;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
}

.leaderboard-podium__vote {
  margin-top: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.leaderboard-podium__vote-label {
  margin-bottom: 5px;

  color: #a447ff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.leaderboard-podium__vote-value {
  color: #f5f5f7;
  font-family: var(--font-Compressed-y);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.95;
}

/* Hover only, layout change nahi hoga */

.leaderboard-podium__play,
.leaderboard-podium__image {
  transition: transform 0.25s ease;
}

.leaderboard-podium__media:hover .leaderboard-podium__play {
  transform: translate(-50%, -50%) scale(1.05);
}

/* =========================================================
   Responsive laptop
   ========================================================= */

@media (max-width: 1593px) {
  .leaderboard-podium__container {
    /*grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3%;*/
  }

  .leaderboard-podium__card--side .leaderboard-podium__media {
    height: auto;
    aspect-ratio: 489 / 329;
  }

  .leaderboard-podium__card--winner .leaderboard-podium__media {
    height: auto;
	  aspect-ratio: 489 / 280;
    /*aspect-ratio: 489 / 384;*/
  }
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991.98px) {
  .leaderboard-podium {
    padding: 32px 0 40px;
  }

  .leaderboard-podium__container {
    width: calc(100% - 36px);
    min-height: 0;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .leaderboard-podium__card--winner {
    order: 1;
    margin-top: 0;
  }

  .leaderboard-podium__card:first-child {
    order: 2;
  }

  .leaderboard-podium__card:last-child {
    order: 3;
    grid-column: 1 / -1;
   /* width: calc(50% - 12px);*/
    justify-self: center;
  }

  .leaderboard-podium__card--side .leaderboard-podium__media,
  .leaderboard-podium__card--winner .leaderboard-podium__media {
	  aspect-ratio: 489 / 278;
    /*aspect-ratio: 489 / 329;*/
  }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767.98px) {
  .leaderboard-podium {
    padding: 24px 0 36px;
  }

  .leaderboard-podium__container {
    width: calc(100% - 24px);
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .leaderboard-podium__card,
  .leaderboard-podium__card:last-child {
    width: 100%;
  }

  .leaderboard-podium__card--winner {
    order: 1;
  }

  .leaderboard-podium__card:first-child {
    order: 2;
  }

  .leaderboard-podium__card:last-child {
    order: 3;
  }

  .leaderboard-podium__card--side .leaderboard-podium__media,
  .leaderboard-podium__card--winner .leaderboard-podium__media {
    height: auto;
	  aspect-ratio: 489 / 284;
    /*aspect-ratio: 489 / 329;*/
    border-radius: 15px;
  }

  .leaderboard-podium__rank {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .leaderboard-podium__play {
    width: 68px;
    height: 68px;
  }

  .leaderboard-podium__triangle {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
  }

  .leaderboard-podium__content {
    padding-top: 18px;
  }

  .leaderboard-podium__title {
    font-size: 25px;
  }

  .leaderboard-podium__school {
    font-size: 16px;
  }

  .leaderboard-podium__vote {
    margin-top: 15px;
  }

  .leaderboard-podium__vote-label {
    font-size: 16px;
  }

  .leaderboard-podium__vote-value {
    font-size: 36px;
  }
}



/* ---- Thanks ---- */
.for-mobile-show{ display: none;}
.ty-banner {
  background: linear-gradient(135deg, #8b46e8 0%, #7c3aed 100%);
  border-radius: 24px;
  padding: 2.5rem 3rem;
}

.ty-banner .col-lg-8 {
  text-align: center;
}

.ty-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1.1rem;
}

.ty-title {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: 0.005em;
  margin-bottom: 0.6rem;
}

.ty-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}

.btn-ty-leaderboard {
  display: inline-block;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-ty-leaderboard:hover { color: #fff; opacity: 0.88; }

.ty-votes-box {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 2.25rem;
  text-align: center;
  min-width: 210px;
}
.ty-votes-label {
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.ty-votes-value {
  font-family: var(--font-Compressed-y);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.ty-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.ty-note i {
  color: var(--purple);
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ty-note p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  max-width: 560px;
}


/* ---- Thanks: giveaway card ---- */
.fnGiveAway{ text-align: center;}
.giveaway-card {
  background: #030304;
  border: 1px solid var(--gv-card-border);
  border-radius: 22px;
  padding: 2.25rem;
  margin-top: 40px;
}

.giveaway-badge {
  position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto !important;
    display: block;
}
.giveaway-badge .petal {
  position: absolute;
  inset: 0;
  border-radius: 35%;
  background: var(--gv-purple); /* solid — no gradient in source */
}
.giveaway-badge .petal:nth-child(1) { transform: rotate(0deg); }
.giveaway-badge .petal:nth-child(2) { transform: rotate(30deg); }
.giveaway-badge .petal:nth-child(3) { transform: rotate(60deg); }
.giveaway-badge i {
  position: relative;
  z-index: 5;
  color: #fff;
  font-size: 1.85rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.giveaway-eyebrow {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}
.giveaway-title {
  font-family: var(--font-Compressed-y);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.giveaway-desc {
  color: var(--gv-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.prize-card {
  border: 1px solid var(--gv-prize-border);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  background: #010009;
}
.prize-thumb {
  aspect-ratio: 146 / 130;
  width: 100%;
  overflow: hidden;
}
.prize-thumb img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  display: block;
}
.prize-label {
  position: relative;
  text-align: center;
  color: var(--text);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 1rem 0.5rem 0.8rem;
  margin: 0;
  line-height: 1.3;
}
.prize-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gv-purple), var(--pink));
}

.grand-prize-note {
  text-align: left;
  color: var(--gv-muted);
  font-size: 0.86rem;
  margin: 2rem 0 0;
}
.grand-prize-note strong { color: var(--gv-purple); }
.grand-prize-note a { color: var(--gv-purple); font-weight: 700; }
.grand-prize-note a:hover { text-decoration: underline; }

.spread-word-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--gv-card-border);
  margin-top: 1.75rem;
  padding-top: 1.75rem;
}
.spread-word-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.spread-word-left i {
  color: var(--gv-purple);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.spread-title {
  color: var(--gv-purple);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.spread-text {
  color: var(--gv-muted);
  font-size: 0.83rem;
}

.giveaway-section .share-wa { background: #29A71A; }

@media (max-width: 575.98px) {
  .giveaway-card .row.g-3 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
  .prize-label {
    padding-top: 0.85rem;
  }
}


/* =========================================================================
   "More" menu (mobile) — fullscreen dark panel, Bootstrap-driven offcanvas
   ========================================================================= */
.more-offcanvas {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  	height: 100dvh; /* iOS-safe fallback */
  z-index: 1050;

  background: #060608;
  color: var(--text);
  border: none;
  border-radius: 0;

  display: flex;
  flex-direction: column;

  transform: translateY(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}

.more-offcanvas-header {
  border: none;
  justify-content: flex-end;
  /*padding: 1.5rem 1.5rem 0.25rem;*/
	 padding: calc(1.5rem + env(safe-area-inset-top)) 1.5rem 0.25rem;
  flex-shrink: 0;
}


.more-offcanvas.show-menu {
  transform: translateY(0);
  visibility: visible;
}

.more-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1045;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.more-offcanvas-backdrop.show-menu {
  opacity: 1;
  pointer-events: auto;
}



.btn-close-custom {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem;
}
.btn-close-custom:hover { color: var(--pink); }

.more-offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.25rem 1.75rem 2.5rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.more-profile-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--bg-soft);
  border: 1px solid var(--gv-card-border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.more-profile-card:hover { border-color: var(--purple); }
.more-profile-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    background: linear-gradient(135deg, var(--purple), var(--blue));
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    padding-bottom: 4px;
}
.more-profile-info { flex: 1; min-width: 0; }
.more-profile-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}
.more-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.more-profile-badge i { font-size: 0.85rem; }
.more-profile-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.more-profile-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.more-link {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}
.more-link:hover { color: var(--pink); }
.more-link:hover .more-link-icon {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 16px rgba(236, 72, 153, 0.45);
}

.more-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.14);
  border: 1.5px solid rgba(166, 101, 255, 0.55);
  color: var(--purple);
  font-size: 1.15rem;
  box-shadow: 0 0 14px rgba(166, 101, 255, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.more-offcanvas.show-profl {
  transform: translateY(0);
  visibility: visible;
}

.more-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1045;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.more-offcanvas-backdrop.show-profl {
  opacity: 1;
  pointer-events: auto;
}

.profile-open-box{
  position: fixed;
  top:0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 1050;
    background: #060608;
    color: var(--text);
    border: none;
    border-radius: 0;

    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    visibility: hidden;
    display: none;
}
.profile-open-box.show-profl{ display: block !important; transform: translateY(0); visibility: visible;}


/* =========================================================================
   404 Page — 
   ========================================================================= */

.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.error-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  font-family: var(--font-Compressed-y, 'GT America Y Compressed', Impact, sans-serif);
  font-size: clamp(6rem, 18vw, 11rem);
  line-height: 0.9;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, var(--purple, #a665ff) 0%, var(--pink, #ec4899) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
}

.error-icon {
  font-size: 2.75rem;
  color: var(--pink, #ec4899);
  margin-bottom: 0.75rem;
}

.error-title {
  font-family: var(--font-Compressed-y, 'GT America Y Compressed', Impact, sans-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--text, #f5f5f7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.error-desc {
  color: var(--text-muted, #bbbbc1);
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 2rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-error-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple, #a665ff) 0%, var(--purple-deep, #5b21b6) 100%);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-error-home:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.btn-error-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text, #f5f5f7);
  font-weight: 700;
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--line, #1b3345);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-error-outline:hover {
  color: var(--text, #f5f5f7);
  border-color: var(--purple, #a665ff);
  background: rgba(166, 101, 255, 0.08);
}

.error-links {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line, #1b3345);
}
.error-links p {
  color: var(--text-muted, #bbbbc1);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.error-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-links-list a {
  color: var(--text-muted, #bbbbc1);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
}
.error-links-list a:hover {
  color: var(--pink, #ec4899);
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 767.98px) {
  .error-section { min-height: 60vh; padding: 2rem 0; }
  .error-icon { font-size: 2.25rem; }
  .error-desc { font-size: 0.92rem; }
  .error-actions { flex-direction: column; align-items: stretch; }
  .btn-error-home,
  .btn-error-outline { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
  .error-code { letter-spacing: 1px; }
  .error-links-list { gap: 0.5rem 0.9rem; }
	
	.perf-band{ font-size: 0.90rem;}
	
  .perf-info { padding-bottom: 50px!important; position: relative;}
  .perf-info .btn-vote-now{ width: 93% !important; padding-left: 1.5%; padding-right: 1.5%; bottom: 10px; position: absolute; }
	
}