/* =========================================================
   KONG SITE — MAIN STYLESHEET
   Ogni blocco è commentato per trovare subito le sezioni.
========================================================= */

/* =====================
   1) VARIABLES / RESET
===================== */
:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --ink: #f4f0e8;
  --muted: #b8b1a6;
  --gold: #ffc21b;
  --gold2: #bf8c2d;
  --line: #2a2a2a;
  --green: #9dff1a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Frijole, system-ui, sans-serif;
  overflow-x: hidden;
}

/* Blocca lo scroll mentre c'è il preloader */
body.preloading {
  overflow: hidden;
}

/* =====================
   2) PRELOADER INTRO
   Schermo nero + video KONG.
   Durata/fade gestiti in script.js.
===================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-video {
  /*
     Video intro a schermo intero.
     - width/height 100vw/100vh = occupa tutta la finestra.
     - object-fit: cover = riempie tutto lo schermo senza restare piccolo al centro.
     - Se vuoi vedere tutto il video senza tagli, cambia cover in contain.
  */
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  object-position: center center;
  display: block;
}

/* =====================
   3) GLOBAL VISUAL EFFECTS
   Noise + luce che segue il mouse.
===================== */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 4px 4px;
  z-index: 5;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 194, 27, .14), transparent 65%);
  pointer-events: none;
  translate: -50% -50%;
  z-index: 4;
}

/* =====================
   4) HEADER / NAVBAR
===================== */
.topbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 5, .78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #171717;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.brand span,
h1,
h2 {
  font-family: Frijole, sans-serif;
  letter-spacing: .02em;
}

.brand span { font-size: 42px; }

nav { display: flex; gap: 34px; }

nav a,
.links a {
  color: var(--ink);
  text-decoration: none;
  font-family: Frijole, sans-serif;
  font-size: 20px;
  letter-spacing: .05em;
}

nav a:hover,
.links a:hover {
  color: var(--gold);
  text-shadow: 0 0 18px var(--gold);
}

/* MOBILE HAMBURGER BUTTON
   Nascosto su desktop, visibile su smartphone. */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 194, 27, .55);
  background: rgba(10, 10, 10, .92);
  color: var(--gold);
  font-family: Frijole, system-ui, sans-serif;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255, 194, 27, .18);
}

.mobile-buy-link { display: none; }

/* =====================
   5) BUTTONS / CTA
===================== */
.buy,
.outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  color: #0b0904;
  background: var(--gold);
  border: 2px solid var(--gold2);
  box-shadow: 0 0 24px rgba(255, 194, 27, .48), inset 0 0 10px rgba(255, 255, 255, .3);
  font-family: Frijole, sans-serif;
  letter-spacing: .03em;
}

.buy.small {
  padding: 14px 24px;
  background: #0b0b0b;
  color: var(--gold);
}

.outline {
  background: #090909;
  color: var(--ink);
  border-color: #f0f0f0;
  box-shadow: none;
}

/* =====================
   6) HERO SECTION
===================== */
.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 70px 6vw 40px;
  position: relative;
  background: radial-gradient(circle at 72% 35%, rgba(255, 194, 27, .12), transparent 32%), linear-gradient(#050505, #080808);
}

.hero-copy { z-index: 2; }

.hero h1 {
  font-size: clamp(120px, 15vw, 240px);
  line-height: .8;
  margin: 0;
  text-shadow: 0 8px 0 #111, 0 0 20px rgba(255, 255, 255, .15);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, .14));
}

.tagline {
  font-family: Frijole, sans-serif;
  color: var(--gold);
  font-size: clamp(36px, 4vw, 70px);
  margin: 18px 0;
  transform: rotate(-3deg);
}

.lines {
  font-size: 25px;
  line-height: 1.45;
  text-transform: uppercase;
  color: #eee;
}

.lines strong { color: var(--gold); }

.actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-art {
  z-index: 1;
  text-align: center;
}

.hero-art img {
  width: min(640px, 48vw);
  filter: drop-shadow(0 0 18px rgba(255, 194, 27, .25));
}

/* Decorative hero stickers */
.sticker {
  position: absolute;
  padding: 18px 22px;
  border: 3px solid #eee;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-family: Frijole, sans-serif;
  font-size: 27px;
  text-align: center;
  box-shadow: 0 0 0 4px #111, 0 0 22px rgba(255, 194, 27, .22);
  rotate: -8deg;
  z-index: 3;
}

