:root {
    --white: #ffffff;
    --off-white: #f7f6f2;
    --cream: #eee9df;
    --coral: #ae4941;
    --coral-light: #fdecea;
    --green: #000;
    --green-mid: #2d6a5a;
    --green-light: #e6f0ed;
    --text: #1e1e1e;
    --text-muted: #7a756e;
    --border: #e2ddd5;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
  }
  *,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }
  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img {
    max-width: 100%;
  }
	
  .svg-orange {
  	filter: invert(36%) sepia(18%) saturate(3474%) hue-rotate(325deg) brightness(87%) contrast(92%);
  }
  /* ═══ NAV ═══ */
  header {
    position:fixed; top:0; width:100%; z-index:100;
    padding:0 48px;
    background: rgba(255,255,255,0.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border);
    transition: box-shadow .3s;
  }
  header .container {
    max-width: 1600px;
    height:80px;
    display:flex; 
    align-items:center;
    justify-content:space-between;
  }
  header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
  .logo { display:flex; align-items:center; gap:11px; text-decoration:none; }
  .logo-mark {
    width:55px; 
    display:flex; 
    align-items:center; 
    justify-content:center;
  }
  .logo-mark svg { width:20px; height:20px; }
  .logo-text { font-family:var(--font-display); font-weight:700; font-size:18px; color:var(--green); }
  .nav-links { display:flex; gap:34px; list-style:none; }
  .nav-links a {
    text-decoration:none; color:var(--text-muted);
    font-size:14px; font-weight:500;
    position:relative; padding-bottom:3px;
    transition:color .25s;
  }
  .nav-links a::after {
    content:''; position:absolute; bottom:0; left:0;
    width:0; height:1.5px; background:var(--coral);
    transition:width .3s cubic-bezier(.4,0,.2,1);
  }
  .nav-links a:hover { color:var(--text); }
  .nav-links a:hover::after { width:100%; }
  .nav-cta {
    background:var(--coral); color:#fff;
    border:none; padding:10px 24px; border-radius:8px;
    font-family:var(--font-body); font-weight:600; font-size:14px;
    cursor:pointer; transition: transform .2s, box-shadow .3s;
  }
  .nav-cta:hover { transform:translateY(-1px); box-shadow:0 4px 16px rgba(232,83,63,.3); }

  /* ═══ HERO ═══ */
  .hero {
    min-height:100vh;
    padding:100px 48px 80px;
    position:relative;
    background:var(--off-white);
    overflow:hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container {
    max-width: 1600px;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;

  }
  .blob {
    position:absolute; border-radius:50%;
    filter:blur(90px); opacity:.35; pointer-events:none;
  }
  .blob-1 { width:480px; height:480px; background:var(--coral); top:-140px; right:8%; opacity:.15; }
  .blob-2 { width:320px; height:320px; background:var(--green-mid); bottom:-100px; left:12%; opacity:.12; }

  .hero-left { position:relative; z-index:2; max-width:1000px; }
  .hero-tag {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--green-light); border:1px solid rgba(45,106,90,.15);
    padding:7px 16px; border-radius:50px;
    font-size:13px; font-weight:500; color:var(--green-mid);
    margin-bottom:28px;
    animation: fadeUp .6s ease both;
  }
  .hero-tag .pulse-dot {
    width:7px; height:7px; border-radius:50%; background:var(--green-mid);
    animation:pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

  .hero h1 {
    font-family:var(--font-display);
    font-size:clamp(44px,5.5vw,68px);
    font-weight:800; line-height:1.1;
    color:var(--green);
    animation:fadeUp .7s .1s ease both;
  }
  .hero h1 em {
    font-style:italic; color:var(--coral);
  }
  .hero-desc {
    margin-top:22px; max-width:440px;
    font-size:16px; color:var(--text-muted); font-weight:300; line-height:1.7;
    animation:fadeUp .7s .25s ease both;
  }
  .hero-btns {
    display:flex; gap:14px; margin-top:38px; flex-wrap:wrap;
    animation:fadeUp .7s .4s ease both;
  }
  .btn-fill {
    background:var(--coral); color:#fff;
    border:none; padding:14px 30px; border-radius:10px;
    font-family:var(--font-body); font-weight:600; font-size:15px;
    cursor:pointer; text-decoration:none;
    display:inline-flex; align-items:center; gap:8px;
    transition:transform .2s, box-shadow .3s;
  }
  .btn-fill:hover { transform:translateY(-2px); box-shadow:0 6px 28px rgba(232,83,63,.3); }
  .btn-ghost {
    background:transparent; color:var(--green);
    border:1.5px solid var(--green);
    padding:14px 30px; border-radius:10px;
    font-family:var(--font-body); font-weight:600; font-size:15px;
    cursor:pointer; text-decoration:none;
    transition:background .3s, transform .2s;
  }
  .btn-ghost:hover { background:var(--green-light); transform:translateY(-2px); }

  .hero-right {
    position:relative; z-index:2;
    display:flex; align-items:center; justify-content:center;
    height:440px;
  }
  .hero-visual {
    width:380px; height:380px; border-radius:50%;
    background: linear-gradient(145deg, var(--cream) 0%, var(--green-light) 50%, var(--coral-light) 100%);
    position:relative;
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 40px 80px rgba(0,0,0,.08);
  }
  .hero-visual-inner {
    width:240px; height:240px; border-radius:50%;
    padding: 20px;
    background:var(--white);
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
  }
  .hero-visual-inner img { max-width:160px }
  .float-badge {
    position:absolute; background:#fff;
    border-radius:14px; padding:12px 18px;
    box-shadow:0 6px 28px rgba(0,0,0,.1);
    display:flex; align-items:center; gap:10px;
    animation:float 4s ease-in-out infinite;
    white-space:nowrap;
  }
  .float-badge .icon-wrap {
    width:36px; height:36px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
  }
  .float-badge .icon-wrap.coral { background:var(--coral-light); }
  .float-badge .icon-wrap.green { background:var(--green-light); }
  .float-badge .badge-text { font-size:13px; font-weight:600; color:var(--text); }
  .float-badge .badge-sub { font-size:11px; color:var(--text-muted); }
  .fb-1 { top:20px; right:-20px; animation-delay:0s; }
  .fb-2 { bottom:30px; left:-40px; animation-delay:1.5s; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

  /* ═══ STATS BAR ═══ */
  .stats-bar {
    display:grid; grid-template-columns:repeat(4,1fr);
    background:var(--green);
  }
  .stat-item {
    padding:38px 24px; text-align:center;
    border-right:1px solid rgba(255,255,255,.1);
  }
  .stat-item:last-child { border-right:none; }
  .stat-num {
    font-family:var(--font-display);
    font-size:38px; font-weight:800; color:#fff;
  }
  .stat-num .accent { color:#e1a773 }
  .stat-label { font-size:15px; color:rgba(255,255,255,.80); margin-top:4px; font-weight:400; }

  /* ═══ SECTION COMMON ═══ */
  .section { padding:100px 48px; }
  .container { max-width:1120px; margin:0 auto; }
  .sec-label {
    display:inline-flex; align-items:center; gap:10px;
    font-size:12px; font-weight:600; letter-spacing:2px;
    text-transform:uppercase; color:var(--coral);
    margin-bottom:12px;
  }
  .sec-label .dash { width:24px; height:2px; background:var(--coral); border-radius:1px; }
  .sec-title {
    font-family:var(--font-display);
    font-size:clamp(26px,3.5vw,40px);
    font-weight:700; color:var(--green);
    max-width:500px; line-height:1.2;
  }

  /* ═══ HOW WE WORK ═══ */
  .how { background:var(--white); }
  .how-head { display:flex; justify-content:space-between; align-items:flex-end; gap:40px; flex-wrap:wrap; margin-bottom:64px; }
  .how-head-right { max-width:380px; }
  .how-head-right p { font-size:15px; color:var(--text-muted); line-height:1.7; }

  .how-timeline { position:relative; }
  .how-row {
    display:grid; grid-template-columns:1fr 80px 1fr;
    align-items:start; gap:0;
  }
  .how-card-left { text-align:right; padding-right:32px; }
  .how-card-right { text-align:left; padding-left:32px; }
  .how-center {
    display:flex; flex-direction:column; align-items:center;
  }
  .how-dot {
    width:44px; height:44px; border-radius:50%;
    background:var(--white); border:3px solid var(--coral);
    display:flex; align-items:center; justify-content:center;
    position:relative; z-index:2;
    font-family:var(--font-display); font-weight:700; font-size:14px; color:var(--coral);
    transition:background .3s, transform .3s;
  }
  .how-row:hover .how-dot { background:var(--coral); color:#fff; transform:scale(1.08); }
  .how-line {
    width:3px; flex-grow:1; min-height:80px;
    background:linear-gradient(to bottom, var(--coral), var(--border));
  }
  .how-row:last-child .how-line { display:none; }

  .how-card {
    background:var(--off-white); border:1px solid var(--border);
    border-radius:16px; padding:26px 24px;
    opacity:0; transform:translateY(20px);
    transition:opacity .5s ease, transform .5s ease, border-color .3s, box-shadow .3s;
  }
  .how-card.visible { opacity:1; transform:translateY(0); }
  .how-row:hover .how-card { border-color:var(--coral); box-shadow:0 8px 32px rgba(232,83,63,.1); }
  .how-card h3 { font-family:var(--font-display); font-size:17px; font-weight:700; color:var(--green); margin-bottom:6px; }
  .how-card p { font-size:13.5px; color:var(--text-muted); line-height:1.6; }

  /* ═══ PLATFORMS ═══ */
  .platforms { background:var(--off-white); }
  .plat-head { text-align:center; }
  .plat-head .sec-label { justify-content:center; }
  .plat-head .sec-title { margin:0 auto; text-align:center; }
  .plat-head p { color:var(--text-muted); font-size:15px; margin-top:12px; }

  .plat-grid {
    display:grid; grid-template-columns:repeat(7,1fr);
    gap:14px; margin-top:52px;
  }
  .plat-card {
    background:var(--white); border:1px solid var(--border);
    border-radius:14px; padding:28px 10px;
    text-align:center;
    transition:border-color .3s, transform .3s, box-shadow .3s;
    cursor:default;
  }
  .plat-card:hover { border-color:var(--green-mid); transform:translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,.07); }
  .plat-card .plat-icon {
    width:42px; height:42px; border-radius:10px;
    background:var(--green-light); margin:0 auto 14px;
    display:flex; align-items:center; justify-content:center;
  }
  .plat-card .plat-icon svg { width:22px; height:22px; color:var(--green-mid); }
  .plat-card span { font-family:var(--font-display); font-size:14px; font-weight:600; color:var(--green); }

  /* ═══ FOUNDERS ═══ */
  .founders { background:#f8f9fa }
  .founders-layout {
    display:grid; grid-template-columns:1fr 1fr;
    gap:48px; margin-top:56px;
  }
  .founder-card {
    border:1px solid var(--border); border-radius:20px;
    text-decoration: none;
    overflow:hidden;
    transition:transform .3s, box-shadow .3s;
    background: #fff;
  }
  .founder-card:hover { transform:translateY(-5px); box-shadow:0 16px 48px rgba(0,0,0,.08); }
  .founder-img {
    height:220px;
    display:flex; align-items:center; justify-content:center;
    position:relative; overflow:hidden;
  }
  .fc-1 .founder-img { background:linear-gradient(135deg, var(--green-light), var(--cream)); }
  .fc-2 .founder-img { background:linear-gradient(135deg, var(--coral-light), var(--cream)); }
  .founder-img svg { width:100px; height:100px; opacity:.7; }
  .founder-body { padding:30px 28px 28px; }
  .founder-body h3 { font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--green); }
  .founder-body .role {
    font-size:13px; color:var(--coral); font-weight:500; margin:5px 0 14px;
    display:flex; align-items:center; gap:6px;
  }
  .founder-body .role .loc-dot { width:5px; height:5px; border-radius:50%; background:var(--coral); }
  .founder-body p { font-size:14px; color:var(--text-muted); line-height:1.75; }

  /* ═══ CONTACT ═══ */
  .contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:64px; align-items:start; }
  .contact-left .sec-title { margin-bottom:18px; }
  .contact-left > p { font-size:15px; color:var(--text-muted); line-height:1.7; margin-bottom:36px; }
  .contact-info-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:24px; }
  .contact-info-item .ci-icon {
    width:42px; height:42px; border-radius:12px;
    background:var(--white); border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .contact-info-item .ci-icon svg { width:18px; height:18px; color:var(--coral); }
  .contact-info-item .ci-text { line-height:1.5; }
  .contact-info-item .ci-text .ci-label { font-size:12px; color:var(--text-muted); font-weight:500; text-transform:uppercase; letter-spacing:.8px; }
  .contact-info-item .ci-text .ci-val { font-size:14px; color:var(--text); font-weight:500; }

  .contact-form {
    background:var(--white); border:1px solid var(--border);
    border-radius:20px; padding:40px 36px;
  }
  .contact-form h3 { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--green); margin-bottom:6px; }
  .contact-form > p { font-size:14px; color:var(--text-muted); margin-bottom:28px; }
  .fg { margin-bottom:18px; }
  .fg label { display:block; font-size:13px; font-weight:500; color:var(--text); margin-bottom:7px; }
  .fg input, .fg textarea {
    width:100%; padding:12px 16px; border-radius:10px;
    border:1.5px solid var(--border); background:var(--off-white);
    font-family:var(--font-body); font-size:14px; color:var(--text);
    outline:none; transition:border-color .3s, background .3s;
  }
  .fg input:focus, .fg textarea:focus {
     border-color:var(--coral); 
     background:#fff;
  }
  .fg textarea { resize:vertical; min-height:110px; }
  .fg input::placeholder, .fg textarea::placeholder { color:var(--text-muted); }
  .form-row { display:flex; gap:16px; }
  .form-row .fg { flex:1; }
  .btn-submit {
    width:100%; margin-top:10px;
    background:var(--coral); color:#fff;
    border:none; padding:14px; border-radius:10px;
    font-family:var(--font-body); font-weight:600; font-size:15px;
    cursor:pointer; transition:transform .2s, box-shadow .3s;
    display:flex; align-items:center; justify-content:center; gap:8px;
  }
  .btn-submit:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(232,83,63,.3); }

  /* ═══ FOOTER ═══ */
  footer {
    background:var(--green); color:#fff;
    padding:72px 48px 32px;
  }
  .footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; max-width:1120px; margin:0 auto; }
  .footer-brand .logo-text { color:#fff; }
  .footer-brand p { font-size:14px; color:rgba(255,255,255,.8); line-height:1.7; margin-top:16px; max-width:280px; }
  .footer-col h4 { font-family:var(--font-display); font-size:14px; font-weight:700; color:rgba(255,255,255,.8); text-transform:uppercase; letter-spacing:1.2px; margin-bottom:20px; }
  .footer-col ul { list-style:none; }
  .footer-col ul li { margin-bottom:11px; }
  .footer-col ul a { text-decoration:none; color:rgba(255,255,255,.8); font-size:14px; transition:color .25s; }
  .footer-col ul a:hover { color:var(--coral); }
  .footer-col .fc-item { display:flex; gap:10px; margin-bottom:14px; }
  .footer-col .fc-item svg { width:16px; height:16px; color:rgba(255,255,255,.8); flex-shrink:0; margin-top:2px; }
  .footer-col .fc-item span { font-size:14px; color:rgba(255,255,255,.8); line-height:1.5; }

  .footer-bottom {
    max-width:1120px; margin:52px auto 0;
    padding-top:28px; border-top:1px solid rgba(255,255,255,.5);
    display:flex; justify-content:space-between; align-items:center;
  }
  .footer-bottom p { font-size:13px; color:rgba(255,255,255,.8); }
  .back-top {
    width:40px; height:40px; border-radius:50%;
    border:1px solid rgba(255,255,255,.5);
    display:flex; align-items:center; justify-content:center;
    text-decoration:none; color:rgba(255,255,255,.5);
    transition:border-color .3s, transform .3s;
  }
  .back-top:hover { border-color:var(--coral); transform:translateY(-3px); }
  img {
    width: 100%;
  }
  .platform-slide {
    max-width: 140px;
    height: 140px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.platform-slide {
    background: #ffffff;
    padding: 0px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-weight: 600;
    color: #0d6efd;
    white-space: nowrap;
    font-size: 1.05rem;
    border: 1px solid #e3f2ff;
    transition: all 0.3s;
}
.plat-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    justify-content: center;
}
.plat-grid-wrapper {
    padding-top: 30px;;
}
.founder-image-custom {
    max-width: 150px;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
}
 

 /* Why Hungry Monkey Section */
.why-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.why-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 40px;
}
.why-choose-header h2 {
  text-align: center;
  margin: 0 auto;
}

