@charset "UTF-8";
/* Reset & Base */
:root {
  --bg: #0b0d12;
  /* near-black base */
  --bg2: #11141c;
  --panel: #161a24;
  --panel2: #1c212e;
  --gold: #e8b349;
  /* BC coin gold */
  --gold-deep: #b8841f;
  --gold-soft: #f0cd83;
  --ink: #0a0c10;
  --text: #e8eaf0;
  --muted: #9aa3b4;
  --line: rgba(232, 179, 73, 0.22);
  --red: #7c1d22;
  /* season banner crimson */
  --red-deep: #4a0f13;
  --card-green: #16352b;
  /* the existing teal info cards */
  --card-green2: #0f2a22; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: 'Rajdhani', sans-serif;
  -webkit-font-smoothing: antialiased; }

h1,
h2,
h3,
.display {
  font-family: "Oswald", "Rajdhani", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.02; }

.gold {
  color: var(--gold); }

/* App Container */
.app-container {
  min-height: 100vh;
  background-color: var(--bg);
  overflow-x: hidden;
  position: relative; }

.app-container::selection {
  background-color: #28AE6C;
  color: white; }

.global-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none; }

.global-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.6); }

.content-wrapper {
  position: relative;
  z-index: 10; }

/* Header */
.header {
  padding: 16px;
  position: relative;
  z-index: 50; }

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.logo-svg {
  height: 32px;
  width: auto;
  display: block; }

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 8px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background-color: #1a130a;
  display: flex;
  flex-direction: column;
  padding-top: 80px; }

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer; }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  overflow-y: auto; }

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s; }

.nav-links a:hover {
  color: #E0A246; }

.play-btn {
  background: linear-gradient(to right, #ffaf00, #f96c01);
  color: black;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 16px; }

/* Transitions */
.slide-enter-active,
.slide-leave-active {
  transition: all 0.3s ease; }

.slide-enter,
.slide-leave-to {
  opacity: 0;
  transform: translateX(100%); }

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s; }

.fade-enter,
.fade-leave-to {
  opacity: 0; }

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  padding-top: 0; }

.hero-video {
  position: relative;
  width: 100%;
  height: 35vh; }

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.character-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-height: 95%; }

.hero-green-bar {
  width: 100%;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(115deg, rgba(232, 179, 73, 0.03) 0px, rgba(232, 179, 73, 0.03) 2px, transparent 2px, transparent 8px), radial-gradient(circle at 50% 50%, rgba(232, 179, 73, 0.1), transparent 60%), linear-gradient(to bottom right, var(--card-green), var(--card-green2));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 128px;
  position: relative;
  z-index: 10;
  margin-top: -8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--line); }

.hero-text {
  text-align: center;
  max-width: 800px; }

.hero-text p {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: white;
  line-height: 28px;
  margin-bottom: 16px; }

.hero-text p:last-child {
  margin-bottom: 0; }

.hero-text .highlight {
  color: var(--gold-soft); }

.video-player {
  position: relative;
  z-index: 20;
  width: 92%;
  aspect-ratio: 16/9;
  cursor: pointer;
  margin-top: -96px;
  margin-left: auto;
  margin-right: auto; }

.video-frame {
  position: absolute;
  inset: 0;
  background-color: rgba(5, 9, 20, 0.5);
  border: 1.2px solid rgba(224, 162, 70, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 10px; }

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #e0a246;
  border-style: solid; }

.corner.tl {
  top: -2px;
  left: -2px;
  border-width: 2.4px 0 0 2.4px;
  border-radius: 10px 0 0 0; }

.corner.tr {
  top: -2px;
  right: -2px;
  border-width: 2.4px 2.4px 0 0;
  border-radius: 0 10px 0 0; }

.corner.bl {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 2.4px 2.4px;
  border-radius: 0 0 0 10px; }

.corner.br {
  bottom: -2px;
  right: -2px;
  border-width: 0 2.4px 2.4px 0;
  border-radius: 0 0 10px 0; }

