:root{
  --bg0:#050612;
  --bg1:#070B18;

  --text: rgba(255,255,255,0.92);
  --mutedHero: rgba(255,255,255,0.78);

  --cyan:#38E6FF;
  --indigo:#6C7CFF;
  --purple:#A96CFF;

  --whiteTop:#F6F8FD;
  --whiteBottom:#EEF1F8;

  --card:#FFFFFF;

  --shadowSoft: 0 12px 32px rgba(15, 24, 40, 0.08);
  --shadowNav: 0 16px 44px rgba(0,0,0,0.32);
  --shadowCard: 0 2px 8px rgba(15, 24, 40, 0.04), 0 8px 24px rgba(15, 24, 40, 0.06);
  --shadowCardHover: 0 4px 12px rgba(15, 24, 40, 0.08), 0 16px 40px rgba(15, 24, 40, 0.12);

  --max: 1080px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --easeOut: cubic-bezier(0.16, 1, 0.3, 1);
}

*{ box-sizing:border-box; }
html{
  height:100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body{ 
  height:100%;
  overflow-x: hidden;
}

body{
  margin:0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg0), var(--bg1));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection styling */
::selection{
  background: rgba(108,124,255,0.25);
  color: rgba(255,255,255,0.95);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.center{ text-align:center; }
.small{ font-size: 14px; }
.pad-top{ margin-top: 72px; }
.pad-top-sm{ margin-top: 24px; }

/* Web3 protocol typography */
.hero-title,
.h2, .h3,
.nav-link,
.btn{
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* Fade-in animations for content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animated gradient orb background effect */
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ================= HERO ================= */

.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background: url("assets/wallpaper.png") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.03);
}

/* Animated floating orbs */
.hero::after{
  content:"";
  position:absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,108,255,0.15), transparent 70%);
  top: 20%;
  right: -10%;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

/* soft overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 50% 42%, rgba(56,230,255,0.14), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(169,108,255,0.12), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,0.38), rgba(0,0,0,0.58));
  pointer-events:none;
}

/* DIAGONAL WHITE LINE + STREAKS */
.hero::before{
  content:"";
  position:absolute;
  left:-28%;
  top: 18%;
  width: 160%;
  height: 2px;
  background: rgba(255,255,255,0.30);
  transform: rotate(13deg);
  transform-origin: center;
  z-index:3;
  pointer-events:none;
  box-shadow: 0 0 18px rgba(255,255,255,0.10);
  opacity: 0.85;
}

.hero .hero-streaks{
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
}
.hero .hero-streaks::before,
.hero .hero-streaks::after{
  content:"";
  position:absolute;
  left:-30%;
  width: 160%;
  height: 1px;
  background: rgba(255,255,255,0.14);
  transform: rotate(13deg);
  transform-origin:center;
  filter: blur(0.2px);
}
.hero .hero-streaks::before{
  top: 33%;
  opacity: 0.55;
}
.hero .hero-streaks::after{
  top: 45%;
  opacity: 0.35;
}

/* NAV with backdrop blur and glass effect */
.nav{
  position:relative;
  z-index:5;
  width:min(var(--max), calc(100% - 40px));
  margin: 20px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;

  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(10,12,24,0.26);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadowNav);
  animation: fadeIn 0.6s var(--ease);
}

.brand{
  display:flex;
  align-items:center;
  padding: 4px 6px;
  border-radius: 14px;
  transition: transform 200ms var(--ease);
}

.brand:hover{
  transform: scale(1.05);
}

.brand-logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  transform: scale(3.0);
  transform-origin: left center;
  filter: drop-shadow(0 0 22px rgba(108,124,255,0.20));
  display:block;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 14px;
  justify-content:center;
  flex: 1;
}

.nav-link{
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
}

.nav-link::after{
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  border-radius: 2px;
  transition: transform 200ms var(--ease);
}

.nav-link:hover{
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.nav-link:hover::after{
  transform: translateX(-50%) scaleX(1);
}

/* Mobile menu button */
.nav-toggle{
  display:none;
  width: 44px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  cursor:pointer;
  transition: all 200ms var(--ease);
}

.nav-toggle:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

.nav-toggle span{
  display:block;
  height:2px;
  width:18px;
  margin:5px auto;
  background: rgba(255,255,255,0.90);
  border-radius: 2px;
  transition: all 200ms var(--ease);
}

/* Animate hamburger to X */
.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO CONTENT with staggered animations */
.hero-inner{
  position:relative;
  z-index:4;
  flex: 1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: 80px 20px 120px;
  text-align:center;
}

.hero-logo{
  height: 124px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
  animation: scaleIn 0.8s var(--easeOut) 0.2s backwards;
}

.hero-logo img{
  width: 120px;
  height: 120px;
  object-fit: contain;
  transform: scale(8);
  transform-origin: center;
  filter:
    drop-shadow(0 0 28px rgba(56,230,255,0.22))
    drop-shadow(0 0 60px rgba(169,108,255,0.16));
}

.hero-title{
  margin: 20px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;
  animation: fadeInUp 0.8s var(--easeOut) 0.4s backwards;
}

.hero-sub{
  margin-top: 16px;
  max-width: 62ch;
  color: var(--mutedHero);
  font-size: 16px;
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--easeOut) 0.6s backwards;
}

.btn-telegram{
  animation: fadeInUp 0.8s var(--easeOut) 0.8s backwards;
}

/* ================= PROFESSIONAL WAVE TRANSITION ================= */
.hero-curve{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  z-index:4;
  pointer-events:none;
  
  background: linear-gradient(
    180deg,
    rgba(246,248,253,0) 0%,
    rgba(246,248,253,0.4) 25%,
    rgba(246,248,253,0.85) 60%,
    rgba(246,248,253,1) 100%
  );
  
  clip-path: polygon(
    0% 40%,
    10% 42%,
    20% 38%,
    30% 35%,
    40% 32%,
    50% 30%,
    60% 28%,
    70% 22%,
    80% 18%,
    90% 15%,
    100% 12%,
    100% 100%,
    0% 100%
  );
}

