/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050505;
  --bg-card: #0c0c0c;
  --gold: #D4AF37;
  --gold-light: #F5D78E;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --text: #f5f5f5;
  --text-muted: #888;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.phone-logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 2px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.btn-hire {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 10px 20px;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-hire:hover {
  background: var(--gold);
  color: #000;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(5, 5, 5, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-menu .btn-hire {
  margin-top: 12px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  background: #050505;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.18) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}

.phone-mockup {
  position: relative;
  z-index: 1;
}

.phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 40px;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.15),
    0 0 80px rgba(212, 175, 55, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.8);
  padding: 12px;
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 4px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-logo {
  text-align: center;
  padding: 24px;
}

.phone-logo svg {
  width: 70px;
  height: 50px;
  margin: 0 auto 20px;
}

.phone-logo h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.phone-logo h1 span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.phone-tagline {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 28px;
}

.section-label.small {
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.gold-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ========== PLAY ========== */
.play-section {
  background: #070707;
  border-top: 1px solid var(--border);
}

.play-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.play-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.play-grid.reverse {
  direction: rtl;
}
.play-grid.reverse > * {
  direction: ltr;
}

.play-desc {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  line-height: 1.7;
}

.play-meta {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.game-card-alt {
  background: linear-gradient(145deg, #1a140a 0%, #0e0a04 100%);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.game-placeholder {
  text-align: center;
  padding: 40px 24px;
  z-index: 1;
}

.game-icon {
  font-size: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.3));
}

.game-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #FFE082, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.game-sub {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.game-stats {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.game-stats span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
}


.play-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
}