.video-content {
  position: absolute;
  inset: 6px;
  background-color: black;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px; }

.thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s; }

.video-player:hover .thumbnail {
  opacity: 1; }

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s; }

.video-player:hover .play-button {
  transform: scale(1.1); }

.play-button svg {
  margin-left: 4px;
  width: 24px;
  height: 24px; }

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  padding: 16px; }

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background-color: black;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(224, 162, 70, 0.3);
  border-radius: 8px;
  overflow: hidden; }

.video-modal-content iframe {
  width: 100%;
  height: 100%; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s; }

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white; }

/* Layout Utilities */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px; }

section {
  padding: 74px 0; }

.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px; }

.sec-head .kicker {
  color: var(--gold);
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px; }

.sec-head h2 {
  font-size: clamp(30px, 5vw, 48px);
  color: #fff; }

.sec-head p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 14px; }

/* Button & CTA Utilities */
.cta-row {
  position: relative;
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 30; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 5px;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  text-align: center;
  width: 210px; }

.btn-gold {
  background: linear-gradient(135deg, #f3cb6f, #d49a23);
  color: #241701;
  box-shadow: 0 6px 22px rgba(212, 154, 35, 0.4);
  border: none; }

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 154, 35, 0.55); }

.btn-ghost {
  border: 1.5px solid var(--gold);
  color: var(--gold-soft);
  background: rgba(232, 179, 73, 0.06); }

.btn-ghost:hover {
  background: rgba(232, 179, 73, 0.14); }

/* ===== REWARDS (Podium) ===== */
.rewards {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(232, 179, 73, 0.18), transparent 45%), linear-gradient(180deg, #1a0e10 0%, #2a1216 30%, #14080b 100%);
  border-top: 2px solid var(--gold-deep); }

.rewards::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.015) 0 2px, transparent 2px 26px);
  pointer-events: none; }

.rewards .sec-head h2 {
  color: #fff;
  text-shadow: 0 0 24px rgba(232, 179, 73, 0.4); }

.rewards .sec-head .kicker {
  color: var(--gold-soft); }

.ptw-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px; }

.ptw-copy {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
  color: #e7d7c2;
  font-size: 18px;
  position: relative;
  z-index: 2;
  line-height: 1.6; }

.ptw-copy b {
  color: var(--gold-soft); }

.podium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2; }

.prize {
  position: relative;
  border-radius: 14px;
  padding: 26px 22px 30px;
  text-align: center;
  background: linear-gradient(180deg, #20242f, #13161f);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5); }

.prize .medal {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px; }

.prize .medal img {
  height: 100%;
  width: auto;
  object-fit: contain; }

.prize .place {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700; }

.prize .card-img {
  margin: 18px auto 16px;
  width: 100%;
  max-width: 180px;
  /* default base size (2nd & 3rd place on mobile) */
  aspect-ratio: 1/1;
  /* gem box renders are square */
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
  /* Fix clipping of card dropshadows/perspective edges */ }

.prize .card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)); }

.prize .amount {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1; }

.prize .label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .06em;
  margin-top: 4px;
  text-transform: uppercase; }