/* Subtle veil overlay for extra smoothness */
.wave-veil{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index:3;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    rgba(246,248,253,0) 0%,
    rgba(246,248,253,0.15) 100%
  );
}

/* ================= BUTTONS ================= */

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor:pointer;
  transition: all 200ms var(--ease);
  text-decoration: none;
  overflow: hidden;
}

.btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 500ms var(--ease);
}

.btn:hover::before{
  transform: translateX(100%);
}

.btn-primary{
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  color: white;
  border-color: rgba(255,255,255,0.16);
  box-shadow: 
    0 14px 32px rgba(108,124,255,0.30),
    inset 0 1px 0 rgba(255,255,255,0.20);
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 
    0 20px 40px rgba(108,124,255,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:active{
  transform: translateY(0);
}

.btn-ghost{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.12);
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}

/* Telegram icon */
.tg-icon{
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.9 4.6c.3-1.2-.9-2.1-2-1.6L2.9 10.1c-1.2.5-1.1 2.2.1 2.6l4.9 1.5 1.9 5.8c.4 1.2 2 1.4 2.7.4l2.9-3.6 5.1 3.7c1 .7 2.3.2 2.6-1l3-14.5z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.9 4.6c.3-1.2-.9-2.1-2-1.6L2.9 10.1c-1.2.5-1.1 2.2.1 2.6l4.9 1.5 1.9 5.8c.4 1.2 2 1.4 2.7.4l2.9-3.6 5.1 3.7c1 .7 2.3.2 2.6-1l3-14.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-telegram{ margin-top: 28px; }

.btn-glow{
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.35), transparent 60%);
  transition: opacity 200ms var(--ease);
  pointer-events:none;
}

.btn-primary:hover .btn-glow{
  opacity: 1;
}

/* Scroll hint with bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll{
  position:absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index:5;
  animation: fadeIn 1s var(--ease) 1.2s backwards;
}

.scroll-hint{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all 200ms var(--ease);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  animation: none;
}

/* ================= WHITE SECTIONS ================= */

.page{
  position:relative;
  background: linear-gradient(180deg, var(--whiteTop), var(--whiteBottom));
}

.section{
  position:relative;
}

.section-white{
  background: transparent;
}

/* Typography */
.h2{
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(11,18,34,0.95);
  margin: 0 0 16px;
  position: relative;
}

.h2::after{
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  border-radius: 2px;
}

.h3{
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: rgba(11,18,34,0.92);
  margin: 0 0 14px;
}

.h4{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: rgba(11,18,34,0.88);
  margin: 0 0 12px;
}

.lead{
  font-size: 18px;
  line-height: 1.7;
  color: rgba(11,18,34,0.72);
  max-width: 68ch;
  margin: 0 auto;
}

.lead.small{
  font-size: 16px;
  max-width: 64ch;
}

.muted{
  color: rgba(11,18,34,0.68);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 16px;
}

/* Lists with gradient bullets */
.bullets{
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.bullets li{
  position:relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: rgba(11,18,34,0.75);
  line-height: 1.6;
  font-size: 15px;
  transition: transform 200ms var(--ease);
}

.bullets li:hover{
  transform: translateX(4px);
}

.bullets li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  box-shadow: 0 0 8px rgba(108,124,255,0.3);
}

.bullets li strong{
  color: rgba(11,18,34,0.90);
  font-weight: 600;
}

/* Cards with enhanced shadows and hover effects */
.card{
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(10,14,24,0.08);
  box-shadow: var(--shadowCard);
  transition: all 400ms var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity 400ms var(--ease);
}

.card:hover{
  box-shadow: var(--shadowCardHover);
  border-color: rgba(108,124,255,0.12);
  transform: translateY(-2px);
}

.card:hover::before{
  opacity: 1;
}

/* ================= STATS GRID ================= */

.stats-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
  margin-top: 40px;
}

.stat-card{
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(10,14,24,0.08);
  box-shadow: var(--shadowCard);
  text-align: center;
  transition: all 300ms var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  transform: scaleX(0);
  transition: transform 400ms var(--ease);
}

.stat-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadowCardHover);
  border-color: rgba(108,124,255,0.12);
}

.stat-card:hover::before{
  transform: scaleX(1);
}

.stat-icon{
  font-size: 36px;
  margin-bottom: 12px;
  filter: grayscale(0.3);
  transition: all 300ms var(--ease);
}

.stat-card:hover .stat-icon{
  filter: grayscale(0);
  transform: scale(1.1);
}

