:root{
  --bg:#07090d;
  --bg-soft:#0c1017;
  --card:#10151f;
  --line:rgba(255,255,255,.10);
  --text:#f5f7fb;
  --muted:#9aa4b2;
  --accent:#7c5cff;
  --accent2:#00d4ff;
  --lime:#b6ff5b;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 10% 10%, rgba(124,92,255,.09), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(0,212,255,.07), transparent 24%),
    var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button,a{ -webkit-tap-highlight-color:transparent }

.bg-glow{
  position:fixed;
  width:420px;
  height:420px;
  border-radius:50%;
  filter:blur(120px);
  opacity:.10;
  pointer-events:none;
  z-index:-1;
}
.bg-glow-1{background:var(--accent);top:18%;left:-220px}
.bg-glow-2{background:var(--accent2);top:58%;right:-240px}

.site-header{
  width:min(1180px,calc(100% - 40px));
  height:78px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  position:relative;
  z-index:20;
}
.brand{
  display:flex;
  gap:10px;
  align-items:center;
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;
  font-size:19px;
}
.brand-mark{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--accent),#4c2cff);
  border-radius:9px;
  box-shadow:0 0 30px rgba(124,92,255,.28);
}
.nav{display:flex;gap:30px;color:var(--muted);font-size:14px}
.nav a:hover{color:white}
.nav-cta{
  border:1px solid var(--line);
  padding:11px 16px;
  border-radius:12px;
  font-size:13px;
  font-weight:600;
  transition:.25s;
}
.nav-cta:hover{background:#fff;color:#000}

.section{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}

.hero{
  min-height:700px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:70px;
  padding:90px 0 70px;
}
.eyebrow{
  color:#b8c1cd;
  font-size:12px;
  letter-spacing:.18em;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:22px;
}
.eyebrow span{
  width:26px;
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
}
.hero h1,.section-heading h2,.cta-section h2{
  font-family:"Space Grotesk",sans-serif;
  margin:0;
  letter-spacing:-.045em;
}
.hero h1{
  font-size:clamp(56px,7vw,92px);
  line-height:.94;
  max-width:800px;
}
.hero h1 span{
  background:linear-gradient(90deg,#fff 0%,#8bdfff 45%,#9d84ff 100%);
  -webkit-background-clip:text;
  color:transparent;
}
.hero-text{
  max-width:600px;
  color:var(--muted);
  line-height:1.8;
  font-size:17px;
  margin:30px 0 34px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-height:52px;
  padding:0 20px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  transition:.25s ease;
}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),#5a38ff);
  box-shadow:0 15px 40px rgba(124,92,255,.24);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 48px rgba(124,92,255,.34)}
.btn-ghost{border:1px solid var(--line);color:#dce3ec}
.btn-ghost:hover{background:rgba(255,255,255,.06)}

.hero-visual{
  position:relative;
  height:540px;
  display:grid;
  place-items:center;
  perspective:1100px;
  isolation:isolate;
}
.hero-portal-wrap{
  position:relative;
  width:min(680px,115%);
  display:grid;
  place-items:center;
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform .18s ease-out;
  cursor:default;
}
.hero-portal-image{
  position:relative;
  z-index:2;
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 30px 40px rgba(0,0,0,.42));
  transform:translateZ(34px);
  will-change:transform,filter;
  transition:filter .25s ease,transform .25s ease;
  pointer-events:none;
  user-select:none;
}
.hero-portal-glow{
  position:absolute;
  z-index:1;
  width:62%;
  height:62%;
  left:23%;
  top:18%;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,212,255,.26) 0%,rgba(124,92,255,.13) 42%,transparent 72%);
  filter:blur(38px);
  transform:translateZ(0) scale(.92);
  transition:transform .25s ease,opacity .25s ease;
  pointer-events:none;
}
.hero-portal-wrap:hover .hero-portal-image{
  filter:drop-shadow(0 38px 52px rgba(0,0,0,.52));
  transform:translateZ(48px) scale(1.018);
}
.hero-portal-wrap:hover .hero-portal-glow{
  transform:translateZ(0) scale(1.08);
  opacity:1;
}