.prize.first {
  background: linear-gradient(180deg, #3a2a0d, #1c1407);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(232, 179, 73, 0.3), 0 22px 50px rgba(180, 120, 20, 0.45);
  order: 1; }

.prize.second {
  order: 2; }

.prize.third {
  order: 3; }

.prize.first .medal {
  height: 86px;
  margin-bottom: 12px; }

.prize.first .card-img {
  max-width: 220px; }

.prize.first .amount {
  color: var(--gold-soft);
  text-shadow: 0 0 20px rgba(232, 179, 73, 0.6); }

.prize.first .place {
  color: var(--gold); }

.prize.second .amount,
.prize.third .amount {
  color: #dfe4ee; }

.closer {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2; }

.closer .line {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: clamp(20px, 3vw, 30px);
  color: #fff;
  letter-spacing: .04em; }

.closer .line .sep {
  color: var(--gold); }

/* ===== HOW TO EARN / USE (Cards Layout) ===== */
.how {
  background: var(--bg); }

.how.use-section {
  background: linear-gradient(180deg, #0e1320, #0b0d12);
  border-top: 1px solid var(--line); }

/* ===== BOOST SECTION ===== */
.how.boost-section {
  background: linear-gradient(180deg, #0d1018, #0b0d12);
  border-top: 1px solid var(--line); }

.boost-banner {
  max-width: 900px;
  margin: 0 auto 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(232, 179, 73, 0.08);
  border: 1px solid rgba(232, 179, 73, 0.2); }

.boost-banner img {
  width: 100%;
  height: auto;
  display: block; }

.boost-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap; }

.boost-before,
.boost-after {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  text-align: center; }

.boost-label {
  display: block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px; }

.boost-img-wrap {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  border: 1px solid rgba(232, 179, 73, 0.15);
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/10; }

.coin-float-text {
  position: absolute;
  left: 51.5%;
  bottom: 22%;
  transform: translateX(-50%);
  font-family: "Oswald", "Rajdhani", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffe600;
  text-shadow: 0 0 10px rgba(255, 230, 0, 0.8), 0 0 20px rgba(255, 180, 0, 0.5), 2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
  pointer-events: none;
  user-select: none;
  z-index: 5;
  animation: coinFloatUp 1.8s cubic-bezier(0.25, 1, 0.5, 1) infinite; }

.coin-float-text.coin-float-boost {
  font-size: 32px;
  color: #fff200;
  text-shadow: 0 0 14px #fff200, 0 0 28px rgba(255, 140, 0, 0.8), 2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000; }

@keyframes coinFloatUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px) scale(0.7); }
  20% {
    opacity: 1;
    transform: translate(-50%, -8px) scale(1.15); }
  75% {
    opacity: 1;
    transform: translate(-50%, -24px) scale(1.05); }
  100% {
    opacity: 0;
    transform: translate(-50%, -36px) scale(1); } }
.boost-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.boost-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.9) 0%, transparent 100%);
  padding: 12px 14px 10px; }

.boost-img-overlay span {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700; }

.boost-desc {
  margin-top: 0;
  background: linear-gradient(160deg, var(--card-green), var(--card-green2));
  border: 1px solid rgba(232, 179, 73, 0.14);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 16px 18px 20px;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.boost-desc p {
  font-family: "Rajdhani", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: #e8eaf0;
  line-height: 1.45;
  margin-bottom: 6px; }

.boost-desc p:last-child {
  margin-bottom: 0; }

.boost-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  flex-shrink: 0; }

.boost-arrow-label {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(135deg, #fde68a, #e8b349, #d49a23);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(232, 179, 73, 0.5));
  animation: boostPulse 2s ease-in-out infinite; }

.boost-arrow {
  width: 140px;
  height: 52px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.6));
  animation: arrowPulse 2s ease-in-out infinite; }

.boost-highlight {
  font-weight: 700;
  text-shadow: 0 0 16px rgba(232, 179, 73, 0.5);
  font-size: 1.1em; }

@keyframes boostPulse {
  0%, 100% {
    opacity: 0.85;
    transform: scale(1); }
  50% {
    opacity: 1;
    transform: scale(1.06); } }
@keyframes arrowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
    transform: translateX(0); }
  50% {
    filter: drop-shadow(0 0 22px rgba(245, 158, 11, 0.9));
    transform: translateX(4px); } }
/* Boost section responsive */
@media (max-width: 640px) {
  .boost-comparison {
    flex-direction: column;
    gap: 16px; }

  .boost-before,
  .boost-after {
    max-width: 100%;
    width: 100%; }

  .boost-arrow-wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0; }

  .boost-arrow {
    width: 100px;
    height: 38px;
    transform: rotate(90deg);
    margin: 16px 0;
    animation: arrowPulseMobile 2s ease-in-out infinite; }

  .boost-arrow-label {
    font-size: 20px; }

  .coin-float-text {
    font-size: 20px; }

  .coin-float-text.coin-float-boost {
    font-size: 24px; } }