.stat-num{
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(11,18,34,0.95);
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label{
  font-size: 14px;
  font-weight: 600;
  color: rgba(11,18,34,0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Split layout */
.split{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  gap: 24px;
  margin-top: 48px;
  padding-bottom: 48px;
}

/* Panel with gradient border */
.panel{
  background: rgba(255,255,255,0.65);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(10,14,24,0.08);
  box-shadow: var(--shadowCard);
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.panel::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(108,124,255,0.4), rgba(169,108,255,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms var(--ease);
}

.panel:hover::before{
  opacity: 1;
}

.panel-head{
  margin-bottom: 32px;
}

/* ================= GAMES ================= */

.games{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.game-card{
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10,14,24,0.08);
  box-shadow: var(--shadowCard);
  transition: all 300ms var(--ease);
  position: relative;
}

.game-card::before{
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 180deg at 50% 50%, 
    transparent, 
    rgba(108,124,255,0.15), 
    transparent 50%
  );
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.game-card:hover::before{
  opacity: 1;
}

.game-card:hover{
  transform: translateY(-4px);
  box-shadow: 
    0 4px 12px rgba(15, 24, 40, 0.06),
    0 16px 32px rgba(15, 24, 40, 0.10);
  border-color: rgba(108,124,255,0.15);
}

.game-media{
  position:relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(108,124,255,0.08), rgba(169,108,255,0.08));
}

.game-thumb{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 400ms var(--ease);
}

.game-card:hover .game-thumb{
  transform: scale(1.06);
}

.game-thumb.poker{
  background-image: url("assets/poker.jpg");
}

.game-thumb.rob{
  background-image: url("assets/rob.jpg");
}

.game-thumb.future{
  background-image: url("assets/future.jpg");
}

.game-badge{
  position:absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  z-index:2;
  animation: fadeIn 0.6s var(--ease);
}

.game-badge.live{
  background: rgba(24,190,120,0.92);
  color: white;
  box-shadow: 0 4px 14px rgba(24,190,120,0.35);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(24,190,120,0.35); }
  50% { box-shadow: 0 4px 20px rgba(24,190,120,0.55); }
}

.game-badge.soon{
  background: rgba(169,108,255,0.92);
  color: white;
  box-shadow: 0 4px 14px rgba(169,108,255,0.35);
}

.game-badge.dev{
  background: rgba(108,124,255,0.92);
  color: white;
  box-shadow: 0 4px 14px rgba(108,124,255,0.35);
}

.game-body{
  padding: 24px;
  position: relative;
  z-index: 1;
  background: white;
}

.game-title{
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(11,18,34,0.95);
  margin-bottom: 8px;
}

.game-sub{
  font-weight: 500;
  color: rgba(11,18,34,0.58);
  font-size: 15px;
}

.game-desc{
  font-size: 14px;
  color: rgba(11,18,34,0.68);
  line-height: 1.6;
  margin-bottom: 16px;
}

.game-rating{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(10,14,24,0.06);
}

.stars{
  display:flex;
  gap: 4px;
}

.star{
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 200ms var(--ease);
}

.star:hover{
  transform: scale(1.2);
}

.star.filled{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236C7CFF'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.star.half{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236C7CFF'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77V2z'/%3E%3Cpath d='M12 2v15.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%23D0D5DD'/%3E%3C/svg%3E");
}

.star.empty{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D0D5DD'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.rating-text{
  font-size: 13px;
  color: rgba(11,18,34,0.62);
  font-weight: 500;
}

.rating-text.muted{
  color: rgba(11,18,34,0.48);
  font-style: italic;
}

.btn-soft{
  width: 100%;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(108,124,255,0.08), rgba(169,108,255,0.08));
  color: rgba(108,124,255,0.95);
  border: 1px solid rgba(108,124,255,0.12);
  transition: all 200ms var(--ease);
}

.btn-soft:hover{
  background: linear-gradient(135deg, rgba(108,124,255,0.12), rgba(169,108,255,0.12));
  border-color: rgba(108,124,255,0.20);
  transform: translateY(-1px);
}

/* ================= CONTACT ================= */

.contact-row{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(108,124,255,0.04);
  border: 1px solid rgba(108,124,255,0.08);
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(11,18,34,0.85);
  transition: all 200ms var(--ease);
  position: relative;
  overflow: hidden;
}

.contact-row::before{
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(108,124,255,0.08), transparent);
  transition: left 400ms var(--ease);
}

.contact-row:hover::before{
  left: 100%;
}

.contact-row:hover{
  background: rgba(108,124,255,0.08);
  border-color: rgba(108,124,255,0.16);
  transform: translateX(4px);
}

.contact-ico{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 200ms var(--ease);
}

.contact-row:hover .contact-ico{
  transform: scale(1.1) rotate(5deg);
}

.contact-ico.tg{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236C7CFF'%3E%3Cpath d='M21.9 4.6c.3-1.2-.9-2.1-2-1.6L2.9 10.1c-1.2.5-1.1 2.2.1 2.6l4.9 1.5 1.9 5.8c.4 1.2 2 1.4 2.7.4l2.9-3.6 5.1 3.7c1 .7 2.3.2 2.6-1l3-14.5z'/%3E%3C/svg%3E");
}

.contact-ico.x{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236C7CFF'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

.contact-ico.mail{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C7CFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m2 7 10 7 10-7'/%3E%3C/svg%3E");
}

.chev{
  margin-left: auto;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C7CFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

.contact-row:hover .chev{
  transform: translateX(3px);
  opacity: 1;
}

/* ================= FOOTER ================= */

.footer{
  padding: 48px 0 56px;
  border-top: 1px solid rgba(10,14,24,0.08);
  margin-top: 72px;
  position: relative;
}

.footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(11,18,34,0.58);
}

.footer-left{
  font-weight: 500;
}

.footer-right{
  font-size: 13px;
  color: rgba(11,18,34,0.52);
}

/* ================= EARN SECTION ================= */

.earn-section{ 
  margin-top: 24px;
}

.earn-image-card{
  padding: 0;
  overflow: hidden;
}

.earn-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}

.earn-image-card:hover .earn-image{
  transform: scale(1.03);
}

/* ================= TOKENOMICS ================= */

.tokenomics-section{
  align-items: start;
}

.tokenomics-left,
.tokenomics-right{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tokenomics-card{
  /* inherits card styles */
}

.tokenomics-image-card{
  padding: 24px;
  position: relative;
}

.tokenomics-image-card::after{
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(108,124,255,0.1), rgba(169,108,255,0.1));
  opacity: 0;
  transition: opacity 400ms var(--ease);
  pointer-events: none;
}

.tokenomics-image-card:hover::after{
  opacity: 1;
}

.tokenomics-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(10,14,24,0.06);
  position: relative;
  z-index: 1;
}

/* ================= COUNTDOWN ================= */

.countdown-strip{
  width: 100%;
  margin: 24px 0 48px;
  padding: 32px 0 36px;
  position: relative;

  background:
    radial-gradient(900px 260px at 50% 0%, rgba(108,124,255,0.18), transparent 60%),
    radial-gradient(700px 240px at 80% 80%, rgba(169,108,255,0.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.86));

  border-top: 1px solid rgba(10,14,24,0.08);
  border-bottom: 1px solid rgba(10,14,24,0.08);
}

.countdown-strip::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,124,255,0.4), transparent);
}

