:root{
  --bg: #0b0f17;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --accent: #55a6ff;
  --accent-2: #7ad1ff;
  --border: rgba(255,255,255,0.14);
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1100px 600px at 20% -10%, rgba(85,166,255,0.35), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(122,209,255,0.20), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ color: var(--accent-2); }

.container{
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 15, 23, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-name{
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a{
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
}

.nav a:hover{
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.site-main{
  padding-bottom: 30px;
}

.hero{
  padding: 44px 0 18px;
}

.hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
}

.hero-copy h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
}

.hero-copy p{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 48ch;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-pb-logo{
  width: min(220px, 100%);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(85,166,255,0.35);
  background: rgba(85,166,255,0.18);
  color: var(--text);
  font-weight: 700;
}

.btn:hover{
  background: rgba(85,166,255,0.28);
  border-color: rgba(85,166,255,0.55);
}

.hero-art{
  display: flex;
  justify-content: flex-start;
}

.game-logo{
  width: min(320px, 100%);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.section{
  padding: 26px 0;
}

.section-inner{
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 18px;
  padding: 22px;
}

.section-alt .section-inner{
  background: var(--panel-2);
}

.section h3{
  margin: 0 0 12px;
  font-size: 22px;
}

.section p{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

#about .section-inner p{
  max-width: none;
}

.game-card{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: center;
}

.game-card-media{
  display: flex;
  justify-content: center;
}

.game-card-media img{
  width: 100%;
  max-width: 240px;
  height: auto;
}

.game-card-copy h4{
  margin: 0 0 8px;
  font-size: 18px;
}

.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(11, 15, 23, 0.72);
}

.footer-inner{
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-title{
  font-weight: 800;
}

.footer-sub{
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 2px;
}

.footer-link{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.footer-link:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 860px){
  .game-card{
    grid-template-columns: 1fr;
  }
  .game-card-copy{
    text-align: left;
  }
}

