/* ════════════════════════════════════
   original.html — GSB Original
   Modernized + fully responsive
════════════════════════════════════ */

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero.hero-original {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 80px;
  background-image:
    linear-gradient(100deg,
      rgba(6,13,20,0.46) 0%,
      rgba(6,13,20,0.54) 38%,
      rgba(6,13,20,0.68) 100%),
    url('/assets/Original.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
}
.hero-orb {
  position: absolute; right: 25%; top: 30%;
  width: 360px; height: 360px;
  background: radial-gradient(circle,
    rgba(245,166,35,0.10) 0%,
    rgba(245,166,35,0.04) 40%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbPulse 5s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.1); opacity: 1; }
}

/* Floating MC item icons */
.hero-floaters {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.floater {
  position: absolute;
  font-size: var(--fs-h2);
  opacity: 0.15;
  filter: drop-shadow(0 0 12px rgba(245,166,35,0.4));
  animation: floaterMove 12s ease-in-out infinite;
}
.floater.f1 { top: 18%; left: 12%; font-size: var(--fs-h3); animation-delay: 0s; animation-duration: 14s; }
.floater.f2 { top: 32%; left: 8%;  font-size: var(--fs-h1-sm); animation-delay: -3s; animation-duration: 16s; }
.floater.f3 { bottom: 28%; left: 18%; font-size: var(--fs-h4); animation-delay: -6s; animation-duration: 13s; }
.floater.f4 { top: 22%; right: 38%; font-size: var(--fs-h2-sm); animation-delay: -2s; animation-duration: 15s; opacity: 0.1; }
.floater.f5 { bottom: 38%; left: 28%; font-size: var(--fs-h5); animation-delay: -9s; animation-duration: 18s; opacity: 0.2; }
@keyframes floaterMove {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  25%      { transform: translateY(-18px) rotate(3deg); }
  50%      { transform: translateY(-8px) rotate(-2deg); }
  75%      { transform: translateY(-22px) rotate(5deg); }
}

.hero-illus {
  position: absolute; right: -2%; top: 75%;
  transform: translateY(-48%);
  width: 50%; max-width: 700px;
  opacity: 1;
  mix-blend-mode: normal;
  animation: illustFloat 6s ease-in-out infinite;
  pointer-events: none; z-index: 700;
}
@keyframes illustFloat {
  0%, 100% { transform: translateY(-49%); }
  50%      { transform: translateY(-51%); }
}

.hero.hero-original::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg,
    rgba(6,13,20,0.24) 0%,
    rgba(6,13,20,0.42) 45%,
    rgba(6,13,20,0.2) 74%,
    transparent 96%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 3;
  padding: 140px 60px 0;
  max-width: 680px;
}
.hero-crumb {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: var(--fs-meta-lg); font-weight: 600;
  margin-bottom: 24px;
  animation: fup 0.8s ease both;
}
.hero-crumb a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
.hero-crumb a:hover { opacity: 0.7; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(86,207,106,0.08);
  border: 1px solid rgba(86,207,106,0.25);
  padding: 7px 16px; border-radius: 999px;
  font-size: var(--fs-caption); font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 26px;
  animation: fup 0.8s 0.05s ease both;
  backdrop-filter: blur(8px);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: livePulse 1.8s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.92; letter-spacing: 2px;
  animation: fup 0.85s 0.1s ease both;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero h1 .outline {
  display: block;
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
  text-shadow: 0 0 60px rgba(245,166,35,0.1);
}
.hero h1 .solid { display: block; color: var(--text); }

.hero-desc {
  font-size: var(--fs-h5); color: #C4D2DD; line-height: 1.72;
  max-width: 480px; margin: 28px 0 40px;
  animation: fup 0.9s 0.25s ease both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-stats {
  display: flex; gap: 24px; margin-bottom: 40px;
  align-items: center;
  animation: fup 0.85s 0.3s ease both;
  flex-wrap: wrap;
}
.hs-divider {
  width: 1px; height: 32px;
  background: var(--border);
}
.hs-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h1-sm); color: var(--gold);
  letter-spacing: 1px; line-height: 1;
  text-shadow: 0 0 20px var(--gold-glow);
}
.hs-label {
  font-size: var(--fs-meta-lg); color: var(--muted);
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-ctas {
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap;
  animation: fup 0.85s 0.38s ease both;
}

.scroll-hint {
  position: absolute; bottom: 36px; left: 60px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: var(--fs-caption);
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fup 1s 0.9s ease both;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--border);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; } 100% { left: 100%; }
}