.sticker b,
.sticker em { color: var(--gold); }

.s1 { left: -1vw; top: 260px; rotate: -40deg; }
.s2 { right: 5vw; top: 100px; rotate: 30deg; }
.s3 { right: 3vw; bottom: 50px; rotate: -6deg; }

/* =====================
   7) TICKER
===================== */
.ticker {
  overflow: hidden;
  border-block: 1px solid #331b1b;
  background: #260207;
  color: var(--gold);
  font-family: Frijole, sans-serif;
  font-size: 20px;
  white-space: nowrap;
}

.ticker div {
  display: inline-block;
  padding: 8px 0;
  animation: marquee 18s linear infinite;
}

.ticker span { margin: 0 10px; }

/* KONG TICKER LOGO
   Modifica qui dimensione e spaziatura del logo testa KONG nelle barre scorrevoli.
   Il file usato è: assets/kong-head-transparent.png
*/
.ticker-kong-head {
  height: 34px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  filter: drop-shadow(0 0 5px rgba(255, 194, 27, 0.35));
}


/* =====================
   8) STATS SECTION
===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #090909;
}

.stats div {
  padding: 34px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats small {
  display: block;
  color: #ddd;
  font-weight: 900;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-family: Frijole, sans-serif;
  font-size: 48px;
  margin: 6px 0;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

/* =====================
   9) ABOUT + COMMUNITY LAYOUT
===================== */
.about,
.army {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
  padding: 90px 8vw;
  border-bottom: 1px solid var(--line);
}

.about h2,
.why h2,
.army h2,
.memes h2 {
  font-size: 70px;
  margin: 0 0 20px;
}

.about em,
.why em,
.army em {
  color: var(--gold);
  font-style: normal;
}

.about p,
.army p,
.memes p {
  font-size: 22px;
  line-height: 1.55;
  color: #eee;
}

.about h3 {
  font-family: Frijole, sans-serif;
  font-size: 44px;
  color: var(--ink);
}

.about h3 em {
  color: var(--gold);
  font-style: normal;
}

.polaroid {
  background: #d8c7aa;
  color: #111;
  padding: 16px 16px 22px;
  rotate: -3deg;
  box-shadow: 0 15px 40px #000;
}

.polaroid img {
  width: 100%;
  display: block;
}

.polaroid span {
  font-family: Frijole, sans-serif;
  font-size: 28px;
  display: block;
  text-align: center;
  margin-top: 12px;
}

/* =====================
   10) WHY KONG CARDS
===================== */
.why,
.memes {
  padding: 80px 5vw;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.cards {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 20px 0;
}

.card {
  min-width: 220px;
  height: 280px;
  background: linear-gradient(145deg, #171717, #050505);
  border: 2px solid #4a4035;
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: .25s;
}

.card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 0 30px rgba(255, 194, 27, .3);
  border-color: var(--gold);
}

.card h3 {
  font-family: Frijole, sans-serif;
  font-size: 32px;
  margin: 0;
}

.card p {
  font-weight: 900;
  color: var(--gold);
}

/* =====================
   11) COMMUNITY / SOCIAL WALL
===================== */
.army { grid-template-columns: .45fr 1fr; }

.social-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.social-wall article {
  min-height: 190px;
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  font-size: 24px;
  box-shadow: 0 0 20px #000;
}

.social-wall b { color: var(--gold); }

/* =====================
   12) MEME WALL
===================== */
.meme-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.meme-grid div {
  height: 140px;
  background: #0d0d0d;
  border: 2px dashed #333;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 54px;
  transition: .2s;
}

.meme-grid div:hover {
  scale: 1.08;
  box-shadow: 0 0 28px rgba(255, 194, 27, .35);
}



/* =====================
   HERO + FOOTER SOCIAL PNG ICONS
   Qui gestisci le icone social personalizzate.
   - assets/social/telegram.png
   - assets/social/dexscreener.png
   - assets/social/x.png
   - assets/social/instagram.png
   - assets/social/tiktok.png
===================== */
.social-icon-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.social-icon {
  width: 92px;
  height: 92px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  transition: transform .22s ease, filter .22s ease;
  filter: drop-shadow(0 0 12px rgba(255, 194, 27, .22));
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-icon:hover {
  transform: translateY(-6px) scale(1.10) rotate(-2deg);
  filter: drop-shadow(0 0 24px rgba(255, 194, 27, .85));
}

.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  transition: transform .22s ease, filter .22s ease;
  filter: drop-shadow(0 0 8px rgba(255, 194, 27, .18));
}

.footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-social-icon:hover {
  transform: translateY(-4px) scale(1.12);
  filter: drop-shadow(0 0 18px rgba(255, 194, 27, .75));
}

/* =====================
   13) FOOTER
===================== */
footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 45px 6vw;
  background: #050505;
}

