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

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

html { scroll-behavior: smooth; }

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

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

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

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

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

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

.navbar-nav .nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: .6rem 1rem !important;
  transition: color .2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  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-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

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

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
}

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

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: inline-block;
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  background: rgba(124,58,237,.15);
  color: #fff;
}

/* ===== SECTION ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--dark2); }

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}

.section-title span { color: var(--primary); }

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

.divider {
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  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,.5);
}

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

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

.review-genre {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.review-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.3;
}

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

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-muted);
}

.score-badge {
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  padding: .2rem .6rem;
  border-radius: 6px;
}

.stars { color: var(--star); font-size: .85rem; }

/* ===== FEATURED REVIEW ===== */
.featured-review {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

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

.featured-body { padding: 2rem; }

.featured-body h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 40px 0;
}

.stat-item { text-align: center; }

.stat-item .num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-item .label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: .3rem;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

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

.newsletter-section p { color: var(--text-muted); margin-bottom: 1.5rem; }

.newsletter-form { display: flex; gap: .75rem; flex-wrap: wrap; }

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 8px;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}

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

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

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

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

.form-control-custom:focus { border-color: var(--primary); }
.form-control-custom::placeholder { color: var(--text-muted); }

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

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

/* ===== ALERT ===== */
.alert-success-custom {
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.4);
  color: #34d399;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  display: none;
}

/* ===== ABOUT ===== */
.about-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

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

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
}

.team-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.team-card p { font-size: .85rem; color: var(--text-muted); }

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-bottom: 1px solid var(--border);
  padding: 60px 0 40px;
}

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

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 0 80px;
}

.policy-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-child { border-top: none; margin-top: 0; }

.policy-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.policy-content ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content ul li { margin-bottom: .4rem; line-height: 1.7; }
.policy-content a { color: var(--accent); }

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

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

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

.footer-desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.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: #fff; }

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

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

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}

.breadcrumb-wrap .breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}

.breadcrumb-item a { color: var(--accent); font-size: .85rem; }
.breadcrumb-item.active { color: var(--text-muted); font-size: .85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ===== SINGLE REVIEW PAGE ===== */
.review-header {
  padding: 60px 0 40px;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
}

.review-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .75rem;
}

.review-score-big {
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-body { padding: 50px 0 80px; }

.review-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 .75rem;
}

.review-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

.review-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}

.review-sidebar h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}

.info-row:last-child { border-bottom: none; }
.info-row .key { color: var(--text-muted); }
.info-row .val { color: #fff; font-weight: 600; }

.pros-cons { margin-top: 1.5rem; }

.pros-cons h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}

.pro-item, .con-item {
  font-size: .88rem;
  padding: .3rem 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.pro-item::before { content: '+'; color: #34d399; font-weight: 700; flex-shrink: 0; }
.con-item::before { content: '−'; color: #f87171; font-weight: 700; flex-shrink: 0; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,.4);
}

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

.cookie-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 420px; }
  .hero-content { padding: 60px 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: 100%; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