/* ════════════════════════════════════
   SECTIONS — generic
════════════════════════════════════ */
.section { padding: 100px 60px; position: relative; z-index: 2; }

.sec-head {
  display: flex; align-items: flex-start;
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
}
.sec-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-deco-64);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,166,35,0.35);
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-top: -8px;
}

.sec-eye {
  font-size: var(--fs-caption); font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.sec-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  letter-spacing: 2px; line-height: 1;
  margin-bottom: 16px;
}
.sec-h span { color: var(--gold); }
.sec-sub {
  font-size: var(--fs-subheading); color: var(--muted); line-height: 1.4;
  max-width: 560px;
  animation: fup 0.9s 0.25s ease both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ════════════════════════════════════
   ISLANDS
════════════════════════════════════ */
.islands-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center;
  isolation: isolate;
}
.islands-image{
  position: relative;
  z-index: 10000;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  transition: all .35s;
  background: var(--sky2);
}
.islands-image:hover {
  border-color: var(--border2);
  box-shadow: 0 12px 50px rgba(0,0,0,0.4),
              0 0 30px rgba(245,166,35,0.08);
}
.islands-image img { width: 100%; display: block; mix-blend-mode: lighten; }
.islands-image-badge {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 1001;
  background: rgba(6,9,14,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
}
.islands-image-badge span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h2); line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 16px var(--gold-glow);
}
.islands-image-badge small {
  display: block;
  font-size: var(--fs-badge-xs); color: var(--muted);
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.islands-list { display: flex; flex-direction: column; gap: 14px; }
.island-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--sky2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 18px 22px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.island-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform .3s;
}
.island-card:hover {
  border-color: var(--border2);
  transform: translateX(6px);
  background: var(--sky3);
}
.island-card:hover::before { transform: scaleY(1); }
.island-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h2); color: var(--gold);
  min-width: 44px; text-align: center; line-height: 1;
  text-shadow: 0 0 16px var(--gold-glow);
}
.island-text-title { font-size: var(--fs-subheading); font-weight: 700; margin-bottom: 4px; }
.island-text-desc { font-size: var(--fs-body-lg); color: var(--muted); line-height: 1.55; }

@media (max-width: 1300px) {
  .islands-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gen-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }
  .gen-image {
    order: -1;
  }
  .eco-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }
  .eco-visual {
    order: -1;
  }
}

/* ════════════════════════════════════
   GENERATORS
════════════════════════════════════ */
.gen-section {
  background: var(--sky2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gen-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.gen-image {
  position: relative;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  transition: all .35s;
  background-image: url('/assets/generatory.webp');
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
}
.gen-image:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}
.gen-image img { 
  width: 50%; 
  height: 100%;
  display: block;
  object-fit: cover;
  margin: 0 auto;
  mix-blend-mode: normal;
  opacity: 1;
}
.gen-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(245,166,35,0.08) 0%,
    transparent 50%);
  pointer-events: none;
}

