/* ===== 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;
  --success: #10b981;
  --radius: 12px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  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; display: block; }

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

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

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  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(.35);
  z-index: 0;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,.3);
  border: 1px solid var(--primary);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

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

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat span {
  font-size: .85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

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

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

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

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

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

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

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

.score-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  padding: .3rem .8rem;
  border-radius: 50px;
}

.score-badge .score-num { font-size: 1.1rem; }

.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); }

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

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

.featured-body { padding: 2.5rem; }

.featured-body .score-big {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
}

.newsletter-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-form .form-control {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .95rem;
}

.newsletter-form .form-control:focus {
  background: rgba(255,255,255,.1);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,.2);
  color: #fff;
}

.newsletter-form .form-control::placeholder { color: var(--text-muted); }

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

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  padding: .75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255,255,255,.09);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,.2);
  color: #fff;
}

.contact-form .form-control::placeholder { color: var(--text-muted); }
.contact-form .form-select option { background: var(--dark2); }

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

/* ===== INFO CARDS ===== */
.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.info-card h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: .5rem;
}

.info-card p { color: var(--text-muted); font-size: .92rem; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

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

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

.team-card h5 { color: #fff; font-weight: 700; margin-bottom: .25rem; }
.team-card .role { color: var(--accent); font-size: .85rem; font-weight: 600; }
.team-card p { color: var(--text-muted); font-size: .88rem; margin-top: .5rem; }

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

.policy-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  margin: 3rem 0;
}

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

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

.policy-content p, .policy-content li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .75rem;
}

.policy-content ul { padding-left: 1.5rem; }
.policy-content strong { color: var(--text); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

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

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

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 1.25rem;
  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-address { color: var(--text-muted); font-size: .88rem; line-height: 1.8; }
.footer-address strong { color: var(--text); display: block; margin-bottom: .25rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.5rem;
  color: var(--text-muted);
  font-size: .85rem;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-stats { gap: 1.5rem; }
  .featured-review img { height: 250px; }
  .featured-body { padding: 1.5rem; }
  .policy-content { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ===== UTILITIES ===== */
.text-accent { color: var(--accent) !important; }
.text-primary-custom { color: var(--primary) !important; }
.bg-dark-card { background: var(--card-bg) !important; }
.divider { border-color: var(--border) !important; }
.stars { color: #f59e0b; letter-spacing: 2px; }