.countdown-inner{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.countdown-label{
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(11,18,34,0.86);
}

.countdown-clock{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;

  background: rgba(10,12,24,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);

  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
}

.countdown-clock::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,124,255,0.1), rgba(169,108,255,0.1));
  opacity: 0.5;
}

.cd-block{
  display: grid;
  gap: 8px;
  min-width: 90px;
  position: relative;
  z-index: 1;
}

.cd-num{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.02em;
  line-height: 1;

  color: rgba(255,255,255,0.95);
  text-shadow:
    0 0 18px rgba(56,230,255,0.16),
    0 0 26px rgba(169,108,255,0.12);
}

.cd-unit{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.cd-sep{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 32px);
  color: rgba(255,255,255,0.35);
  transform: translateY(-6px);
  position: relative;
  z-index: 1;
}

.countdown-sub{
  font-size: 13px;
  color: rgba(11,18,34,0.64);
  margin-top: 4px;
}

.countdown-target{
  font-weight: 600;
  color: rgba(11,18,34,0.78);
}

.btn-pump{
  margin-top: 16px;
  min-width: 280px;
}

.btn-locked{
  pointer-events: none;
  filter: grayscale(1) saturate(0.2);
  opacity: 0.55;
  background: linear-gradient(135deg, rgba(120,120,120,0.55), rgba(90,90,90,0.55));
  box-shadow: none;
  border-color: rgba(255,255,255,0.10);
}

.btn-locked:hover{
  transform: none;
}

/* ================= UPDATES TABLE ================= */

.updates-table{
  margin-top: 20px;
  border: 1px solid rgba(10,14,24,0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.88);
}

.updates-row{
  display: grid;
  grid-template-columns: 140px 1fr 150px;
  gap: 16px;
  padding: 18px 20px;
  align-items: center;
  border-top: 1px solid rgba(10,14,24,0.06);
  transition: background 200ms var(--ease);
}

.updates-row:hover{
  background: rgba(108,124,255,0.03);
}

.updates-row:first-child{
  border-top: 0;
}

.updates-row:first-child:hover{
  background: rgba(108,124,255,0.06);
}

.updates-head{
  background: rgba(108,124,255,0.06);
}

.updates-head .updates-cell{
  font-weight: 700;
  color: rgba(11,18,34,0.86);
  letter-spacing: -0.01em;
  font-size: 13px;
}

.updates-cell{
  color: rgba(11,18,34,0.78);
  font-size: 14px;
  line-height: 1.5;
}

.update-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(10,14,24,0.10);
  background: rgba(255,255,255,0.95);
  transition: transform 200ms var(--ease);
}

.update-tag:hover{
  transform: scale(1.05);
}

.update-tag.live{
  border-color: rgba(24,190,120,0.30);
  color: rgba(24,190,120,0.95);
  background: rgba(24,190,120,0.08);
}

.update-tag.early{
  border-color: rgba(169,108,255,0.30);
  color: rgba(169,108,255,0.95);
  background: rgba(169,108,255,0.08);
}

.update-tag.shipped{
  border-color: rgba(108,124,255,0.30);
  color: rgba(108,124,255,0.95);
  background: rgba(108,124,255,0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px){
  .nav-links{
    position:fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,12,24,0.98);
    backdrop-filter: blur(20px);
    flex-direction:column;
    justify-content:center;
    padding: 40px;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms var(--ease);
    z-index:999;
  }

  .nav-links.is-open{
    opacity: 1;
    visibility: visible;
  }

  .nav-link{
    font-size: 24px;
    padding: 16px 24px;
  }

  .nav-link::after{
    display: none;
  }

  .nav-toggle{
    display:block;
    z-index:1000;
  }

  .nav .btn-ghost{
    display:none;
  }

  .panel{
    padding: 28px 24px;
  }

  .games{
    grid-template-columns: 1fr;
  }

  .game-media{
    height: 160px;
  }
  
  .game-desc{
    font-size: 13px;
  }
  
  .btn-soft{
    padding: 11px 18px;
    font-size: 13px;
  }
  
  .split{
    margin-top: 40px;
    padding-bottom: 40px;
    gap: 20px;
  }
  
  .card{
    padding: 24px;
    border-radius: 20px;
  }
  
  .contact-row{
    padding: 14px 16px;
    font-size: 14px;
    margin-top: 10px;
  }
  
  .contact-ico{
    width: 22px;
    height: 22px;
  }
  
  .footer{
    padding: 32px 0 40px;
    margin-top: 56px;
  }
  
  .footer-inner{
    font-size: 12px;
    gap: 14px;
    flex-direction: column;
    text-align: center;
  }
  
  .footer-right{
    font-size: 12px;
  }
  
  .pad-top{
    margin-top: 56px;
  }
  
  .pad-top-sm{
    margin-top: 20px;
  }

  .tokenomics-left,
  .tokenomics-right{
    gap: 20px;
  }

  .countdown-strip{
    padding: 28px 0 32px;
  }
}

@media (max-width: 480px){
  .hero-title{
    font-size: clamp(28px, 10vw, 40px);
  }
  
  .hero-sub{
    font-size: 15px;
  }
  
  .h2{
    font-size: clamp(26px, 8vw, 36px);
  }
  
  .h3{
    font-size: 20px;
  }
  
  .brand-logo{
    transform: scale(2.2);
  }
  
  .btn{
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .btn-telegram{
    width: 100%;
    max-width: 100%;
  }
  
  .hero-curve{
    height: 100px;
  }
  
  .wave-veil{
    height: 80px;
  }
  
  .game-media{
    height: 130px;
  }
  
  .container{
    width: calc(100% - 32px);
  }

  .lead{
    font-size: 16px;
  }

  .lead.small{
    font-size: 15px;
  }

  .panel{
    padding: 24px 20px;
  }

  .card{
    padding: 20px;
  }

  .countdown-clock{
    gap: 10px;
    padding: 14px 14px;
  }
  
  .cd-block{ 
    min-width: 70px;
    gap: 6px;
  }
  
  .cd-sep{ 
    transform: translateY(-4px);
  }

  .btn-pump{
    min-width: 100%;
    font-size: 13px;
  }

  .updates-row{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }
  
  .updates-head{
    display: none;
  }
  
  .updates-row .updates-cell:first-child{
    font-weight: 700;
    color: rgba(11,18,34,0.86);
    font-size: 13px;
  }
}

/* Landscape mobile */
@media (max-width: 780px) and (orientation: landscape){
  .hero{
    min-height: 100vh;
  }
  
  .hero-inner{
    padding: 40px 20px 80px;
  }
  
  .hero-logo{
    height: 80px;
  }
  
  .hero-logo img{
    transform: scale(4);
  }
  
  .hero-title{
    font-size: clamp(24px, 6vw, 36px);
    margin-top: 12px;
  }
  
  .hero-sub{
    font-size: 14px;
    margin-top: 12px;
  }
  
  .btn-telegram{
    margin-top: 20px;
  }
  
  .hero-scroll{
    display: none;
  }
  
  .hero-curve{
    height: 80px;
  }
}


body{
  margin:0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg0), var(--bg1));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.center{ text-align:center; }