@keyframes arrowPulseMobile {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
    transform: rotate(90deg) translateY(0); }
  50% {
    filter: drop-shadow(0 0 22px rgba(245, 158, 11, 0.9));
    transform: rotate(90deg) translateY(6px); } }
@media (min-width: 641px) {
  .boost-arrow-label {
    font-size: 28px; }

  .boost-arrow {
    width: 160px;
    height: 60px; }

  .boost-comparison {
    gap: 28px; } }
.sub-lead {
  text-align: center;
  max-width: 760px;
  margin: 44px auto 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6; }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

.card {
  background: linear-gradient(160deg, var(--card-green), var(--card-green2));
  border: 1px solid rgba(232, 179, 73, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s; }

.card:hover {
  transform: translateY(-5px); }

.card .shot {
  position: relative;
  height: 188px;
  background: #0a0c10;
  overflow: hidden;
  cursor: pointer;
  border-bottom: 1px solid rgba(232, 179, 73, 0.12); }

.card .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s; }

.card .shot:hover img {
  opacity: 1;
  transform: scale(1.05); }

.card .shot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.85) 0%, rgba(16, 26, 23, 0) 20%);
  display: flex;
  align-items: flex-end;
  padding: 16px 20px; }

.card .shot-overlay span {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700; }

.card .expand-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(232, 179, 73, 0.3);
  color: var(--gold-soft);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
  font-size: 16px; }

.card .shot:hover .expand-icon {
  opacity: 1;
  transform: scale(1); }

.card .body {
  padding: 24px 26px 28px; }

.card h3 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 10px; }

.card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6; }

.card .note {
  color: #9fb3ac;
  font-size: 13.5px;
  margin-top: 12px;
  line-height: 1.4; }

/* ===== SEASON RULES + TERMS ===== */
.season {
  background: linear-gradient(180deg, #0e1320, #0b0d12);
  border-top: 1px solid var(--line); }

.notes {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(160deg, #1a1407, #12100a);
  border: 1px solid var(--gold-deep);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 26px 30px; }

.notes h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px; }

.notes ul {
  list-style: none; }

.notes li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: #cdd4e2;
  font-size: 15px;
  border-bottom: 1px dashed rgba(232, 179, 73, 0.12);
  line-height: 1.5; }

.notes li:last-child {
  border-bottom: 0; }

.notes li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-size: 11px;
  top: 9px; }

.terms {
  max-width: 900px;
  margin: 40px auto 0; }

.terms details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden; }

.terms summary {
  cursor: pointer;
  padding: 18px 24px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-soft);
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none; }

.terms summary::-webkit-details-marker {
  display: none; }

.terms summary .chev {
  transition: transform .2s;
  color: var(--gold); }

.terms details[open] summary .chev {
  transform: rotate(180deg); }

.terms .tbody {
  padding: 8px 28px 26px;
  border-top: 1px solid rgba(232, 179, 73, 0.1); }

.terms .tbody ul {
  list-style: none; }

.terms .tbody li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  padding-left: 20px; }

.terms .tbody li:last-child {
  border-bottom: 0; }

.terms .tbody li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold-deep); }

.terms .tbody li .fine {
  display: block;
  color: #6f7888;
  font-size: 12.5px;
  margin-top: 4px;
  font-style: italic;
  line-height: 1.4; }

/* ===== FINAL CTA ===== */
.final {
  text-align: center;
  background: radial-gradient(circle at 50% 120%, rgba(232, 179, 73, 0.22), transparent 55%), linear-gradient(180deg, #0b0d12, #0e1117);
  border-top: 1px solid var(--line);
  padding: 74px 0; }

.final h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  color: #fff;
  margin-bottom: 10px; }

.final p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 17px; }

/* Image Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px; }

.image-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center; }

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  border: 2px solid var(--gold);
  border-radius: 2px; }

.modal-close-text {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s; }

.modal-close-text:hover {
  color: var(--gold);
  letter-spacing: 0.2em; }

/* Footer */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0; }