.gen-tiers { display: flex; flex-direction: column; gap: 14px; }
.gen-tier {
  display: flex; align-items: center; gap: 18px;
  background: var(--sky3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 18px 22px;
  transition: all .3s; position: relative; overflow: hidden;
}
.gen-tier:hover {
  border-color: var(--border2);
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.gen-tier::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  opacity: 0.7;
  transition: opacity .3s;
}
.gen-tier:hover::before { opacity: 1; }
.gen-tier-icon {
  font-size: var(--fs-h3);
  text-align: center;
  flex-shrink: 0;
}
.gen-tier-icon img {
  width: auto;
  max-width: clamp(60px, 12vw, 80px);
  height: auto;
  display: block;
  margin: 0 auto;
}
.gen-tier-info { flex: 1; min-width: 0; }
.gen-tier-name { font-size: var(--fs-subheading); font-weight: 700; margin-bottom: 4px; }
.gen-tier-desc { font-size: var(--fs-body-lg); color: var(--muted); margin-bottom: 8px; }
.gen-tier-bar {
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}
.gen-tier-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-glow);
}
.gen-tier-fill.bonus {
  background: linear-gradient(90deg, var(--teal), #56CF6A);
  box-shadow: 0 0 8px rgba(29,233,182,0.4);
}
.gen-tier-badge {
  font-size: var(--fs-badge-sm); font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(245,166,35,0.2);
  white-space: nowrap;
  flex-shrink: 0;
}
.gen-tier-badge.bonus {
  background: rgba(29,233,182,0.1);
  color: var(--teal);
  border-color: rgba(29,233,182,0.25);
}

/* ════════════════════════════════════
   SIZE
════════════════════════════════════ */
.size-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: stretch;
}
@media (max-width: 1300px) {
  .size-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 1300px) and (min-width: 769px) {
  .size-visual {
    aspect-ratio: 16 / 8;
    padding: 24px;
  }
  .size-box {
    width: clamp(250px, 24vw, 360px);
    min-width: 250px;
  }
  .size-box-inner {
    font-size: clamp(28px, 3.6vw, 36px);
  }
}
.size-visual {
  position: relative;
  background: var(--sky2);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: clamp(22px, 3vw, 32px);
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-self: start;
  overflow: hidden;
  transition: all .35s;
}
.size-visual:hover {
  border-color: var(--border2);
  box-shadow: 0 12px 50px rgba(0,0,0,0.4),
              0 0 30px rgba(245,166,35,0.08);
}
.size-grid-bg {
  position: absolute; inset: 0; border-radius: 20px;
  background-image:
    linear-gradient(rgba(245,166,35,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.size-box {
  position: relative; z-index: 1;
  width: clamp(250px, 18vw, 420px);
  aspect-ratio: 1 / 1;
  min-width: 80px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(245,166,35,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  box-shadow: 0 0 40px rgba(245,166,35,0.18),
              inset 0 0 40px rgba(245,166,35,0.04);
}
.size-box-pulse {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  opacity: 0;
  animation: sizePulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes sizePulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}
.size-box-inner {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4.2vw, 38px); color: var(--gold);
  letter-spacing: 2px;
  text-shadow: 0 0 30px var(--gold-glow);
}
.size-box-sub {
  font-size: var(--fs-caption); color: var(--muted);
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
}
.size-corner {
  position: absolute;
  font-size: var(--fs-caption);
  font-family: 'JetBrains Mono', monospace;
  color: rgba(245,166,35,0.5);
  font-weight: 600;
}

.size-feats {
  display: flex; flex-direction: column;
  gap: 14px;
  height: 100%; justify-content: center;
}
.sf {
  display: flex; align-items: center; gap: 16px;
  font-size: var(--fs-meta-lg);
  background: var(--sky2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all .3s;
}
.sf:hover {
  border-color: var(--border2);
  background: var(--sky3);
  transform: translateX(4px);
}
.sf-dot {
  width: 44px;
  min-width: 44px;
  text-align: center;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 16px var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sf-dot i {
  font-size: var(--fs-h2-sm);
  color: var(--gold);
  line-height: 1;
}
.sf-text { color: var(--muted); line-height: 1.55; padding-top: 0; font-size: var(--fs-body-lg); }
.sf-text strong { color: var(--text); display: block; margin-bottom: 2px; font-size: var(--fs-subheading); }

/* ════════════════════════════════════
   ECONOMY
════════════════════════════════════ */
.eco-section {
  background: var(--sky2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.eco-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: stretch;
}
@keyframes emerald-swing {
  0% { transform: perspective(800px) rotateY(-20deg); }
  100% { transform: perspective(800px) rotateY(15deg); }
}
.eco-visual {
  position: relative;
  border-radius: 20px; overflow: hidden;
  border: none;
  transition: all .35s;
  background-image: url('/assets/pozadiEmerald.webp');
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.eco-visual:hover {
  box-shadow: 0 12px 50px rgba(0,0,0,0.4),
              0 0 30px rgba(61,220,132,0.08);
}
.eco-emerald {
  width: 27% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: auto !important;
  position: absolute !important;
  inset: 0 !important;
  mix-blend-mode: normal;
  animation: emerald-swing 2s ease-in-out infinite alternate;
}
.eco-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(6,13,20,0.85) 0%,
    rgba(6,13,20,0.3) 50%,
    transparent 100%);
  display: flex; align-items: flex-end; padding: 24px;
}
.eco-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,13,20,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: var(--fs-meta); font-weight: 700;
  color: var(--gold);
}
.eco-stats-floating {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(6,9,14,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
}
.esf-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h3); line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 16px var(--gold-glow);
}
.esf-lbl {
  font-size: var(--fs-badge-xs); color: var(--muted);
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.eco-cards {
  display: flex; flex-direction: column;
  gap: 14px;
}
.eco-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--sky3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 18px 22px;
  transition: all .3s; position: relative; overflow: hidden;
}
.eco-card:hover {
  border-color: var(--border2);
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.eco-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  opacity: 0.7;
  transition: opacity .3s;
}
.eco-card:hover::before { opacity: 1; }
.eco-card-icon {
  font-size: var(--fs-h3);
  flex-shrink: 0;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(245,166,35,0.3));
}
.eco-card-icon i { display: block; }
.eco-card-info { flex: 1; min-width: 0; }
.eco-card-title { font-size: var(--fs-body-lg); font-weight: 700; margin-bottom: 5px; }
.eco-card-desc { font-size: var(--fs-body-lg); color: var(--muted); line-height: 1.55; }

/* ════════════════════════════════════
   RANKS
════════════════════════════════════ */
.ranks-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.ranks-line {
  position: absolute;
  top: 70px; left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(139,160,180,0.3) 0%,
    rgba(79,195,247,0.4) 33%,
    rgba(206,147,216,0.4) 66%,
    rgba(245,166,35,0.5) 100%);
  z-index: 0;
}
.rank-card {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--sky2);
  transition: all .35s;
  position: relative;
  z-index: 1;
}
.rank-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: var(--border2);
}
.rank-top {
  padding: 28px 24px 20px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; overflow: hidden;
}
.rank-bg-num {
  position: absolute; bottom: -10px; right: -5px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-deco-110); opacity: 0.07;
  line-height: 1; pointer-events: none;
}
.rank-icon {
  font-size: var(--fs-display-xl); margin-bottom: 14px;
  filter: drop-shadow(0 0 16px currentColor);
}
.rank-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h3); letter-spacing: 1px;
  margin-bottom: 6px;
}
.rank-step {
  font-size: var(--fs-caption); font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.rank-body {
  padding: 0 24px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.rank-desc {
  font-size: var(--fs-body-lg);
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}
.rank-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-meta-lg); color: var(--muted);
}
.rank-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