.why-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.why-card {
    width: calc((100% - 30px) / 2);
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(231, 76, 60, 0.15);
    border-color: var(--coral);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #fff5f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.why-icon img {
  max-width: 40px;
}

.why-card:hover .why-icon {
    background: #ae4941;
    transform: scale(1.1);
}

.why-card:hover img {
  filter: brightness(0)invert(1);
}
.why-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a3a2e;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.why-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}
.footer-brand .logo-mark {
  width: 80px;
}
.hero-visual-inner img {
  border-radius: 100%;
}
.menu-toggle{
  display:none;
  width:28px;
  height:22px;
  position:relative;
  cursor:pointer;
}

.menu-toggle span{
  position:absolute;
  width:100%;
  height:3px;
  background:#000;
  left:0;
  transition:0.4s ease;
}

.menu-toggle span:nth-child(1){ top:0; }
.menu-toggle span:nth-child(2){ top:9px; }
.menu-toggle span:nth-child(3){ top:18px; }

/* CROSS ANIMATION */
.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg);
  top:9px;
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg);
  top:9px;
}

/*====game section css=====*/
.contact { background:var(--off-white); }
.games-section {
  background: #ffffff;
}

.game-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 0;
    border-top: 1px solid #ebebeb;
    transition: background .2s;
    text-decoration: none;
}
.game-thumb {
    flex-shrink: 0;
    width: 440px;
    aspect-ratio: 20 / 10;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f3f1;
    position: relative;
}
.thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    transition: transform .35s ease;
}
.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #333;
    padding: 3px 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .12);
}
.game-body {
    flex: 1;
}
.game-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #444746;
    margin-bottom: 8px;
}
.game-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #111;
    margin-bottom: 8px;
}
.game-desc {
    font-size: 14px;
    color: #444746;
    line-height: 1.6;
    max-width: 380px;
}
.game-network {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 500;
    color: #5f6368;
}
.game-row:nth-child(even) {
    flex-direction: row-reverse;
}

