@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
 
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  background: #f3f3f3;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-text { font-weight: 700; color: #3c0e63; }
.logo { width: 36px; height: 36px; object-fit: contain; }

.nav { display: flex; gap: 22px; }
.nav-link {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: #6e1a9b; border-color: #6e1a9b; }

/* Mobile navigation */
.menu-btn { display: none; background: transparent; border: 0; padding: 8px; border-radius: 10px; }
.menu-bar { display: block; width: 24px; height: 2px; background: #3c0e63; margin: 5px 0; }
.nav-backdrop { position: fixed; inset: 0; background: #0006; backdrop-filter: blur(2px); z-index: 109; display: none; }
.nav.open { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; background: #fff; display: grid; padding: 90px 24px 24px; gap: 22px; box-shadow: none; z-index: 110; }
.nav.open .nav-link { font-size: 28px; border: 0; padding: 8px 0; }
.menu-btn[aria-expanded="true"] .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* Hero */
.hero { position: relative; overflow: hidden; background: radial-gradient(1200px 480px at 50% -10%, #fff 0%, #f4ecff 40%, #efe6fb 100%); }
.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  background-image: url('../images/linkedin.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; padding: 64px 0 30px; }
.hero-title {
  font-family: Caveat, cursive;
  font-size: clamp(28px, 5.5vw, 56px);
  line-height: 1.25;
  margin: 0;
  color: #6e1a9b;
  text-shadow: 0 1px 0 #ffffff;
  white-space: nowrap;
}
.gradient { background: linear-gradient(90deg, #6e1a9b 0%, #a73cf4 50%, #ff6ad5 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gold { color: #a77b50; text-shadow: 0 1px 0 #ffffff; }
.nowrap { white-space: nowrap; }
.hero-sub { margin: 12px 0 18px; color: #5a3b76; font-weight: 600; letter-spacing: .2px; }
.hero-ctas { display: inline-flex; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 12px; text-decoration: none; font-weight: 700; transition: transform .15s ease, box-shadow .15s ease; border: 1px solid #894dd0; overflow: visible; }
.btn-lg { padding: 14px 22px; font-size: 17px; }
.btn.primary { color: #fff; background: #7b2fd2; border-color: #7b2fd2; box-shadow: 0 6px 20px #7b2fd233; }
.btn.ghost { color: #7b2fd2; background: #ffffff; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px #7b2fd226; }
.btn-icon { width: 22px; height: 22px; object-fit: contain; filter: drop-shadow(0 1px 1px #00000011); }
.btn-icon.x3 { transform: scale(3); transform-origin: left center; position: relative; left: -30px; }
.hero-badges { display: flex; gap: 12px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.badge { background: #ffffffaa; border: 1px solid #eee; padding: 6px 10px; border-radius: 999px; font-size: 14px; color: #5a3b76; backdrop-filter: blur(6px); }

/* Marquee pills */
.pill-marquee { overflow: hidden; background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.marquee-track { display: flex; gap: 16px; padding: 12px 0; width: max-content; animation: marquee 30s linear infinite; }
.pill { background: #f4ecff; color: #6e1a9b; border: 1px solid #e8d9ff; padding: 6px 12px; border-radius: 999px; font-weight: 600; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* About */
.about { background: #f9f6ff; }
.about-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; padding: 42px 0; }
.about-has-sticker { position: relative; }
.about-has-sticker::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: url('../images/about/who-we-are.png') no-repeat center/contain;
  filter: drop-shadow(0 6px 14px #00000018);
  pointer-events: none;
}
.section-title { font-family: Caveat, cursive; color: #6e1a9b; font-size: 40px; margin: 0 0 18px; }
.about-content p { margin: 14px 0; font-size: 18px; color: #333; }
.about-content p + p { margin-top: 32px; }
.about-visual img { width: 100%; max-width: 520px; display: block; margin: 0 auto; }
.bullets { margin: 12px 0; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.bullets li { background: #faf7ff; border: 1px solid #efe1ff; color: #a77b50; border-radius: 12px; padding: 10px 12px; }
.bullets li strong { color: inherit; }
.bullets-compact li { display: flex; align-items: center; gap: 6px; }

/* Values */
.values { background: #f9f6ff; padding: 32px 0 46px; border-top: 1px solid #efe7ff; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card { background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 18px; text-align: center; box-shadow: 0 10px 30px #7b2fd20d; }
.value-card .icon { font-size: 28px; }
.values .actions { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[style*='--reveal-delay'] { transition-delay: var(--reveal-delay); }

/* Culture */
.culture { background: #f9f6ff; padding: 34px 0; }
.culture-inner { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; align-items: center; }
.culture-inner::after { content: ""; position: absolute; top: -56px; right: -30px; width: 180px; height: 180px; background: url('../images/culture/culture-sticker.png') no-repeat center/contain; filter: drop-shadow(0 6px 14px #00000018); pointer-events: none; }
.culture-visual { position: relative; min-height: 280px; }
.culture-img { position: absolute; width: 68%; max-width: 420px; border-radius: 14px; box-shadow: 0 12px 30px #00000017; transition: transform .4s ease, box-shadow .4s ease; }
.culture-img.a { top: -28px; left: -50px; width: 58%; transform: rotate(-4deg); z-index: 2; }
.culture-img.b { bottom: -6px; right: -6px; transform: rotate(3deg); z-index: 1; }
.culture-visual:hover .culture-img { box-shadow: 0 16px 40px #00000026; }
.culture-content p { margin: 12px 0; color: #333; }

/* Follow */
.follow { background: #f9f6ff; padding: 50px 0 40px; }
.follow-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; }
.socials { display: flex; gap: 22px; align-items: center; margin: 18px 0 14px; }
.social { width: 54px; height: 54px; display: inline-flex; border-radius: 12px; overflow: hidden; transition: transform .15s ease; background: #fff; }
.social:hover { transform: translateY(-2px) scale(1.03); }
.social img, .social svg { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; image-rendering: -webkit-optimize-contrast; }
.copyright { color: #444; font-size: 14px; margin-top: 8px; }
.follow-right img { width: 100%; max-width: 210px; display: block; margin-left: auto; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 24px; align-items: start; }
.contact-photo img { width: 100%; max-width: 360px; height: auto; border-radius: 8px; display: block; }
.contact-content p { margin: 12px 0; }
.contact-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.contact-item { background: #f7f7f7; border: 1px solid #e5e5e5; border-radius: 10px; padding: 16px 18px; }
.contact-item h3 { margin: 0 0 8px; font-style: italic; text-align: center; }
.contact-item p { text-align: center; }
.contact-title { text-align: center; margin-top: 0; }

/* Responsive */
@media (max-width: 960px) {
  .about-inner, .follow-inner, .contact-grid, .contact-cards, .contact-footer, .values-grid { grid-template-columns: 1fr; }
  .about-visual { order: 2; }
  .follow-right { order: 2; }
  .follow-right img { margin: 24px auto 0; }

  .menu-btn { display: inline-block; }
  .nav { display: none; }
  .nav.open ~ .nav-backdrop { display: block; }
  /* keep the close button visible on top-right when menu is open */
  .menu-btn { position: fixed; top: 12px; right: 12px; z-index: 120; background: #ffffffee; }
}

/* Career accordion */
.accordion { display: grid; gap: 28px; margin-top: 10px; }
.acc-item { background: #f7f7f7; border: 1px solid #e6e6e6; border-radius: 12px; overflow: hidden; }
.acc-header { width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 12px 16px; background: #fafafa; border: none; cursor: pointer; }
.acc-header img { width: 120px; height: 120px; object-fit: cover; border-radius: 8px; }
.acc-header span { font-family: Caveat, cursive; font-size: 30px; color: #6e1a9b; text-align: left; }
.acc-header .chev { font-family: inherit; font-size: 20px; color: #888; }
.acc-panel { display: none; padding: 12px 16px 18px; background: #fff; }
.acc-item.open .acc-panel { display: block; }
.acc-item.open .chev { transform: rotate(180deg); }

/* Games */
.game-card { background: #f7f7f7; border: 1px solid #e6e6e6; border-radius: 14px; padding: 18px; margin-top: 20px; }
.game-header { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
.game-icon { width: 120px; height: 120px; object-fit: cover; border-radius: 10px; }
.game-meta { display: flex; align-items: center; gap: 14px; justify-content: space-between; }
.game-title { font-family: Caveat, cursive; color: #6e1a9b; font-size: 34px; margin: 0; }
.store-btn img { height: 52px; width: auto; display: block; }
.game-media { --media-h: 300px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; margin-top: 14px; align-items: stretch; }
.yt-embed { height: var(--media-h); position: relative; background: #000; border-radius: 10px; overflow: hidden; }
.yt-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.yt-placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: #ddd; font-size: 14px; }
.shots { height: var(--media-h); display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.shots img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

@media (max-width: 960px) {
  .game-media { grid-template-columns: 1fr; --media-h: auto; }
  .yt-embed { height: auto; aspect-ratio: 16 / 9; }
  .shots { height: auto; grid-template-columns: 1fr 1fr 1fr; }
  .game-meta { flex-wrap: wrap; justify-content: flex-start; }
}