.links {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.ca {
  color: var(--gold);
  font-weight: 900;
}

.ca button {
  display: block;
  margin-top: 10px;
  background: #090909;
  color: #eee;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 16px 24px;
}

.foot img { width: 50px; height: 50px; }
.foot span { font-size: 38px; }

/* =====================
   14) ANIMATIONS
===================== */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(1.2deg); }
  75% { transform: rotate(-1.2deg); }
}

.breathe { animation: breathe 4s ease-in-out infinite; }
.float { animation: float 3.8s ease-in-out infinite; }
.float.alt { animation-duration: 4.6s; }
.wobble { animation: wobble 1.2s ease-in-out infinite; }

.glow:hover {
  filter: brightness(1.15);
  transform: scale(1.06) rotate(-1deg);
}

.glow-soft:hover { box-shadow: 0 0 24px rgba(255, 255, 255, .22); }

/* Fade-in on scroll: JS aggiunge .show */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: .7s;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* =====================
   15) RESPONSIVE TABLET / MOBILE
===================== */
@media (max-width: 900px) {
  nav { display: none; }
  .topbar { height: 74px; }
  .brand span { font-size: 34px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 50px;
    text-align: center;
  }

  .hero-art img { width: min(520px, 90vw); }
  .s1, .s2, .s3 { display: none; }
  .actions { justify-content: center; }
  .social-icon-bar { justify-content: center; gap: 12px; }
  .social-icon { width: 72px; height: 72px; }
  .footer-social-icon { width: 52px; height: 52px; }


  .stats,
  .about,
  .army,
  footer { grid-template-columns: 1fr; }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .social-wall,
  .meme-grid { grid-template-columns: 1fr 1fr; }

  .about h2,
  .why h2,
  .army h2,
  .memes h2 { font-size: 54px; }

  .hero h1 { font-size: 120px; }
  .tagline { font-size: 40px; }
}

@media (max-width: 520px) {
  .buy,
  .outline { width: 100%; }
  .social-wall,
  .meme-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 92px; }
  .lines { font-size: 19px; }
  .brand img { width: 44px; height: 44px; }
  .buy.small { display: none; }
}


/* =========================================================
   KONG FONT OVERRIDE - MODIFICA FONT SITO
   Qui forzo il font nuovo su tutte le sezioni principali.
   Titoli/bottoni/menu: Anton. Testo normale: Inter.
========================================================= */
body, p, li, span, a {
  font-family: 'Frijole', system-ui, sans-serif;
}

h1, h2, h3,
.brand span,
.tagline,
.sticker,
.buy, .outline,
nav a, .links a,
.card h3, .phase h3,
.section-title, .hero-title,
.roadmap-title, .token-title {
  font-family: 'Frijole', Impact, sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-weight: 400;
}

/* Testi lunghi più leggibili */
.lines, .card p, .phase p, .phase li, .about p, .tokenomics p {
  font-family: 'Frijole', system-ui, sans-serif !important;
}


/* =========================================================
   16) KONG MEMES COLLAGE / WHY KONG
   Sezione stile BULL: immagini grandi, sovrapposte, ruotate.
   Per modificare posizione/dimensione, cambia le classi .meme-photo-1 ecc.
========================================================= */
.kong-memes-section {
  position: relative;
  padding: 86px 4vw 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 194, 27, .10), transparent 30%),
    linear-gradient(180deg, #060606, #0b0b0b 45%, #050505);
}

.kong-memes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,.08) 50%, transparent 52% 100%),
    radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 100% 100%, 14px 14px;
}

.section-kicker {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
  text-shadow: 0 0 14px rgba(255, 194, 27, .45);
}