.small{ font-size: 14px; }
.pad-top{ margin-top: 72px; }
.pad-top-sm{ margin-top: 24px; }

/* Web3 protocol typography */
.hero-title,
.h2, .h3,
.nav-link,
.btn{
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* ================= HERO ================= */

.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background: url("assets/wallpaper.png") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.03);
}

/* soft overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 50% 42%, rgba(56,230,255,0.14), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(169,108,255,0.12), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,0.38), rgba(0,0,0,0.58));
  pointer-events:none;
}

/* DIAGONAL WHITE LINE + STREAKS */
.hero::before{
  content:"";
  position:absolute;
  left:-28%;
  top: 18%;
  width: 160%;
  height: 2px;
  background: rgba(255,255,255,0.30);
  transform: rotate(13deg);
  transform-origin: center;
  z-index:3;
  pointer-events:none;
  box-shadow: 0 0 18px rgba(255,255,255,0.10);
  opacity: 0.85;
}

.hero .hero-streaks{
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
}
.hero .hero-streaks::before,
.hero .hero-streaks::after{
  content:"";
  position:absolute;
  left:-30%;
  width: 160%;
  height: 1px;
  background: rgba(255,255,255,0.14);
  transform: rotate(13deg);
  transform-origin:center;
  filter: blur(0.2px);
}
.hero .hero-streaks::before{
  top: 33%;
  opacity: 0.55;
}
.hero .hero-streaks::after{
  top: 45%;
  opacity: 0.35;
}

/* NAV */
.nav{
  position:relative;
  z-index:5;
  width:min(var(--max), calc(100% - 40px));
  margin: 20px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;

  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(10,12,24,0.26);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadowNav);
}

.brand{
  display:flex;
  align-items:center;
  padding: 4px 6px;
  border-radius: 14px;
}

.brand-logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  transform: scale(3.0);
  transform-origin: left center;
  filter: drop-shadow(0 0 22px rgba(108,124,255,0.20));
  display:block;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 14px;
  justify-content:center;
  flex: 1;
}

.nav-link{
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
}
.nav-link:hover{
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

/* Mobile menu button */
.nav-toggle{
  display:none;
  width: 44px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:18px;
  margin:5px auto;
  background: rgba(255,255,255,0.90);
  border-radius: 2px;
}

/* HERO CONTENT */
.hero-inner{
  position:relative;
  z-index:4;
  flex: 1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: 80px 20px 120px;
  text-align:center;
}

.hero-logo{
  height: 124px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}

.hero-logo img{
  width: 92px;
  height: 92px;
  object-fit: contain;
  transform: scale(2.4);
  transform-origin: center;
  filter:
    drop-shadow(0 0 28px rgba(56,230,255,0.22))
    drop-shadow(0 0 60px rgba(169,108,255,0.16));
}

.hero-title{
  margin: 20px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero-sub{
  margin-top: 16px;
  max-width: 62ch;
  color: var(--mutedHero);
  font-size: 16px;
  line-height: 1.7;
}

/* ================= PROFESSIONAL WAVE TRANSITION ================= */
.hero-curve{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  z-index:4;
  pointer-events:none;
  
  background: linear-gradient(
    180deg,
    rgba(246,248,253,0) 0%,
    rgba(246,248,253,0.4) 25%,
    rgba(246,248,253,0.85) 60%,
    rgba(246,248,253,1) 100%
  );
  
  clip-path: polygon(
    0% 40%,
    10% 42%,
    20% 38%,
    30% 35%,
    40% 32%,
    50% 30%,
    60% 28%,
    70% 22%,
    80% 18%,
    90% 15%,
    100% 12%,
    100% 100%,
    0% 100%
  );
}

/* Subtle veil overlay for extra smoothness */
.wave-veil{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index:3;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    rgba(246,248,253,0) 0%,
    rgba(246,248,253,0.15) 100%
  );
}

/* ================= BUTTONS ================= */

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor:pointer;
  transition: all 200ms var(--ease);
  text-decoration: none;
}

.btn-primary{
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  color: white;
  border-color: rgba(255,255,255,0.16);
  box-shadow: 
    0 14px 32px rgba(108,124,255,0.30),
    inset 0 1px 0 rgba(255,255,255,0.20);
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 
    0 20px 40px rgba(108,124,255,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:active{
  transform: translateY(0);
}

.btn-ghost{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.12);
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}

/* Telegram icon */
.tg-icon{
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.9 4.6c.3-1.2-.9-2.1-2-1.6L2.9 10.1c-1.2.5-1.1 2.2.1 2.6l4.9 1.5 1.9 5.8c.4 1.2 2 1.4 2.7.4l2.9-3.6 5.1 3.7c1 .7 2.3.2 2.6-1l3-14.5z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.9 4.6c.3-1.2-.9-2.1-2-1.6L2.9 10.1c-1.2.5-1.1 2.2.1 2.6l4.9 1.5 1.9 5.8c.4 1.2 2 1.4 2.7.4l2.9-3.6 5.1 3.7c1 .7 2.3.2 2.6-1l3-14.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-telegram{ margin-top: 28px; }

.btn-glow{
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.35), transparent 60%);
  transition: opacity 200ms var(--ease);
  pointer-events:none;
}

