/* ===== GLOBAL ===== */
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --accent: #06b6d4;
  --dark: #0f0f1a;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --card-bg: #1e1e3a;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #2d2d5a;
  --success: #10b981;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(15,15,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.5px;
}

.navbar-brand span { color: var(--accent); }

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: .4rem .9rem !important;
  border-radius: 6px;
  transition: all .2s;
}

.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(124,58,237,.2);
}

.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: invert(1); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.35) 0%, rgba(6,182,212,.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(6,182,212,.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .25s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124,58,237,.5);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: .7rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .25s;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.review-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.review-card-body {
  padding: 1.4rem;
}

.genre-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 20px;
  margin-bottom: .8rem;
}

.genre-rpg { background: rgba(124,58,237,.2); color: #a78bfa; border: 1px solid rgba(124,58,237,.4); }
.genre-fps { background: rgba(239,68,68,.2); color: #f87171; border: 1px solid rgba(239,68,68,.4); }
.genre-action { background: rgba(249,115,22,.2); color: #fb923c; border: 1px solid rgba(249,115,22,.4); }
.genre-strategy { background: rgba(16,185,129,.2); color: #34d399; border: 1px solid rgba(16,185,129,.4); }

.review-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}

.review-card p {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 1rem;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.score-9 { background: linear-gradient(135deg, #10b981, #059669); }
.score-8 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.score-7 { background: linear-gradient(135deg, #f59e0b, #d97706); }

.read-more-link {
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}

.read-more-link:hover { gap: .6rem; color: var(--accent); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stat-item { text-align: center; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--text-muted); font-size: .9rem; margin-top: .2rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .8rem;
}

.newsletter-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .75rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}

.newsletter-form input[type="email"]:focus { border-color: var(--accent); }

.newsletter-form button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #fff;
  padding: .75rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
}

.newsletter-form button:hover { opacity: .9; }

#newsletter-success {
  display: none;
  color: var(--success);
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--dark2);
}

.form-group { margin-bottom: 1.2rem; }

.form-label {
  display: block;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.form-control-custom {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}

.form-control-custom:focus { border-color: var(--accent); }

textarea.form-control-custom { resize: vertical; min-height: 130px; }

#contact-success {
  display: none;
  background: rgba(16,185,129,.15);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 600;
}

/* ===== ABOUT ===== */
.about-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-img img { width: 100%; height: 380px; object-fit: cover; }

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item h5 { color: #fff; font-weight: 700; margin-bottom: .3rem; font-size: 1rem; }
.feature-item p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
  text-align: center;
}

.policy-hero h1 { font-size: 2.4rem; font-weight: 900; color: #fff; }
.policy-hero p { color: var(--text-muted); margin-top: .5rem; }

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.policy-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: .8rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}

.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.policy-content p, .policy-content li {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.8;
}

.policy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content li { margin-bottom: .4rem; }

.policy-content a { color: var(--accent); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .8rem;
}

.footer-brand span { color: var(--accent); }

.footer-desc {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p { color: var(--text-muted); font-size: .85rem; margin: 0; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p { color: var(--text-muted); font-size: .88rem; margin: 0; flex: 1; min-width: 200px; }
.cookie-inner p a { color: var(--accent); }

.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; }

.btn-cookie-accept {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: .5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: .9rem;
}

.btn-cookie-decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: .9rem;
}

/* ===== SECTIONS SPACING ===== */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input[type="email"] { min-width: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