.kong-memes-section h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.kong-collage {
  position: relative;
  z-index: 2;
  min-height: 660px;
  max-width: 1280px;
  margin: 0 auto;
}

.meme-photo {
  position: absolute;
  margin: 0;
  padding: 9px;
  background: #eee7d8;
  border: 2px solid rgba(255,255,255,.78);
  box-shadow: 0 18px 35px rgba(0,0,0,.72);
  transition: transform .22s ease, z-index .22s ease, box-shadow .22s ease;
}

.meme-photo::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 28px;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: rgba(180, 170, 150, .82);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.meme-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #111;
}

.meme-photo:hover {
  z-index: 20;
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 24px 55px rgba(0,0,0,.82), 0 0 28px rgba(255,194,27,.28);
}

/* Posizioni desktop: effetto collage casuale come BULL */
.meme-photo-1 { width: 300px; height: 390px; left: 0; top: 70px; transform: rotate(-7deg); z-index: 4; }
.meme-photo-2 { width: 310px; height: 365px; left: 230px; top: 38px; transform: rotate(4deg); z-index: 5; }
.meme-photo-3 { width: 370px; height: 320px; left: 470px; top: 10px; transform: rotate(-2deg); z-index: 6; }
.meme-photo-4 { width: 335px; height: 285px; right: 235px; top: 45px; transform: rotate(5deg); z-index: 5; }
.meme-photo-5 { width: 360px; height: 320px; right: 0; top: 92px; transform: rotate(-5deg); z-index: 4; }
.meme-photo-6 { width: 310px; height: 345px; left: 245px; top: 320px; transform: rotate(-4deg); z-index: 8; }
.meme-photo-7 { width: 450px; height: 330px; left: 535px; top: 310px; transform: rotate(3deg); z-index: 7; }