/* Ranking Section */
.ranking-section {
  border-top: 1px solid var(--line); }

.ranking-desc-box {
  text-align: center;
  max-width: 840px;
  margin: 24px auto 0;
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.3); }

.ranking-desc-box p {
  font-size: 18px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  line-height: 1.6; }

.ranking-desc-box p.sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500; }

@media (max-width: 767px) {
  .ranking-desc-box {
    padding: 16px 20px;
    margin: 16px 16px 0; }

  .ranking-desc-box p {
    font-size: 16px; }

  .ranking-desc-box p.sub {
    font-size: 13.5px; } }
/* Responsive - Desktop */
@media (min-width: 768px) {
  .hero-video {
    height: 828px; }

  .character-overlay {
    max-height: 85%; }

  .hero-green-bar {
    min-height: 300px;
    padding: 30px 16px 78px; }

  .hero-text p {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 24px; }

  .hero-text p:last-child {
    margin-bottom: 0; }

  .video-player {
    position: absolute;
    top: 98%;
    left: 50%;
    transform: translateX(-50%);
    width: 920px;
    height: 517px;
    margin-top: 0; }

  .corner {
    width: 38px;
    height: 38px; }

  .ranking-btn {
    font-size: 24px;
    padding: 20px 32px; }

  .video-content {
    inset: 10px; }

  .play-button {
    width: 96px;
    height: 96px; }

  .play-button svg {
    width: 38px;
    height: 38px;
    margin-left: 8px; }

  /* Clearance for the overflowing video player */
  .rewards {
    padding: 74px 0;
    padding-top: 520px; }

  .podium {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    align-items: end; }

  .prize.first {
    transform: translateY(-22px);
    z-index: 5;
    order: 0; }

  .prize.second {
    order: 0; }

  .prize.third {
    order: 0; }

  .prize .card-img {
    max-width: 220px; }

  .prize.first .card-img {
    max-width: 265px; }

  .prize .medal {
    height: 86px; }

  .prize.first .medal {
    height: 110px; }

  .cards {
    grid-template-columns: 1fr 1fr;
    gap: 32px; }

  .card .shot {
    height: 240px; }

  .terms summary {
    padding: 22px 32px; }

  .terms .tbody {
    padding: 16px 40px 32px; } }
/* ---------- Design Tokens for Tier Table ---------- */
:root {
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f5b43c;
  --gold-600: #d97706;
  --gold-700: #b45309;
  --gold-800: #78350f;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  /* tier glow colors */
  --glow-legend: rgba(245, 180, 60, 0.35);
  --glow-master: rgba(200, 200, 200, 0.25);
  --glow-elite: rgba(180, 80, 20, 0.3); }

/* ---------- In-game Items Section Wrapper ---------- */
#ingame-items {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%; }

/* ---------- Section Heading ---------- */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%; }

.section-heading__line {
  flex: 1;
  max-width: 120px;
  height: 1px; }

.section-heading__line--start {
  background: linear-gradient(90deg, transparent, rgba(232, 179, 73, 0.4)); }

.section-heading__line--end {
  background: linear-gradient(270deg, transparent, rgba(232, 179, 73, 0.4)); }

.section-heading__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  padding: 0 16px;
  width: auto; }

.section-heading__title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 12px rgba(232, 179, 73, 0.35); }

.section-heading .bullet-dot {
  color: var(--gold);
  font-size: 16px;
  opacity: 0.85; }

/* ---------- Tier Table ---------- */
.tier-table {
  width: 100%;
  max-width: 896px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.8), rgba(0, 0, 0, 0.9));
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px; }

@media (min-width: 640px) {
  .tier-table {
    padding: 20px; } }
.tier-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  border-radius: 12px;
  border: 1px solid;
  background: linear-gradient(90deg, var(--tier-bg, rgba(245, 180, 60, 0.06)), transparent);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  z-index: 1; }

.tier-row:hover {
  z-index: 10;
  transform: translateY(-2px); }

@media (min-width: 640px) {
  .tier-row {
    flex-direction: row;
    padding: 16px 24px; } }