.rank-1 .rank-top { background: linear-gradient(160deg, #1a1f2e, #0f1520); }
.rank-1 .rank-name, .rank-1 .rank-bg-num { color: #8BA0B4; }
.rank-1 .rank-dot { background: #8BA0B4; }

.rank-2 .rank-top { background: linear-gradient(160deg, #221b08, #151000); }
.rank-2 .rank-name, .rank-2 .rank-bg-num { color: #f5c451; }
.rank-2 .rank-dot { background: #f5c451; }

.rank-3 .rank-top { background: linear-gradient(160deg, #1f1f2a, #141425); }
.rank-3 .rank-name, .rank-3 .rank-bg-num { color: #CE93D8; }
.rank-3 .rank-dot { background: #CE93D8; }

.rank-4 .rank-top { background: linear-gradient(160deg, #221808, #160f00); }
.rank-4 .rank-name, .rank-4 .rank-bg-num { color: var(--gold); }
.rank-4 .rank-dot { background: var(--gold); }

/* ════════════════════════════════════
   EVENTS
════════════════════════════════════ */
.events-section {
  background: var(--sky2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 20px;
}
.ev-card {
  border-radius: 16px;
  border: none;
  background-color: var(--sky3);
  background-size: 104%;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 32px 28px;
  transition: transform .25s ease, background-size .35s ease;
  position: relative; overflow: hidden;
}
.ev-card::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(6,9,14,0.72);
  transition: none;
  pointer-events: none;
  z-index: 0;
}
.ev-card > * { position: relative; z-index: 1; }
.ev-card::after {
  content: attr(data-num);
  position: absolute;
  right: 18px; top: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-deco-64);
  color: rgba(245,166,35,0.05);
  line-height: 1; pointer-events: none;
}
.ev-card:hover {
  transform: translateY(-3px);
  background-size: 100%;
  box-shadow: none;
}
.ev-icon {
  font-size: var(--fs-h1); margin-bottom: 18px;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(245,166,35,0.3));
}
.ev-icon i { display: block; }
.ev-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h4); letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.ev-desc { font-size: var(--fs-body-lg); color: var(--muted); line-height: 1.65; font-size: var(--fs-paragraph); }

/* ════════════════════════════════════
   CTA
════════════════════════════════════ */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #211707 0%, #1a1204 48%, #2a1b08 100%);
  border-top: 1px solid rgba(255,209,102,0.22);
  overflow: hidden;
}
.cta-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  animation: gridDrift 22s linear infinite;
}
.cta-bg-text {
  position: absolute; right: -20px; bottom: -50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-deco-280);
  color: rgba(245,166,35,0.04);
  letter-spacing: -10px;
  pointer-events: none; line-height: 1;
  white-space: nowrap;
}
.cta-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: 2px; line-height: 1;
  margin-bottom: 16px;
}
.cta-h span { color: var(--gold); }
.cta-sub {
  font-size: var(--fs-subheading); color: var(--muted); line-height: 1.7;
  max-width: 480px;
}
.ip-pill-cta {
  display: inline-flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  padding: 14px 20px; border-radius: 12px;
  margin-top: 32px;
}
.ip-pill-cta-label {
  font-size: var(--fs-badge-sm); font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.ip-pill-cta-addr {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-body-lg); color: var(--gold); font-weight: 600;
}
.copy-btn-cta {
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-caption); font-weight: 700;
  cursor: auto;
  transition: all .2s;
}
.copy-btn-cta:hover {
  background: rgba(245,166,35,0.28);
}
.copy-btn-cta[data-copied="1"] {
  background: rgba(29,233,182,0.18);
  color: var(--teal);
  border-color: rgba(29,233,182,0.35);
}

.cta-right {
  position: relative;
  flex-shrink: 0;
}
.cta-right img {
  width: 320px;
  max-width: 38vw;
  border-radius: 20px;
  border: 1px solid var(--border2);
  display: block;
  position: relative; z-index: 1;
}
.cta-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(245,166,35,0.15), transparent 65%);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* ════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { padding-bottom: 60px; }
  .hero-inner { padding: 130px 40px 0; max-width: 560px; }
  .hero.hero-original::before {
    background: linear-gradient(180deg,
      rgba(6,9,14,0.7) 0%,
      rgba(6,9,14,0.5) 40%,
      rgba(6,9,14,0.85) 100%);
  }
  .hero-illus {
    display: none;
  }

  .section { padding: 70px 40px; }
  .scroll-hint { left: 40px; }

  .sec-num { font-size: var(--fs-display-hero-sm); }
  .sec-head { gap: 24px; margin-bottom: 48px; }

  .islands-wrap, .gen-grid, .size-wrap, .eco-wrap {
    gap: 32px;
  }

  /* Ranks 4 → 2 cols */
  .ranks-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ranks-line { display: none; }

  /* Events 3 → 2 cols (third spans full) */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ev-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .cta-bg-text { font-size: var(--fs-deco-200); }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  /* HERO */
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
    align-items: flex-start;
  }
  .hero-illus {
    width: 250px;
    max-width: 70%;
    right: -8%;
    top: auto;
    bottom: 0;
    transform: translateY(30%);
  }
  .hero.hero-original::before {
    background: linear-gradient(180deg,
      rgba(6,9,14,0.4) 0%,
      rgba(6,9,14,0.85) 100%);
  }
  .hero-orb { display: none; }
  .floater { display: none; }
  .floater.f1, .floater.f3 { display: block; }
  .floater.f1 { font-size: var(--fs-h5); }
  .floater.f3 { font-size: var(--fs-subheading); }

  .hero-inner {
    padding: 0;
    max-width: 100%;
    width: 100%;
    position: relative;
  }
  .hero-crumb { font-size: var(--fs-caption); margin-bottom: 18px; }
  .hero-badge {
    font-size: var(--fs-badge-sm);
    padding: 6px 12px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
    letter-spacing: 1px;
  }
  .hero-desc {
    font-size: var(--fs-body-lg);
    margin: 18px 0 28px;
  }

  .hero-stats {
    gap: 20px;
    margin-bottom: 28px;
  }
  .hs-num { font-size: var(--fs-h3); }
  .hs-label { font-size: var(--fs-badge-sm); }
  .hs-divider { height: 28px; }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: var(--fs-meta-lg);
  }

  .scroll-hint { display: none; }

  /* SECTIONS */
  .section { padding: 60px 20px; }

  .sec-head {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 36px;
  }
  .sec-num {
    font-size: var(--fs-display-lg);
    margin-top: 0;
    margin-bottom: 6px;
  }
  .sec-h {
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: 1px;
  }
  .sec-sub { font-size: var(--fs-paragraph); }

  /* Islands — stack */
  .islands-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .islands-image-badge {
    top: 14px; right: 14px;
    padding: 8px 14px;
  }
  .islands-image-badge span { font-size: var(--fs-h4); }

  /* Generators — stack, image first */
  .gen-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gen-image { order: -1; }
  .gen-tier { padding: 14px 16px; gap: 14px; }
  .gen-tier-icon { font-size: var(--fs-h4); min-width: 32px; }
  .gen-tier-badge {
    font-size: var(--fs-badge-xs);
    padding: 4px 9px;
  }

  /* Size — stack */
  .size-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .size-visual {
    aspect-ratio: 16 / 10;
    padding: 22px;
  }
  .size-box {
    width: clamp(190px, 26vw, 300px);
    min-width: 110px;
  }
  .size-box-pulse { inset: -6px; }
  .size-box-inner { font-size: clamp(24px, 8vw, 32px); }
  .size-corner { font-size: var(--fs-badge-xs); }
  .sf {
    padding: 14px 16px;
    gap: 14px;
  }
  .sf-dot { width: 36px; min-width: 36px; }
  .sf-dot i { font-size: var(--fs-h4); }
  .sf-text { font-size: var(--fs-body-lg); }

  /* Eco — stack */
  .eco-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .eco-cards { gap: 12px; }
  .eco-card { padding: 14px 16px; gap: 14px; }
  .eco-card-icon { font-size: var(--fs-h4); }

  /* Ranks — single col */
  .ranks-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rank-card { display: flex; align-items: stretch; }
  .rank-top {
    flex: 0 0 130px;
    padding: 22px 14px;
    border-right: 1px solid rgba(255,255,255,0.05);
  }
  .rank-icon { font-size: var(--fs-h1-sm); margin-bottom: 8px; }
  .rank-name { font-size: var(--fs-h5); }
  .rank-step { font-size: var(--fs-badge-xs); }
  .rank-bg-num { font-size: var(--fs-deco-80); bottom: -8px; right: -3px; }
  .rank-body {
    flex: 1;
    padding: 22px 18px;
    justify-content: center;
  }

  /* Events — stack */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ev-card:nth-child(3) { grid-column: auto; }
  .ev-card { padding: 24px 22px; }
  .ev-icon { font-size: var(--fs-h2); margin-bottom: 14px; }
  .ev-title { font-size: var(--fs-subheading); }

  /* CTA — stack */
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .cta-right {
    width: 100%;
    text-align: center;
  }
  .cta-right img {
    width: 100%;
    max-width: 320px;
  }
  .cta-bg-text { font-size: var(--fs-deco-140); right: -10px; bottom: -30px; }
  .ip-pill-cta {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    gap: 12px;
  }
  .ip-pill-cta-addr { font-size: var(--fs-meta); }

  /* FOOTER */
  footer {
    padding: 22px 20px;
    font-size: var(--fs-caption);
    line-height: 1.7;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤380px)
════════════════════════════════════ */
@media (max-width: 380px) {
  .hero h1 { font-size: var(--fs-h1); }
  .hero-desc { font-size: var(--fs-meta-lg); }
  .hs-num { font-size: var(--fs-h4); }

  .sec-h { font-size: var(--fs-h3-sm); }
  .sec-num { font-size: var(--fs-h1-sm); }
  .island-num { font-size: var(--fs-h3-sm); min-width: 36px; }
  .rank-top { flex: 0 0 110px; padding: 18px 10px; }
  .rank-icon { font-size: var(--fs-h2-sm); }
  .rank-name { font-size: var(--fs-subheading); }
  .size-box-inner { font-size: var(--fs-h3-sm); }
  .ev-title { font-size: var(--fs-paragraph); }
}