/* Tablet */
@media (max-width: 1100px) {
  .kong-collage {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .meme-photo {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 310px !important;
    transform: rotate(0deg) !important;
  }

  .kong-collage::before,
  .kong-collage::after { display: none; }
}

/* Mobile */
@media (max-width: 620px) {
  .kong-memes-section { padding: 64px 5vw 74px; }
  .kong-collage { grid-template-columns: 1fr; }
  .meme-photo { height: 280px !important; }
}

.copy-btn{margin-left:10px;padding:6px 10px;background:#ffc21b;border:none;border-radius:6px;cursor:pointer}
/* MOBILE RESPONSIVE SETTINGS */
@media (max-width:768px){
 .topbar{padding:10px 12px;height:auto;flex-wrap:wrap}
 nav{gap:12px;flex-wrap:wrap;justify-content:center}
 nav a{font-size:14px}
 .hero{grid-template-columns:1fr !important;padding:30px 16px}
 .brand span{font-size:28px}
}


/* =========================================================
   17) MOBILE DESKTOP-LIKE FIX
   Questa sezione corregge la visualizzazione da smartphone:
   - menu hamburger con ROADMAP visibile
   - hero meno “a colonna” e più simile al desktop
   - collage WHY KONG in carosello orizzontale, non una colonna infinita
   - stats in 2 colonne
   - footer/CA più compatto
========================================================= */
@media (max-width: 900px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  .topbar {
    height: 76px;
    padding: 10px 18px;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    font-size: clamp(28px, 9vw, 42px);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .topbar .buy.small {
    display: none;
  }

  #mainNav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    z-index: 50;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(5, 5, 5, .96);
    border: 1px solid rgba(255, 194, 27, .35);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,.75), 0 0 24px rgba(255,194,27,.16);
    backdrop-filter: blur(14px);
  }

  .topbar.nav-open #mainNav {
    display: flex;
  }

  #mainNav a {
    display: block;
    width: 100%;
    padding: 16px 14px;
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  #mainNav a:last-child {
    border-bottom: 0;
  }

  .mobile-buy-link {
    display: block;
    color: var(--gold) !important;
  }

  /* HERO: resta più simile al desktop, senza diventare una colonna lunghissima */
  .hero {
    min-height: calc(100vh - 76px);
    grid-template-columns: minmax(0, 1fr) minmax(118px, 42vw) !important;
    gap: 8px;
    text-align: left;
    padding: 42px 18px 28px;
    align-items: center;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(68px, 22vw, 118px) !important;
    line-height: .82;
  }

  .tagline {
    font-size: clamp(22px, 7vw, 38px) !important;
    margin: 12px 0;
  }

  .lines {
    font-size: clamp(13px, 4.2vw, 18px);
    line-height: 1.45;
  }

  .hero-art {
    align-self: end;
    overflow: visible;
  }

  .hero-art img {
    width: min(42vw, 230px) !important;
    max-width: none;
    transform: translateX(4vw) scale(1.18);
    transform-origin: bottom right;
  }

  /* Non nascondiamo gli sticker su mobile: li rendiamo piccoli */
  .sticker {
    display: block !important;
    font-size: 12px;
    padding: 8px 10px;
    border-width: 2px;
    opacity: .86;
  }

  .s1 { left: 6px; top: 92px; rotate: -14deg; }
  .s2 { right: 8px; top: 92px; rotate: 10deg; }
  .s3 { right: 10px; bottom: 18px; rotate: -4deg; }

  .social-icon-bar {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 20px;
  }

  .social-icon {
    width: clamp(48px, 14vw, 64px);
    height: clamp(48px, 14vw, 64px);
  }

  .ticker {
    font-size: 17px;
  }

  .ticker-kong-head {
    height: 28px;
    margin: 0 7px;
  }

  /* STATS: 2 colonne, non 1 colonna infinita */
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .stats div {
    padding: 26px 12px;
    border-right: 1px solid var(--line);
  }

  .stats div:nth-child(2n) {
    border-right: 0;
  }

  .stats strong {
    font-size: clamp(34px, 12vw, 50px);
  }

  /* ABOUT più compatto */
  .about {
    grid-template-columns: .72fr 1.28fr !important;
    gap: 18px;
    padding: 48px 18px;
    align-items: center;
  }

  .polaroid {
    padding: 10px 10px 16px;
  }

  .polaroid span {
    font-size: 14px;
  }

  .about h2,
  .why h2,
  .army h2,
  .memes h2 {
    font-size: clamp(42px, 13vw, 68px) !important;
  }

  .about p {
    font-size: clamp(14px, 4.2vw, 19px);
  }

  .about h3 {
    font-size: clamp(28px, 9vw, 44px);
  }

  /* WHY KONG COLLAGE: su mobile diventa carosello orizzontale, non colonna */
  .kong-memes-section {
    padding: 62px 0 76px !important;
  }

  .section-kicker {
    padding: 0 18px;
    font-size: clamp(16px, 5vw, 24px);
  }

  .kong-memes-section h2 {
    padding: 0 18px;
  }

  .kong-collage {
    height: auto !important;
    width: 100%;
    display: flex !important;
    align-items: stretch;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 26px 18px 34px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .kong-collage::-webkit-scrollbar {
    height: 8px;
  }

  .kong-collage::-webkit-scrollbar-thumb {
    background: rgba(255,194,27,.45);
    border-radius: 999px;
  }

  .meme-photo {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    flex: 0 0 min(78vw, 360px);
    width: min(78vw, 360px) !important;
    height: min(94vw, 430px) !important;
    scroll-snap-align: center;
    margin: 0 !important;
  }

  .meme-photo-1 { transform: rotate(-3deg) !important; }
  .meme-photo-2 { transform: rotate(2deg) !important; }
  .meme-photo-3 { transform: rotate(-2deg) !important; }
  .meme-photo-4 { transform: rotate(2deg) !important; }
  .meme-photo-5 { transform: rotate(-2deg) !important; }
  .meme-photo-6 { transform: rotate(2deg) !important; }
  .meme-photo-7 { transform: rotate(-2deg) !important; }

  .kong-collage::before,
  .kong-collage::after {
    display: none !important;
  }

  footer {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 36px 18px 52px;
  }

  .footer-social-icons {
    gap: 8px;
  }

  .footer-social-icon {
    width: clamp(46px, 13vw, 58px);
    height: clamp(46px, 13vw, 58px);
  }

  .ca {
    display: grid;
    gap: 12px;
    justify-items: center;
  }

  .ca-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .ca button {
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .topbar {
    padding: 10px 12px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(100px, 38vw) !important;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-art img {
    width: 42vw !important;
    transform: translateX(8vw) scale(1.26);
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .about {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .polaroid {
    max-width: 260px;
    margin: 0 auto;
  }
}