.play-tech {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  margin-top: 28px;
  margin-right: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  border-radius: 999px;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.preview-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.preview-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.preview-overlay span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.preview-overlay p {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ========== STUDIO ========== */
.studio-section {
  background: #050505;
}

.studio-content {
  max-width: 720px;
  margin-bottom: 64px;
}

.studio-desc {
  margin-top: 24px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.studio-sub {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.tech-stack {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tags span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.tech-tags span:hover {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

/* ========== FOUNDER ========== */
.founder-section {
  background: #070707;
  border-top: 1px solid var(--border);
}

.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}

.founder-photo {
  position: relative;
}

.photo-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), transparent);
  border-radius: 32px;
  filter: blur(20px);
  z-index: 0;
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 0 40px rgba(212, 175, 55, 0.12);
}

.founder-badge {
  position: absolute;
  bottom: -14px;
  right: -10px;
  z-index: 2;
  background: var(--gold);
  color: #000;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0 16px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.founder-name {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 700;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 6px;
}

.founder-bio {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
}

.founder-location {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== CONTACT ========== */
.contact-section {
  background: #050505;
  text-align: center;
  padding: 120px 0;
}

.contact-content {
  max-width: 640px;
  margin: 0 auto;
}

.contact-desc {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 36px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 18px 36px;
  border-radius: 999px;
  transition: all 0.25s;
}

.btn-whatsapp:hover {
  background: #2ee475;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.contact-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ========== FOOTER ========== */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .btn-hire {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .play-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .play-grid.reverse {
    direction: ltr;
  }


  .services-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .founder-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .founder-badge {
    right: 10px;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .btn-primary,
  .btn-outline {
    display: block;
    text-align: center;
    margin-right: 0;
  }

  .btn-outline {
    margin-top: 12px;
  }
}

/* ========== ANIMATED GAME PREVIEWS ========== */
.anim-card {
  overflow: hidden;
  min-height: 420px;
  background: #0a0a0a;
  position: relative;
}

.anim-stage {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

/* --- River scene (Tupai Berani) --- */
.river-stage {
  background: linear-gradient(180deg, #1a3a1a 0%, #0e2a1e 40%, #1e4d8c 70%, #163a6b 100%);
}

.river-bg::before {
  content: '';
  position: absolute;
  inset: 55% 0 0 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 30px,
    rgba(255,255,255,0.06) 30px 32px
  );
  animation: waterFlow 3s linear infinite;
}

@keyframes waterFlow {
  from { background-position: 0 0; }
  to { background-position: 60px 0; }
}

.log {
  position: absolute;
  height: 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, #c18a4a, #8b5a2b);
  border: 1px solid #5a3a1a;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.log1 { width: 90px; bottom: 28%; left: 8%; animation: logFloat 4s ease-in-out infinite; }
.log2 { width: 110px; bottom: 22%; left: 38%; animation: logFloat 5s ease-in-out infinite 0.5s; }
.log3 { width: 80px; bottom: 30%; right: 10%; animation: logFloat 4.5s ease-in-out infinite 1s; }

@keyframes logFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.croc {
  position: absolute;
  bottom: 18%;
  right: 22%;
  width: 48px;
  height: 18px;
  background: #2d5a27;
  border-radius: 20px 20px 8px 8px;
  animation: crocBob 2.5s ease-in-out infinite;
}
.croc::before {
  content: '';
  position: absolute;
  top: -6px; left: 8px;
  width: 10px; height: 10px;
  background: #1a3a18;
  border-radius: 50%;
  box-shadow: 22px 0 #1a3a18;
}

@keyframes crocBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.river-squirrel {
  position: absolute;
  bottom: 38%;
  left: 42%;
  animation: squirrelJump 2.2s ease-in-out infinite;
}

@keyframes squirrelJump {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-28px) scale(1.05); }
  50% { transform: translateY(-10px) scale(1); }
  70% { transform: translateY(-22px) scale(1.03); }
}

/* --- Warehouse scene (Gudang Tupai) --- */
.warehouse-stage {
  background: linear-gradient(180deg, #2a1f12 0%, #1a140a 50%, #0e0a04 100%);
}

.warehouse-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.12), transparent 60%);
}

.acorn {
  position: absolute;
  width: 28px;
  height: 34px;
  border-radius: 50% 50% 45% 45%;
  animation: acornBounce 1.8s ease-in-out infinite;
}
.acorn::before {
  content: '';
  position: absolute;
  top: -6px; left: 4px; right: 4px;
  height: 12px;
  border-radius: 8px 8px 4px 4px;
  background: #5a3a1a;
}
.a1 { background: #e74c3c; left: 18%; top: 30%; animation-delay: 0s; }
.a2 { background: #3498db; left: 48%; top: 22%; animation-delay: 0.3s; }
.a3 { background: #2ecc71; right: 18%; top: 28%; animation-delay: 0.6s; }

@keyframes acornBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

.sack {
  position: absolute;
  bottom: 18%;
  width: 56px;
  height: 70px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, #e8d5a3, #c9ad7a);
  border: 2px solid #8b6a4a;
  box-shadow: inset 0 -10px 16px rgba(0,0,0,0.15);
}
.s1 { left: 22%; }
.s2 { right: 22%; }
.sack::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 6px;
  background: #8b6a4a;
  border-radius: 3px;
}

.warehouse-squirrel {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  animation: squirrelDance 1.6s ease-in-out infinite;
}

@keyframes squirrelDance {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  25% { transform: translateX(-50%) translateY(-10px) rotate(-4deg); }
  75% { transform: translateX(-50%) translateY(-4px) rotate(4deg); }
}

.sq-hat {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  animation: hatBob 1.6s ease-in-out infinite;
}

@keyframes hatBob {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  50% { transform: translateX(-50%) rotate(8deg); }
}

/* --- Shared cute squirrel character --- */
.squirrel-char {
  width: 72px;
  height: 80px;
  position: relative;
  z-index: 5;
}

.sq-tail {
  position: absolute;
  right: -8px;
  bottom: 10px;
  width: 28px;
  height: 48px;
  background: linear-gradient(180deg, #c18a4a, #8b5a2b);
  border-radius: 30px 30px 12px 12px;
  border: 1px solid rgba(0,0,0,0.15);
  transform-origin: bottom center;
  animation: tailWag 1.4s ease-in-out infinite;
}

.sq-tail.wag {
  animation-duration: 0.6s;
}

@keyframes tailWag {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(12deg); }
}

.sq-body {
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 40px;
  height: 42px;
  background: linear-gradient(180deg, #e9b07a, #b67a3b);
  border-radius: 20px 20px 14px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sq-head {
  position: absolute;
  left: 12px;
  top: 2px;
  width: 44px;
  height: 42px;
  background: linear-gradient(180deg, #ffd9a3, #e9a86a);
  border-radius: 22px 22px 16px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.sq-ear {
  position: absolute;
  top: -8px;
  width: 14px;
  height: 16px;
  background: #8b5a2b;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
}
.sq-ear.left { left: -2px; }
.sq-ear.right { right: -2px; }

.sq-eye {
  position: absolute;
  top: 14px;
  width: 9px;
  height: 11px;
  background: #1a1207;
  border-radius: 50%;
}
.sq-eye.left { left: 10px; }
.sq-eye.right { right: 10px; }
.sq-eye::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 3px; height: 3px;
  background: #fff;
  border-radius: 50%;
}

.sq-eye.blink {
  animation: blinkEye 3.5s infinite;
}

@keyframes blinkEye {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

.sq-cheek {
  position: absolute;
  top: 24px;
  width: 8px;
  height: 5px;
  background: rgba(255, 143, 163, 0.55);
  border-radius: 50%;
}
.sq-cheek.left { left: 4px; }
.sq-cheek.right { right: 4px; }

.sq-nose {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 4px;
  background: #2b1b0e;
  border-radius: 50%;
}

.sq-mouth {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #2b1b0e;
  border-radius: 0 0 8px 8px;
}

.sq-mouth.smile {
  width: 12px;
  border-bottom-width: 2.5px;
}

.anim-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  z-index: 10;
}

.anim-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.anim-label p {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ========== STUDIO LIGHT (cream style) ========== */
.studio-light {
  background: #f7f1e6;
  color: #1a1207;
  border-top: none;
}

.studio-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.light-label {
  color: #9c7c2e;
}

.studio-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1a1207;
  margin-bottom: 24px;
}

.light-text {
  color: #3a2e1f !important;
}

.light-text.muted {
  color: #6b5a45 !important;
  margin-top: 16px;
}

.misi-box {
  margin-top: 36px;
  background: #111;
  color: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.misi-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #D4AF37;
  color: #111;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.misi-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #D4AF37;
  margin-bottom: 6px;
}

.misi-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.misi-sub {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
}

.studio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-card {
  border-radius: 18px;
  padding: 24px 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.svc-card.dark {
  background: #111;
  color: #fff;
}

.svc-card.light {
  background: #fff;
  color: #1a1207;
  border: 1px solid rgba(0,0,0,0.06);
}

.svc-card.gold {
  background: #D4AF37;
  color: #1a1207;
}

.svc-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.svc-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.75;
}

.svc-card.dark p { opacity: 0.65; }
.svc-card.gold p { opacity: 0.8; }

/* Founder tags */
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.founder-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 8px 14px;
  border-radius: 999px;
}

/* QR Codes */
.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 640px;
  margin: 56px auto 0;
}

.qr-card {
  background: #0c0c0c;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.qr-card:hover {
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-3px);
}

.qr-card img {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.qr-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 4px;
}

.qr-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.qr-meta a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.qr-meta a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .studio-layout {
    grid-template-columns: 1fr;
  }
  .studio-cards {
    grid-template-columns: 1fr 1fr;
  }
  .qr-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .studio-cards {
    grid-template-columns: 1fr;
  }
}

/* ========== CONTACT PANEL (premium layout) ========== */
.contact-panel {
  max-width: 720px;
  margin: 0 auto;
  background: #0c0c0c;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.08);
}

.contact-panel-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 28px rgba(212,175,55,0.35);
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.contact-loc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.contact-lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 36px;
}

.contact-qr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 440px;
  margin: 0 auto 36px;
}

