﻿:root {
  --bg-1: #030712;
  --bg-2: #0b1f3a;
  --bg-3: #113522;
  --text-main: #ecf4ff;
  --text-soft: #b4c7e6;
  --line: rgba(66, 132, 255, 0.25);
  --accent: #27d9ff;
  --accent-2: #73ffa8;
  --panel: rgba(7, 14, 30, 0.74);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text-main);
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(1100px 620px at 10% 12%, rgba(33, 117, 255, 0.25), transparent 62%),
    radial-gradient(900px 480px at 88% 72%, rgba(89, 255, 174, 0.22), transparent 58%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
  position: relative;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(39, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 217, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(1120px, 94vw);
  margin: 18px auto 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.site-header nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
}

.site-header nav a:hover {
  color: var(--accent);
}

.ghost-btn {
  border: 1px solid rgba(115, 255, 168, 0.42);
  border-radius: 9px;
  background: rgba(7, 16, 38, 0.6);
  color: #d8ffe8;
  padding: 7px 12px;
  cursor: pointer;
  font-weight: 700;
}

.hero {
  width: min(1120px, 94vw);
  margin: 20px auto 0;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(7, 14, 29, 0.8), rgba(8, 25, 44, 0.66));
  box-shadow: 0 30px 90px rgba(3, 10, 25, 0.46);
}

.tagline {
  margin: 0;
  color: var(--accent);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 12px 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.intro {
  margin: 0;
  max-width: 700px;
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.secondary-btn,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 800;
  padding: 12px 16px;
}

.primary-btn {
  background: linear-gradient(130deg, var(--accent), var(--accent-2));
  color: #002428;
  box-shadow: 0 10px 28px rgba(39, 217, 255, 0.35);
}

.secondary-btn {
  border: 1px solid rgba(39, 217, 255, 0.45);
  color: #d9ecff;
  background: rgba(7, 14, 29, 0.55);
}

.games-section {
  width: min(1120px, 94vw);
  margin: 24px auto 0;
  padding: 4px 0 40px;
}

.games-section h2 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
}

.game-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 16, 33, 0.8);
  padding: 16px;
}

.game-card h3 {
  margin: 8px 0 8px;
}

.game-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.game-card.featured {
  border-color: rgba(115, 255, 168, 0.45);
  box-shadow: inset 0 0 30px rgba(115, 255, 168, 0.06);
}

.status {
  margin: 0;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: #012015;
  background: linear-gradient(120deg, #8fffe4, #73ffa8);
}

.coming {
  display: inline-block;
  margin-top: 14px;
  color: #7cd2ff;
  font-size: 0.87rem;
  font-weight: 700;
}

.card-link {
  margin-top: 14px;
  background: linear-gradient(120deg, #95f2ff, #75ffd8);
  color: #072629;
}

.site-footer {
  width: min(1120px, 94vw);
  margin: 0 auto 20px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(7, 13, 29, 0.72);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  color: #d8f5ff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.privacy-page {
  width: min(980px, 94vw);
  margin: 20px auto;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 13, 29, 0.82);
}

.privacy-page h1,
.privacy-page h2 {
  margin-top: 0;
}

.privacy-page p,
.privacy-page li {
  color: var(--text-soft);
  line-height: 1.6;
}

.ad-zone {
  width: min(1120px, 94vw);
  margin: 14px auto;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(7, 13, 29, 0.72);
}

.games-section .ad-zone {
  width: 100%;
  margin: 0 0 16px;
}

.ad-zone ins.adsbygoogle {
  width: 100%;
}

.ad-zone-top ins.adsbygoogle {
  min-height: 90px;
}

.ad-zone-middle ins.adsbygoogle {
  min-height: 250px;
}
@media (max-width: 920px) {
  .ad-zone-middle ins.adsbygoogle {
    min-height: 180px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