.game-row:hover .thumb-ph {
    transform: scale(1.08);
}
.games-content {
    padding-top: 20px;
} 
.games-content .game-row:first-child  {
  border-top:none;
}
.thumb-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.games-content .game-row:last-child {
  padding-bottom: 0px;
}
.whatsapp-float a{
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform .3s ease;
}

.whatsapp-float a:hover{
  transform: scale(1.1);
}

/* ── Thumb overlay ── */
  .game-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    transition: background .3s ease;
    pointer-events: none;
  }
  .game-row:hover .game-thumb::after {
    background: rgba(0, 0, 0, 0.50);
  }

  .thumb-link-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: scale(0.65);
    transition: opacity .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
    pointer-events: none;
  }
  .game-row:hover .thumb-link-icon {
    opacity: 1;
    transform: scale(1);
  }

  .thumb-link-icon img {
    width: 50px;
    height: 50px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 100px;
    filter: brightness(0) invert(1) ;
  }



  /* ═══ RESPONSIVE ═══ */
  @media(max-width:1024px) {
    .hero .container { grid-template-columns:1fr; text-align:center; padding-top:20px; }
    .hero-left { max-width:100%; }
    .hero-desc { margin-left:auto; margin-right:auto; }
    .hero-btns { justify-content:center; }
    .hero-right { height:320px; }
    .hero-visual { width:280px; height:280px; }
    .hero-visual-inner { width:180px; height:180px; }
    .plat-grid { grid-template-columns:repeat(4,1fr); }
    .contact-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .hero h1 br {
      display: none;
    }
    .hero h1 {
      font-size: 32px;
    }
    .hero-btns {
      margin-top: 20px
    }
    .hero {
      padding: 100px 20px 30px;
    }

  }
  @media(max-width:768px) {
    header { padding:0 22px; }
    .section { padding:72px 22px; }
    .how-row { grid-template-columns:1fr; position: relative; }
    .how-card-left, .how-card-right { text-align:left; padding:0; }
    .how-center {  
        flex-direction: row;
        gap: 16px;
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 99;
    }
    .how-line { width:40px; height:3px; min-height:0; background:linear-gradient(to right, var(--coral), var(--border)); }
    .how-row:last-child .how-line { display:none; }
    .founders-layout { grid-template-columns:1fr; max-width:440px; margin-left:auto; margin-right:auto; }
    .plat-grid { grid-template-columns:repeat(3,1fr); }
    .stats-bar { grid-template-columns:repeat(2,1fr); }
    .stat-item { border-right:1px solid rgba(255,255,255,.1); }
    .stat-item:nth-child(2) { border-right:none; }
    .form-row { flex-direction:column; gap:0; }
    .how-timeline {display: flex; flex-direction: column; gap: 30px;}
    .how-dot {top:-20px;}
    .how-line {display: none;}
    .how-head {margin-bottom: 50px;}
    .why-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .why-grid {
      gap: 20px;
    }
    .why-card {
        padding: 30px 25px;
        width: 100%;
    }
    .why-card-title {
        font-size: 18px;
    }
    .menu-toggle{
        display:block;
    }
    .nav-cta{
      display:none;
    }
    .nav-links{
      position:absolute;
      top:100%;
      left:0;
      width:100%;
      flex-direction:column;
      align-items:center;
      gap:25px;
      padding:0;
      max-height:0;
      overflow:hidden;
      opacity:0;
      transform:translateY(-10px);
      transition:all 0.4s ease;
      background: rgba(255, 255, 255);
      backdrop-filter: blur(14px);

    }
    header {
      background: #fff;
    }
    section {
        scroll-margin-top: 80px;
    }
    .nav-links a {
      font-size: 16px;
      color: #000;
    }

    .nav-links.active{
      max-height:300px;
      padding:25px 0;
      opacity:1;
      transform:translateY(0);
    }
    .game-thumb {
      width: 100%;
    }
    .game-row, .game-row:nth-child(even) {
        flex-direction: column;
    }
    .game-body {
      width: 100%;
    }
    .game-desc {
      max-width: 100%;
    }
    .game-row {
      gap:20px;
    }
    .games-content {
        padding-top: 0px;
    }
    footer {
      padding: 70px 20px 32px;
    }
    .whatsapp-float a {
      position: fixed;
      bottom: 30px;
      right: 20px;
      width: 40px;
      height: 40px;
    }



  }
  @media(max-width:480px) {
    .plat-grid { grid-template-columns:repeat(2,1fr); }
    .stats-bar { grid-template-columns:1fr 1fr; }
    .footer-grid { grid-template-columns:1fr; }
    .hero-visual { width:220px; height:220px; }
    .hero-visual-inner { width:140px; height:140px; }
    .fb-2 {bottom: -13px;left: -40px;}
    .fb-1 {top:0px;}
  }