.btn-primary:hover .btn-glow{
  opacity: 1;
}

/* Scroll hint */
.hero-scroll{
  position:absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index:5;
}

.scroll-hint{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all 200ms var(--ease);
}

.scroll-hint:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(2px);
}

/* ================= WHITE SECTIONS ================= */

.page{
  position:relative;
  background: linear-gradient(180deg, var(--whiteTop), var(--whiteBottom));
}

.section{
  position:relative;
}

.section-white{
  background: transparent;
}

/* Typography */
.h2{
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(11,18,34,0.95);
  margin: 0 0 16px;
}

.h3{
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: rgba(11,18,34,0.92);
  margin: 0 0 14px;
}

.lead{
  font-size: 18px;
  line-height: 1.7;
  color: rgba(11,18,34,0.72);
  max-width: 68ch;
  margin: 0 auto;
}

.lead.small{
  font-size: 16px;
  max-width: 64ch;
}

.muted{
  color: rgba(11,18,34,0.68);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 16px;
}

/* Lists */
.bullets{
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.bullets li{
  position:relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: rgba(11,18,34,0.75);
  line-height: 1.6;
  font-size: 15px;
}

.bullets li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
}

.bullets li strong{
  color: rgba(11,18,34,0.90);
  font-weight: 600;
}

/* Cards */
.card{
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(10,14,24,0.08);
  box-shadow: var(--shadowCard);
}

/* Split layout */
.split{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  gap: 24px;
  margin-top: 48px;
  padding-bottom: 48px;
}

/* Panel */
.panel{
  background: rgba(255,255,255,0.65);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(10,14,24,0.08);
  box-shadow: var(--shadowCard);
  margin-top: 48px;
}

.panel-head{
  margin-bottom: 32px;
}

/* ================= GAMES ================= */

.games{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.game-card{
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10,14,24,0.08);
  box-shadow: var(--shadowCard);
  transition: all 300ms var(--ease);
}

.game-card:hover{
  transform: translateY(-4px);
  box-shadow: 
    0 4px 12px rgba(15, 24, 40, 0.06),
    0 16px 32px rgba(15, 24, 40, 0.10);
  border-color: rgba(108,124,255,0.15);
}

.game-media{
  position:relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(108,124,255,0.08), rgba(169,108,255,0.08));
}

.game-thumb{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 400ms var(--ease);
}

.game-card:hover .game-thumb{
  transform: scale(1.06);
}

.game-thumb.poker{
  background-image: url("assets/poker.jpg");
}

.game-thumb.rob{
  background-image: url("assets/rob.jpg");
}

.game-thumb.future{
  background-image: url("assets/future.jpg");
}

.game-badge{
  position:absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  z-index:2;
}

.game-badge.live{
  background: rgba(24,190,120,0.92);
  color: white;
  box-shadow: 0 4px 14px rgba(24,190,120,0.35);
}

.game-badge.soon{
  background: rgba(169,108,255,0.92);
  color: white;
  box-shadow: 0 4px 14px rgba(169,108,255,0.35);
}

.game-badge.dev{
  background: rgba(108,124,255,0.92);
  color: white;
  box-shadow: 0 4px 14px rgba(108,124,255,0.35);
}

.game-body{
  padding: 24px;
}

.game-title{
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(11,18,34,0.95);
  margin-bottom: 8px;
}

.game-sub{
  font-weight: 500;
  color: rgba(11,18,34,0.58);
  font-size: 15px;
}

.game-desc{
  font-size: 14px;
  color: rgba(11,18,34,0.68);
  line-height: 1.6;
  margin-bottom: 16px;
}

.game-rating{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(10,14,24,0.06);
}

.stars{
  display:flex;
  gap: 4px;
}

.star{
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

.star.filled{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236C7CFF'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.star.half{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236C7CFF'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77V2z'/%3E%3Cpath d='M12 2v15.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%23D0D5DD'/%3E%3C/svg%3E");
}

.star.empty{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D0D5DD'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.rating-text{
  font-size: 13px;
  color: rgba(11,18,34,0.62);
  font-weight: 500;
}

.rating-text.muted{
  color: rgba(11,18,34,0.48);
  font-style: italic;
}

.btn-soft{
  width: 100%;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(108,124,255,0.08), rgba(169,108,255,0.08));
  color: rgba(108,124,255,0.95);
  border: 1px solid rgba(108,124,255,0.12);
  transition: all 200ms var(--ease);
}

.btn-soft:hover{
  background: linear-gradient(135deg, rgba(108,124,255,0.12), rgba(169,108,255,0.12));
  border-color: rgba(108,124,255,0.20);
  transform: translateY(-1px);
}

/* ================= CONTACT ================= */

.contact-row{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(108,124,255,0.04);
  border: 1px solid rgba(108,124,255,0.08);
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(11,18,34,0.85);
  transition: all 200ms var(--ease);
}

.contact-row:hover{
  background: rgba(108,124,255,0.08);
  border-color: rgba(108,124,255,0.16);
  transform: translateX(4px);
}