.interactive-section,.steam-section,.mobile-section{padding:120px 0}
.section-heading{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:end;
  gap:60px;
  margin-bottom:48px;
}
.section-heading h2,.cta-section h2{font-size:clamp(46px,6vw,72px);line-height:.96}
.section-heading p{color:var(--muted);line-height:1.8;margin:0 0 5px;max-width:500px}

.interactive-card{
  min-height:520px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  background:
    radial-gradient(circle at 0% 0%,rgba(124,92,255,.42),transparent 45%),
    linear-gradient(135deg,#171126,#0b1017 58%);
}
.interactive-content{padding:60px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}
.product-badge{
  border:1px solid rgba(255,255,255,.18);
  padding:8px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  margin-bottom:28px;
}
.interactive-content h3{font-family:"Space Grotesk";font-size:52px;line-height:.96;margin:0}
.interactive-content p{color:#b4bdc8;line-height:1.75;max-width:450px;margin:24px 0 30px}
.btn-light{background:#fff;color:#05070a}
.btn-light:hover{transform:translateY(-2px)}
.interactive-art{display:grid;place-items:center;padding:40px}
.live-window{
  width:min(560px,100%);
  aspect-ratio:1.2;
  background:#090c12;
  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;
  overflow:hidden;
  transform:rotate(2deg);
  box-shadow:0 35px 80px rgba(0,0,0,.45);
}
.window-top{height:52px;display:flex;align-items:center;justify-content:space-between;padding:0 16px;border-bottom:1px solid var(--line);font-size:10px;color:#9ca6b3}
.window-top strong{color:#ff5f6f}
.dots{display:flex;gap:5px}.dots i{width:6px;height:6px;background:#3e4654;border-radius:50%}
.window-screen{
  height:calc(100% - 52px);
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
    radial-gradient(circle at center,#16202f,#0a0e15 70%);
  background-size:28px 28px,28px 28px,auto;
}
.game-object{position:absolute;border-radius:18px;background:linear-gradient(145deg,#7c5cff,#3120a8);box-shadow:0 12px 28px rgba(124,92,255,.24)}
.obj-1{width:90px;height:90px;left:23%;top:42%;transform:rotate(16deg)}
.obj-2{width:58px;height:58px;left:48%;top:25%;background:linear-gradient(145deg,#00d4ff,#006b80)}
.obj-3{width:72px;height:72px;right:17%;bottom:20%;background:linear-gradient(145deg,#b6ff5b,#5f9824)}
.chat-pop{position:absolute;background:#fff;color:#06080c;padding:9px 12px;border-radius:11px;font-weight:800;font-size:12px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.pop-1{top:18%;left:13%}.pop-2{top:42%;right:9%}.pop-3{bottom:14%;left:38%}

.steam-section{padding-top:30px}
.mobile-section{padding-top:30px}
.games-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.game-card{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:var(--bg-soft);
  transition:.28s ease;
}
.game-card:hover{transform:translateY(-6px);border-color:rgba(255,255,255,.2)}
.game-cover{aspect-ratio:1.5;padding:20px;position:relative;display:flex;align-items:flex-end;overflow:hidden}
.game-cover:before{
  content:"";position:absolute;inset:-20%;
  background:linear-gradient(115deg,transparent,rgba(255,255,255,.16),transparent);
  transform:rotate(12deg);
}
.cover-one{background:radial-gradient(circle at 70% 30%,#5d4cff,#151329 55%,#0c0e14)}
.cover-two{background:radial-gradient(circle at 30% 40%,#00a1c4,#12202a 48%,#0b0f14)}
.cover-tag{position:absolute;top:18px;left:18px;border:1px solid rgba(255,255,255,.22);padding:7px 9px;border-radius:999px;font-size:9px;letter-spacing:.12em;font-weight:800}
.cover-title{font-family:"Space Grotesk";font-size:40px;line-height:.88;font-weight:700;letter-spacing:-.04em;position:relative}
.game-info{padding:20px;display:flex;justify-content:space-between;gap:20px;align-items:center}
.game-info h3,.game-card-add h3{font-family:"Space Grotesk";margin:0 0 8px;font-size:20px}
.game-info p,.game-card-add p{color:var(--muted);font-size:13px;line-height:1.5;margin:0}
.circle-link{
  width:42px;height:42px;border-radius:50%;
  border:1px solid var(--line);
  display:grid;place-items:center;
  flex:0 0 auto;transition:.25s;
}
.circle-link:hover{background:#fff;color:#000}
.game-card-add{
  min-height:340px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px;
  border-style:dashed;
}
.add-icon{width:55px;height:55px;border:1px solid var(--line);border-radius:16px;display:grid;place-items:center;font-size:26px;margin-bottom:18px;color:#b9c2ce}

.cta-section{
  margin-top:30px;
  margin-bottom:120px;
  min-height:320px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.footer{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  min-height:160px;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto;
  gap:24px;
  align-items:center;
  color:var(--muted);
  font-size:13px;
}
.footer-brand{display:flex;align-items:center;gap:10px;color:white}
.footer-links{display:flex;gap:20px}
.footer a:hover{color:white}
.copyright{white-space:nowrap}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.visible{opacity:1;transform:none}

@media (max-width: 900px){
  .nav{display:none}
  .hero{grid-template-columns:1fr;padding-top:70px;gap:20px}
  .hero-visual{height:480px}
  .hero-portal-wrap{width:min(640px,100%)}
  .section-heading{grid-template-columns:1fr;gap:24px}
  .interactive-card{grid-template-columns:1fr}
  .interactive-art{padding-top:0}
  .games-grid{grid-template-columns:1fr 1fr}
  .game-card-add{grid-column:1/-1}
  .footer{grid-template-columns:1fr 1fr;padding:35px 0}
}
@media (max-width: 620px){
  .site-header,.section,.stats,.footer{width:min(100% - 28px,1180px)}
  .site-header{height:68px}.nav-cta{display:none}
  .hero{min-height:auto;padding:70px 0 30px}
  .hero h1{font-size:55px}
  .hero-text{font-size:15px}
  .hero-visual{height:360px}
  .hero-portal-wrap{width:112%;max-width:560px}
  .stats{grid-template-columns:1fr}
  .stats div{border-bottom:1px solid var(--line)}
  .interactive-section,.steam-section,.mobile-section{padding:85px 0}
  .interactive-content{padding:36px 28px}
  .interactive-content h3{font-size:42px}
  .interactive-art{padding:0 20px 28px}
  .games-grid{grid-template-columns:1fr}
  .game-card-add{grid-column:auto}
  .cta-section{margin-bottom:70px;min-height:300px;align-items:flex-start;justify-content:center;flex-direction:column}
  .footer{grid-template-columns:1fr;gap:18px;padding:34px 0 50px}
}


.mobile-cover-one{
  background:
    radial-gradient(circle at 72% 28%, rgba(182,255,91,.42), transparent 28%),
    radial-gradient(circle at 28% 72%, rgba(0,212,255,.34), transparent 30%),
    linear-gradient(145deg,#0f241c,#101722 58%,#090d13);
}
.mobile-cover-two{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,126,76,.38), transparent 30%),
    radial-gradient(circle at 72% 70%, rgba(124,92,255,.40), transparent 28%),
    linear-gradient(145deg,#27160f,#15121f 58%,#090d13);
}


/* KrustyGames real logo */
.brand-logo{
  width:42px;
  height:42px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 0 14px rgba(124,92,255,.24));
}
.footer-logo{
  width:38px;
  height:38px;
}
@media (max-width:620px){
  .brand-logo{width:36px;height:36px}
  .footer-logo{width:34px;height:34px}
}


/* TikTok interactive section — custom artwork */
.interactive-art-image{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 30px 0;
  overflow:visible;
}
.tiktok-interactive-image{
  display:block;
  width:min(100%, 620px);
  max-height:570px;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(0 30px 45px rgba(0,0,0,.38));
  transform:rotate(1.5deg);
  transition:transform .35s ease, filter .35s ease;
}
.interactive-card:hover .tiktok-interactive-image{
  transform:rotate(0deg) translateY(-5px) scale(1.015);
  filter:drop-shadow(0 38px 55px rgba(0,0,0,.46));
}
@media (max-width:900px){
  .interactive-art-image{padding:10px 20px 0}
  .tiktok-interactive-image{max-height:520px}
}
@media (max-width:620px){
  .interactive-art-image{padding:0 12px 0}
  .tiktok-interactive-image{width:100%;max-height:460px}
}


/* TikTok visual V7 — mirrored + more breathing room */
.interactive-art-image{
  padding:42px 60px 34px;
  overflow:hidden;
}
.tiktok-interactive-image{
  width:min(86%, 500px);
  max-height:470px;
  transform:scaleX(-1) rotate(1.5deg);
}
.interactive-card:hover .tiktok-interactive-image{
  transform:scaleX(-1) rotate(0deg) translateY(-4px) scale(1.01);
}
@media (max-width:900px){
  .interactive-art-image{padding:32px 45px 28px}
  .tiktok-interactive-image{width:min(82%, 460px);max-height:450px}
}
@media (max-width:620px){
  .interactive-art-image{padding:28px 30px 22px}
  .tiktok-interactive-image{width:88%;max-height:400px}
}


/* TikTok visual V8 — richer live-interaction composition */
.interactive-art-image{
  padding:28px 34px 24px;
  overflow:hidden;
}

.tiktok-visual-wrap{
  position:relative;
  width:100%;
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate;
}

.tiktok-glow{
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(124,92,255,.32), rgba(0,212,255,.14) 38%, rgba(124,92,255,.05) 62%, transparent 74%);
  filter:blur(16px);
  opacity:.95;
  z-index:0;
  animation:tiktokGlowPulse 4.6s ease-in-out infinite;
}

.tiktok-interactive-image{
  position:relative;
  z-index:2;
  width:min(92%, 555px);
  max-height:520px;
  object-fit:contain;
  transform:scaleX(-1) rotate(1.2deg);
  filter:drop-shadow(0 28px 44px rgba(0,0,0,.45));
  transition:transform .35s ease, filter .35s ease;
}

.interactive-card:hover .tiktok-interactive-image{
  transform:scaleX(-1) rotate(0deg) translateY(-4px) scale(1.015);
  filter:drop-shadow(0 36px 58px rgba(0,0,0,.52));
}

.live-float-card{
  position:absolute;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  min-width:145px;
  padding:10px 13px 10px 10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  background:linear-gradient(135deg,rgba(20,24,35,.82),rgba(12,15,23,.70));
  backdrop-filter:blur(12px);
  box-shadow:0 16px 36px rgba(0,0,0,.28);
  pointer-events:none;
}

.live-float-card small{
  display:block;
  margin-bottom:2px;
  color:#8f99a8;
  font-size:8px;
  font-weight:800;
  letter-spacing:.12em;
}

.live-float-card strong{
  display:block;
  color:#fff;
  font-size:12px;
  line-height:1.15;
}

.float-icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  font-size:17px;
  font-weight:900;
  color:#fff;
}

.rose-icon{
  background:linear-gradient(135deg,#ff4f91,#ff285f);
  box-shadow:0 0 22px rgba(255,79,145,.26);
}

.galaxy-icon{
  background:linear-gradient(135deg,#7c5cff,#00d4ff);
  box-shadow:0 0 22px rgba(124,92,255,.28);
}

.action-icon{
  background:linear-gradient(135deg,#b6ff5b,#5ccf54);
  color:#071007;
  box-shadow:0 0 22px rgba(182,255,91,.20);
}

.live-float-card-1{
  left:3%;
  top:18%;
  animation:floatCardA 4.2s ease-in-out infinite;
}

.live-float-card-2{
  right:2%;
  top:34%;
  animation:floatCardB 4.8s ease-in-out infinite;
}

.live-float-card-3{
  left:7%;
  bottom:17%;
  animation:floatCardC 5.1s ease-in-out infinite;
}

@keyframes floatCardA{
  0%,100%{transform:translate3d(0,0,0) rotate(-2deg)}
  50%{transform:translate3d(0,-8px,0) rotate(-1deg)}
}

@keyframes floatCardB{
  0%,100%{transform:translate3d(0,0,0) rotate(2deg)}
  50%{transform:translate3d(0,7px,0) rotate(1deg)}
}

@keyframes floatCardC{
  0%,100%{transform:translate3d(0,0,0) rotate(1deg)}
  50%{transform:translate3d(0,-6px,0) rotate(0deg)}
}

@keyframes tiktokGlowPulse{
  0%,100%{transform:scale(.96);opacity:.72}
  50%{transform:scale(1.05);opacity:1}
}

@media (max-width:900px){
  .interactive-art-image{padding:24px 26px 20px}
  .tiktok-visual-wrap{min-height:480px}
  .tiktok-interactive-image{width:min(88%,520px);max-height:490px}
  .tiktok-glow{width:380px;height:380px}
  .live-float-card{transform:scale(.92)}
  .live-float-card-1{left:2%;top:18%}
  .live-float-card-2{right:2%;top:37%}
  .live-float-card-3{left:4%;bottom:15%}
}

@media (max-width:620px){
  .interactive-art-image{padding:20px 14px 18px}
  .tiktok-visual-wrap{min-height:430px}
  .tiktok-interactive-image{width:88%;max-height:420px}
  .tiktok-glow{width:300px;height:300px}
  .live-float-card{
    min-width:118px;
    padding:8px 10px 8px 8px;
    border-radius:12px;
  }
  .live-float-card small{font-size:7px}
  .live-float-card strong{font-size:10px}
  .float-icon{width:29px;height:29px;flex-basis:29px;font-size:14px}
  .live-float-card-1{left:0;top:15%}
  .live-float-card-2{right:0;top:36%}
  .live-float-card-3{left:1%;bottom:12%}
}

@media (prefers-reduced-motion:reduce){
  .live-float-card,
  .tiktok-glow{
    animation:none !important;
  }
}


/* V9 — real TikTok gift artwork */
.gift-icon{
  width:38px;
  height:38px;
  flex:0 0 38px;
  object-fit:contain;
  filter:drop-shadow(0 5px 10px rgba(0,0,0,.22));
}

@media (max-width:620px){
  .gift-icon{
    width:31px;
    height:31px;
    flex-basis:31px;
  }
}


/* V10 — flip TikTok phone horizontally */
.tiktok-interactive-image{
  transform:rotate(1.2deg);
}
.interactive-card:hover .tiktok-interactive-image{
  transform:rotate(0deg) translateY(-4px) scale(1.015);
}


/* V11 — Steam project artwork */
.game-cover-image{
  padding:0;
  overflow:hidden;
}
.game-cover-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .45s ease;
}
.game-card:hover .game-cover-image img{
  transform:scale(1.025);
}


/* V12 — coming soon Steam card */
.game-cover-image{position:relative}
.game-cover-image .cover-tag{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
}
.circle-link-disabled{
  opacity:.42;
  cursor:default;
  pointer-events:none;
}


/* V13 — Steam hover fix */
.game-card .game-cover-image img{
  transform:scale(1) !important;
  filter:none;
}
.game-card:hover .game-cover-image img{
  transform:scale(1) !important;
}
.game-card .game-cover-image:hover img{
  transform:scale(1.025) !important;
}

/* V13 — Next Steam project teaser */
.next-project-card{
  overflow:hidden;
}
.next-project-visual{
  position:relative;
  min-height:330px;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 48%, rgba(124,92,255,.20), transparent 30%),
    radial-gradient(circle at 70% 25%, rgba(0,212,255,.09), transparent 26%),
    linear-gradient(145deg,#11131d,#090c13 68%);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.next-project-mark{
  position:relative;
  z-index:2;
  width:112px;
  height:112px;
  display:grid;
  place-items:center;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(145deg,rgba(124,92,255,.18),rgba(8,11,18,.78));
  box-shadow:0 24px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
  color:#fff;
  font-size:58px;
  font-weight:800;
  line-height:1;
  transition:transform .35s ease, border-color .35s ease;
}
.next-project-card:hover .next-project-mark{
  transform:translateY(-5px) rotate(2deg);
  border-color:rgba(124,92,255,.48);
}
.next-project-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:3;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  background:rgba(9,12,19,.68);
  backdrop-filter:blur(10px);
  color:#c7cbd6;
  font-size:10px;
  font-weight:800;
  letter-spacing:.11em;
}
.next-project-orbit{
  position:absolute;
  border:1px solid rgba(124,92,255,.14);
  border-radius:50%;
  pointer-events:none;
}
.orbit-one{
  width:235px;
  height:235px;
}
.orbit-two{
  width:330px;
  height:330px;
  border-color:rgba(0,212,255,.07);
}
.next-project-visual::before,
.next-project-visual::after{
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#7c5cff;
  box-shadow:0 0 18px rgba(124,92,255,.9);
}
.next-project-visual::before{
  transform:translate(-112px,-52px);
}
.next-project-visual::after{
  width:4px;
  height:4px;
  background:#00d4ff;
  box-shadow:0 0 15px rgba(0,212,255,.85);
  transform:translate(138px,72px);
}

@media (max-width:620px){
  .next-project-visual{min-height:280px}
  .next-project-mark{width:94px;height:94px;font-size:48px;border-radius:24px}
  .orbit-one{width:205px;height:205px}
  .orbit-two{width:280px;height:280px}
}


/* V14 — Mobile game cards */
#mobile .game-cover-image{
  position:relative;
}
#mobile .game-cover-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
#mobile .game-cover-image .cover-tag{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
}


/* V15 — contact + legal pages */
.legal-footer-links{
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  padding:20px 24px 32px;
  font-size:13px;
}
.legal-footer-links a,
#contact a{
  color:inherit;
  text-decoration:none;
}
.legal-footer-links a:hover,
#contact a:hover{
  text-decoration:underline;
}
.legal-page{
  min-height:100vh;
  background:#080a10;
  color:#f4f5f8;
}
.legal-header{
  max-width:1080px;
  margin:0 auto;
  padding:28px 28px 8px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}
.legal-brand,.legal-back{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.04em;
}
.legal-back{
  color:#aeb4c2;
  font-size:14px;
  font-weight:600;
}
.legal-shell{
  max-width:1080px;
  margin:0 auto;
  padding:42px 28px 90px;
}
.legal-content{
  max-width:820px;
}
.legal-content h1{
  font-size:clamp(38px,6vw,72px);
  margin:0 0 14px;
  letter-spacing:-.045em;
}
.legal-content h2{
  margin:46px 0 14px;
  font-size:25px;
}
.legal-content h3{
  margin:30px 0 10px;
  font-size:18px;
}
.legal-content p,.legal-content li{
  color:#b7bdca;
  line-height:1.75;
  font-size:15px;
}
.legal-content strong{color:#f4f5f8}
.legal-content a{color:#8bcfff}
.legal-content ul{padding-left:22px}
@media(max-width:620px){
  .legal-header,.legal-shell{padding-left:20px;padding-right:20px}
  .legal-header{align-items:flex-start}
}


/* V16 — final Contact section */
.contact-section{
  padding-top:90px;
  padding-bottom:90px;
}
.contact-simple{
  text-align:center;
  padding:64px 24px;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.contact-simple .eyebrow{
  justify-content:center;
  margin-bottom:18px;
}
.contact-simple h2{
  margin:0 0 18px;
}
.contact-email{
  display:inline-block;
  color:#a9b1c1;
  font-size:clamp(16px,2vw,20px);
  text-decoration:none;
  transition:color .2s ease;
}
.contact-email:hover{
  color:#fff;
}