.tier-row--legend {
  --tier-bg: rgba(245, 180, 60, 0.06);
  border-color: rgba(245, 180, 60, 0.25); }

.tier-row--legend:hover {
  border-color: rgba(245, 180, 60, 0.5); }

.tier-row--master {
  --tier-bg: rgba(200, 200, 200, 0.06);
  border-color: rgba(160, 160, 160, 0.25); }

.tier-row--master:hover {
  border-color: rgba(160, 160, 160, 0.5); }

.tier-row--elite {
  --tier-bg: rgba(180, 80, 20, 0.08);
  border-color: rgba(130, 50, 10, 0.25); }

.tier-row--elite:hover {
  border-color: rgba(180, 80, 40, 0.5); }

.tier-row__label {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%; }

@media (min-width: 640px) {
  .tier-row__label {
    flex-direction: column;
    align-items: flex-start;
    width: 176px;
    gap: 4px; } }
.tier-badge {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--zinc-600);
  font-weight: 700;
  display: none; }

@media (min-width: 640px) {
  .tier-badge {
    display: block; } }
.tier-row__rank {
  font-family: "Oswald", "Rajdhani", sans-serif;
  font-size: clamp(17.6px, 2.5vw, 21.6px);
  font-weight: 700;
  text-transform: uppercase; }

.tier-row__rank--gold {
  background: linear-gradient(90deg, var(--gold-200), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.tier-row__rank--silver {
  background: linear-gradient(90deg, #d4d4d8, var(--zinc-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.tier-row__rank--bronze {
  background: linear-gradient(90deg, #ea580c, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.tier-row__receives {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--zinc-500);
  margin-left: auto; }

@media (min-width: 640px) {
  .tier-row__receives {
    margin-left: 0; } }
.tier-row__divider {
  display: none;
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.07); }

@media (min-width: 640px) {
  .tier-row__divider {
    display: block; } }
.tier-row__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
  width: 100%;
  padding: 16px 0; }

@media (min-width: 640px) {
  .tier-row__items {
    justify-content: flex-start;
    gap: 80px;
    padding: 0; } }
/* Tier items — glow via CSS custom property, no inline style needed */
.tier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  position: relative;
  z-index: 1; }

.tier-item:hover {
  z-index: 50; }

@media (min-width: 640px) {
  .tier-item {
    flex: none; } }
.tier-item__img-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center; }

@media (min-width: 640px) {
  .tier-item__img-wrap {
    width: 128px;
    height: 128px; } }
.tier-item__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.3s;
  background: var(--item-glow); }

.tier-row:hover .tier-item__glow {
  opacity: 1; }

/* Inherit glow values from tier row context via custom property on tier-item modifier */
.tier-item--legend {
  --item-glow: radial-gradient(circle, var(--glow-legend), transparent 70%); }

.tier-item--legend .tier-item__img {
  filter: drop-shadow(0 0 15px var(--glow-legend)); }

.tier-item--master {
  --item-glow: radial-gradient(circle, var(--glow-master), transparent 70%); }

.tier-item--master .tier-item__img {
  filter: drop-shadow(0 0 15px var(--glow-master)); }

.tier-item--elite {
  --item-glow: radial-gradient(circle, var(--glow-elite), transparent 70%); }

.tier-item--elite .tier-item__img {
  filter: drop-shadow(0 0 15px var(--glow-elite)); }

.tier-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transform: scale(1.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.tier-item:hover .tier-item__img {
  transform: scale(1.8); }

@media (min-width: 640px) {
  .tier-item:hover .tier-item__img {
    transform: scale(2.2); } }
.tier-item__label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10.4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--zinc-500);
  font-weight: 600;
  text-align: center;
  margin-top: 8px; }

@media (min-width: 640px) {
  .tier-item__label {
    font-size: 12px;
    letter-spacing: 0.25em; } }
/* ---------- Set Cards (Set A / B / C) ---------- */
.set-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1080px; }

@media (min-width: 768px) {
  .set-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; } }