.contact-ico{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-ico.tg{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236C7CFF'%3E%3Cpath d='M21.9 4.6c.3-1.2-.9-2.1-2-1.6L2.9 10.1c-1.2.5-1.1 2.2.1 2.6l4.9 1.5 1.9 5.8c.4 1.2 2 1.4 2.7.4l2.9-3.6 5.1 3.7c1 .7 2.3.2 2.6-1l3-14.5z'/%3E%3C/svg%3E");
}

.contact-ico.x{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236C7CFF'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

.chev{
  margin-left: auto;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C7CFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

.contact-row:hover .chev{
  transform: translateX(3px);
  opacity: 1;
}

/* ================= FOOTER ================= */

.footer{
  padding: 48px 0 56px;
  border-top: 1px solid rgba(10,14,24,0.08);
  margin-top: 72px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(11,18,34,0.58);
}

.footer-left{
  font-weight: 500;
}

.footer-right{
  font-size: 13px;
  color: rgba(11,18,34,0.52);
}

/* ================= EARN SECTION ================= */

.earn-section{ 
  margin-top: 24px;
}

.earn-image-card{
  padding: 0;
  overflow: hidden;
}

.earn-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}

.earn-image-card:hover .earn-image{
  transform: scale(1.03);
}

/* ================= TOKENOMICS ================= */

.tokenomics-section{
  align-items: start;
}

.tokenomics-left,
.tokenomics-right{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tokenomics-card{
  /* inherits card styles */
}

.tokenomics-image-card{
  padding: 24px;
}

.tokenomics-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(10,14,24,0.06);
}

/* ================= COUNTDOWN ================= */

.countdown-strip{
  width: 100%;
  margin: 24px 0 48px;
  padding: 32px 0 36px;

  background:
    radial-gradient(900px 260px at 50% 0%, rgba(108,124,255,0.18), transparent 60%),
    radial-gradient(700px 240px at 80% 80%, rgba(169,108,255,0.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.86));

  border-top: 1px solid rgba(10,14,24,0.08);
  border-bottom: 1px solid rgba(10,14,24,0.08);
}

.countdown-inner{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.countdown-label{
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(11,18,34,0.86);
}

.countdown-clock{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;

  background: rgba(10,12,24,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);

  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

.cd-block{
  display: grid;
  gap: 8px;
  min-width: 90px;
}

.cd-num{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.02em;
  line-height: 1;

  color: rgba(255,255,255,0.95);
  text-shadow:
    0 0 18px rgba(56,230,255,0.16),
    0 0 26px rgba(169,108,255,0.12);
}

.cd-unit{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.cd-sep{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 32px);
  color: rgba(255,255,255,0.35);
  transform: translateY(-6px);
}

.countdown-sub{
  font-size: 13px;
  color: rgba(11,18,34,0.64);
  margin-top: 4px;
}

.countdown-target{
  font-weight: 600;
  color: rgba(11,18,34,0.78);
}

.btn-pump{
  margin-top: 16px;
  min-width: 280px;
}

.btn-locked{
  pointer-events: none;
  filter: grayscale(1) saturate(0.2);
  opacity: 0.55;
  background: linear-gradient(135deg, rgba(120,120,120,0.55), rgba(90,90,90,0.55));
  box-shadow: none;
  border-color: rgba(255,255,255,0.10);
}

.btn-locked:hover{
  transform: none;
}

/* ================= UPDATES TABLE ================= */

.updates-table{
  margin-top: 20px;
  border: 1px solid rgba(10,14,24,0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.88);
}

.updates-row{
  display: grid;
  grid-template-columns: 140px 1fr 150px;
  gap: 16px;
  padding: 18px 20px;
  align-items: center;
  border-top: 1px solid rgba(10,14,24,0.06);
}

.updates-row:first-child{
  border-top: 0;
}

.updates-head{
  background: rgba(108,124,255,0.06);
}

.updates-head .updates-cell{
  font-weight: 700;
  color: rgba(11,18,34,0.86);
  letter-spacing: -0.01em;
  font-size: 13px;
}

.updates-cell{
  color: rgba(11,18,34,0.78);
  font-size: 14px;
  line-height: 1.5;
}

.update-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(10,14,24,0.10);
  background: rgba(255,255,255,0.95);
}

.update-tag.live{
  border-color: rgba(24,190,120,0.30);
  color: rgba(24,190,120,0.95);
  background: rgba(24,190,120,0.08);
}

.update-tag.early{
  border-color: rgba(169,108,255,0.30);
  color: rgba(169,108,255,0.95);
  background: rgba(169,108,255,0.08);
}

.update-tag.shipped{
  border-color: rgba(108,124,255,0.30);
  color: rgba(108,124,255,0.95);
  background: rgba(108,124,255,0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px){
  .nav-links{
    position:fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,12,24,0.98);
    backdrop-filter: blur(20px);
    flex-direction:column;
    justify-content:center;
    padding: 40px;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms var(--ease);
    z-index:999;
  }

  .nav-links.is-open{
    opacity: 1;
    visibility: visible;
  }

  .nav-link{
    font-size: 24px;
    padding: 16px 24px;
  }

  .nav-link::after{
    display: none;
  }

  .nav-toggle{
    display:block;
    z-index:1000;
  }

  .nav .btn-ghost{
    display:none;
  }

  /* Keep stats in 2x2 grid on tablet */
  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card{
    padding: 24px 20px;
  }

  .stat-icon{
    font-size: 32px;
    margin-bottom: 10px;
  }

  .panel{
    padding: 28px 24px;
  }

  .games{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .game-media{
    height: 140px;
  }
  
  .game-body{
    padding: 20px;
  }
  
  .game-desc{
    font-size: 13px;
  }
  
  .btn-soft{
    padding: 11px 18px;
    font-size: 13px;
  }
  
  .split{
    margin-top: 40px;
    padding-bottom: 40px;
    gap: 20px;
  }
  
  .card{
    padding: 24px;
    border-radius: 20px;
  }
  
  .contact-row{
    padding: 14px 16px;
    font-size: 14px;
    margin-top: 10px;
  }
  
  .contact-ico{
    width: 22px;
    height: 22px;
  }
  
  .footer{
    padding: 32px 0 40px;
    margin-top: 56px;
  }
  
  .footer-inner{
    font-size: 12px;
    gap: 14px;
    flex-direction: column;
    text-align: center;
  }
  
  .footer-right{
    font-size: 12px;
  }
  
  .pad-top{
    margin-top: 56px;
  }
  
  .pad-top-sm{
    margin-top: 20px;
  }

  .tokenomics-left,
  .tokenomics-right{
    gap: 20px;
  }

  .countdown-strip{
    padding: 28px 0 32px;
  }

  .countdown-clock{
    gap: 10px;
    padding: 14px 16px;
  }
  
  .cd-block{ 
    min-width: 72px;
    gap: 6px;
  }
  
  .cd-sep{ 
    transform: translateY(-4px);
    font-size: clamp(18px, 3vw, 24px);
  }

  /* Keep updates table in columns on tablet */
  .updates-row{
    grid-template-columns: 120px 1fr 130px;
    gap: 12px;
    padding: 16px 18px;
  }
}

@media (max-width: 640px){
  /* Stats stay in 2x2 grid */
  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card{
    padding: 20px 16px;
  }

  .stat-icon{
    font-size: 28px;
    margin-bottom: 8px;
  }

  .stat-num{
    font-size: clamp(24px, 6vw, 32px);
  }

  .stat-label{
    font-size: 11px;
  }

  /* Games stay in 2 columns on mobile */
  .games{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .game-media{
    height: 120px;
  }

  .game-body{
    padding: 16px;
  }

  .game-title{
    font-size: 16px;
  }

  .game-sub{
    font-size: 13px;
  }

  .game-desc{
    font-size: 12px;
    margin-bottom: 12px;
  }

  .game-rating{
    padding-top: 10px;
    margin-bottom: 14px;
  }

  .rating-text{
    font-size: 11px;
  }

  /* Countdown optimization */
  .countdown-clock{
    gap: 8px;
    padding: 12px 14px;
  }
  
  .cd-block{ 
    min-width: 60px;
    gap: 4px;
  }

  .cd-num{
    font-size: clamp(24px, 7vw, 36px);
  }

  .cd-unit{
    font-size: 10px;
  }
  
  .cd-sep{ 
    font-size: clamp(16px, 4vw, 20px);
  }

  /* Updates table - stack only on very small screens */
  .updates-row{
    grid-template-columns: 100px 1fr 110px;
    gap: 10px;
    padding: 14px 16px;
  }

  .updates-cell{
    font-size: 13px;
  }

  .updates-head .updates-cell{
    font-size: 12px;
  }
}

@media (max-width: 480px){
  .hero-title{
    font-size: clamp(28px, 10vw, 40px);
  }
  
  .hero-sub{
    font-size: 15px;
  }
  
  .h2{
    font-size: clamp(26px, 8vw, 36px);
  }
  
  .h3{
    font-size: 20px;
  }
  
  .brand-logo{
    transform: scale(2.2);
  }
  
  .btn{
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .btn-telegram{
    width: 100%;
    max-width: 100%;
  }
  
  .hero-curve{
    height: 100px;
  }
  
  .wave-veil{
    height: 80px;
  }
  
  .container{
    width: calc(100% - 32px);
  }

  .lead{
    font-size: 16px;
  }

  .lead.small{
    font-size: 15px;
  }

  .panel{
    padding: 24px 20px;
  }

  .card{
    padding: 20px;
  }

  /* Stats - compact but still 2x2 */
  .stats-grid{
    gap: 10px;
  }

  .stat-card{
    padding: 18px 14px;
    border-radius: 16px;
  }

  .stat-icon{
    font-size: 24px;
    margin-bottom: 6px;
  }

  .stat-num{
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 6px;
  }

  .stat-label{
    font-size: 10px;
  }

  /* Games grid adjustments */
  .games{
    gap: 14px;
  }

  .game-card{
    border-radius: 16px;
  }

  .game-media{
    height: 100px;
  }

  .game-badge{
    font-size: 9px;
    padding: 5px 10px;
    top: 10px;
    left: 10px;
  }

  .game-body{
    padding: 14px;
  }

  .game-title{
    font-size: 15px;
    margin-bottom: 6px;
  }

  .game-sub{
    font-size: 12px;
  }

  .game-desc{
    font-size: 12px;
    margin-bottom: 10px;
  }

  .game-rating{
    gap: 8px;
    padding-top: 8px;
    margin-bottom: 12px;
  }

  .star{
    width: 12px;
    height: 12px;
  }

  .rating-text{
    font-size: 11px;
  }

  .btn-soft{
    padding: 10px 16px;
    font-size: 12px;
  }

  .btn-pump{
    min-width: 100%;
    font-size: 13px;
  }

  /* Updates - minimal stacking */
  .updates-row{
    grid-template-columns: 90px 1fr 100px;
    gap: 8px;
    padding: 12px 14px;
  }
  
  .updates-head .updates-cell{
    font-size: 11px;
  }

  .updates-cell{
    font-size: 12px;
  }

  .update-tag{
    height: 24px;
    padding: 0 8px;
    font-size: 9px;
  }
}

/* Very small screens - only here we stack some things */
@media (max-width: 360px){
  /* Stats finally go to single column on very small screens */
  .stats-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card{
    padding: 20px 18px;
  }

  /* Games also single column on very tiny screens */
  .games{
    grid-template-columns: 1fr;
  }

  .game-media{
    height: 140px;
  }

  /* Updates stack on very small screens */
  .updates-head{
    display: none;
  }

  .updates-row{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
  }

  .updates-row .updates-cell:first-child{
    font-weight: 700;
    color: rgba(11,18,34,0.86);
    font-size: 12px;
  }

  .countdown-clock{
    flex-wrap: wrap;
    justify-content: center;
  }

  .cd-block{
    min-width: 55px;
  }

  .cd-sep:last-of-type{
    display: none;
  }
}

/* Landscape mobile */
@media (max-width: 780px) and (orientation: landscape){
  .hero{
    min-height: 100vh;
  }
  
  .hero-inner{
    padding: 40px 20px 80px;
  }
  
  .hero-logo{
    height: 170px;
  }
  
  .hero-logo img{
    transform: scale(4);
  }
  
  .hero-title{
    font-size: clamp(24px, 6vw, 36px);
    margin-top: 12px;
  }
  
  .hero-sub{
    font-size: 14px;
    margin-top: 12px;
  }
  
  .btn-telegram{
    margin-top: 20px;
  }
  
  .hero-scroll{
    display: none;
  }
  
  .hero-curve{
    height: 80px;
  }
}