.contact-qr {
  background: #080808;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s, transform 0.25s;
}

.contact-qr:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-3px);
}

.contact-qr img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
}

.qr-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #fff;
  margin-top: 6px;
}

.qr-title.gold {
  color: var(--gold);
}

.qr-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-actions .btn-whatsapp {
  margin-top: 0;
  min-width: 180px;
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 999px;
  background: #25D366;
  color: #041a0c;
  border: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.contact-actions .btn-whatsapp:hover {
  background: #2ee475;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: transparent;
  transition: all 0.25s ease;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: #D4AF37;
  color: #F5D78E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.contact-email {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 560px) {
  .contact-panel {
    padding: 36px 20px;
  }
  .contact-qr-row {
    grid-template-columns: 1fr;
    max-width: 220px;
  }
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-actions .btn-whatsapp,
  .btn-outline-gold {
    min-width: 0;
    width: 100%;
  }
}

/* ========== TECH STACK BAR (studio light) ========== */
.tech-stack-bar {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.tech-stack-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #9a8a72;
  line-height: 1.5;
  text-transform: uppercase;
  min-width: 110px;
  flex-shrink: 0;
  padding-top: 6px;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.tech-pills span {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tech-pills span:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ========== LIVE GAME IFRAME PREVIEWS ========== */
.live-game-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  height: 480px;
  background: #080808;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.game-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none; /* preview only — click goes to overlay link */
  transform: scale(0.92);
  transform-origin: top center;
}

.live-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(transparent 45%, rgba(0,0,0,0.75) 100%);
  text-decoration: none;
  transition: background 0.3s;
}

.live-overlay:hover {
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.85) 100%);
}

.live-overlay .anim-badge {
  margin-bottom: 8px;
}

.live-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.live-overlay:hover .live-cta {
  color: var(--gold);
}

@media (max-width: 768px) {
  .live-game-card {
    min-height: 400px;
    height: 400px;
  }
  .tech-stack-bar {
    flex-direction: column;
    gap: 16px;
  }
}