.set-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px 20px;
  border-radius: 12px;
  border: 1px solid;
  background: linear-gradient(180deg, var(--tier-bg, rgba(245, 180, 60, 0.06)), rgba(0, 0, 0, 0.55));
  transition: border-color 0.3s, transform 0.3s;
  z-index: 1; }

.set-card:hover {
  z-index: 10;
  transform: translateY(-2px); }

.set-card--legend {
  --tier-bg: rgba(245, 180, 60, 0.08);
  border-color: rgba(245, 180, 60, 0.25); }

.set-card--legend:hover {
  border-color: rgba(245, 180, 60, 0.5); }

.set-card--master {
  --tier-bg: rgba(200, 200, 200, 0.07);
  border-color: rgba(160, 160, 160, 0.25); }

.set-card--master:hover {
  border-color: rgba(160, 160, 160, 0.5); }

.set-card--elite {
  --tier-bg: rgba(180, 80, 20, 0.1);
  border-color: rgba(130, 50, 10, 0.3); }

.set-card--elite:hover {
  border-color: rgba(180, 80, 40, 0.55); }

.set-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 30px;
  white-space: nowrap; }

.set-card__badge--gold {
  background: linear-gradient(90deg, var(--gold-200), var(--gold-500));
  color: #000;
  box-shadow: 0 0 16px rgba(245, 180, 60, 0.4); }

.set-card__badge--silver {
  background: linear-gradient(90deg, #e4e4e7, #a1a1aa);
  color: #000;
  box-shadow: 0 0 16px rgba(200, 200, 200, 0.3); }

.set-card__badge--bronze {
  background: linear-gradient(90deg, #fb923c, #c2540a);
  color: #000;
  box-shadow: 0 0 16px rgba(180, 80, 20, 0.4); }

.set-card__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 0 0; }

.set-card .tier-item {
  flex: 1; }

.set-card .tier-item__img-wrap {
  width: 76px;
  height: 76px; }

@media (min-width: 640px) {
  .set-card .tier-item__img-wrap {
    width: 92px;
    height: 92px; } }
.set-card:hover .tier-item__glow {
  opacity: 1; }

.set-card .tier-item:hover .tier-item__img {
  transform: scale(1.8); }

/* ---------- Rank Reward Table ---------- */
.reward-table-block {
  width: 100%;
  max-width: 1080px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.85), rgba(0, 0, 0, 0.92));
  padding: 8px;
  margin-top: 8px; }

@media (min-width: 640px) {
  .reward-table-block {
    padding: 16px; } }
.reward-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px; }

.reward-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  color: #d7dbe4; }

.reward-table th {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* bootstrap tables.less 의 th{text-align:left} 를 덮어씀 */
  text-align: center;
  color: var(--gold-soft, #f0cf8e);
  background: rgba(245, 180, 60, 0.08);
  border-bottom: 1px solid rgba(245, 180, 60, 0.3);
  /* 좌우 6px: 10px 면 10열 합계가 컨테이너(1046px)를 넘겨 가로 스크롤이 생김 */
  padding: 12px 6px;
  white-space: nowrap; }

.reward-table td {
  padding: 9px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap; }

.reward-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02); }

.reward-table tbody tr:hover {
  background: rgba(245, 180, 60, 0.05); }

.reward-table tbody tr:last-child td {
  border-bottom: none; }

.reward-table .rt-rank {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em; }

.reward-table .rt-gem {
  color: var(--gold-soft, #f0cf8e);
  font-weight: 600; }

.reward-table .rt-set {
  font-weight: 600; }

.reward-table .rt-dash {
  color: var(--zinc-600);
  font-weight: 400; }

.reward-table tr.is-top .rt-rank {
  color: var(--gold-300);
  text-shadow: 0 0 10px rgba(245, 180, 60, 0.5); }

.reward-table tr.is-top {
  background: rgba(245, 180, 60, 0.04); }

/* ---------- Animations ---------- */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

/*# sourceMappingURL=ecosystem_20260819.css.map */
