/* ===== GLOBAL ===== */
:root {
  --primary: #6c63ff;
  --primary-dark: #4e46d4;
  --secondary: #ff6584;
  --dark: #0d0d1a;
  --dark2: #13132a;
  --dark3: #1a1a35;
  --card-bg: #16162e;
  --text: #e0e0f0;
  --text-muted: #8888aa;
  --border: #2a2a4a;
  --gradient: linear-gradient(135deg, #6c63ff 0%, #ff6584 100%);
}

* { 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.7;
  overflow-x: hidden;
}

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

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.navbar-brand .brand-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: rgba(108,99,255,.1);
}

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

/* ===== 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(0.35);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,26,.3) 0%, rgba(13,13,26,.9) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(108,99,255,.2);
  border: 1px solid rgba(108,99,255,.4);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108,99,255,.4);
  color: #fff;
}

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

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

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

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

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(108,99,255,.2);
}

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

.review-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-genre {
  display: inline-block;
  background: rgba(108,99,255,.15);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.review-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--text);
}

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

.review-score {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

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

.score-excellent { background: linear-gradient(135deg, #00c853, #69f0ae); }
.score-great { background: linear-gradient(135deg, #2979ff, #40c4ff); }
.score-good { background: linear-gradient(135deg, #ff6d00, #ffab40); }
.score-mixed { background: linear-gradient(135deg, #aa00ff, #e040fb); }

.score-label { font-size: .85rem; color: var(--text-muted); }
.score-label strong { display: block; color: var(--text); font-size: .95rem; }

.stars { color: #ffd700; font-size: .9rem; letter-spacing: 1px; }

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
}

/* ===== FEATURED SECTION ===== */
.featured-section {
  background: var(--dark2);
  padding: 80px 0;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

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

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

.newsletter-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
}

.newsletter-form .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .85rem 1.25rem;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form .form-control:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,.2);
  color: var(--text);
  outline: none;
}

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

/* ===== ABOUT SECTION ===== */
.about-section { padding: 90px 0; }

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid rgba(108,99,255,.3);
  pointer-events: none;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(108,99,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--dark2);
  padding: 90px 0;
}

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

.form-label { color: var(--text); font-weight: 600; font-size: .9rem; }

.form-control, .form-select {
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .75rem 1rem;
  border-radius: 8px;
  font-size: .95rem;
  transition: all .2s;
}

.form-control:focus, .form-select:focus {
  background: var(--dark3);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,.2);
  color: var(--text);
  outline: none;
}

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

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color .2s;
}

.contact-info-card:hover { border-color: var(--primary); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(108,99,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-text h6 { font-weight: 700; margin-bottom: .2rem; font-size: .95rem; }
.contact-info-text p { color: var(--text-muted); font-size: .85rem; margin: 0; }

/* ===== ALERT / TOAST ===== */
.form-alert {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  margin-top: 1rem;
}

.form-alert.success {
  background: rgba(0,200,83,.15);
  border: 1px solid rgba(0,200,83,.3);
  color: #69f0ae;
}

.form-alert.error {
  background: rgba(255,82,82,.15);
  border: 1px solid rgba(255,82,82,.3);
  color: #ff8a80;
}

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

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: inline-block;
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: var(--text-muted);
}

.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .85rem;
  transition: all .2s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: var(--dark2);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.policy-content {
  padding: 60px 0 80px;
}

.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--primary);
}

.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 .75rem;
}

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

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

.policy-content li { margin-bottom: .4rem; }

.policy-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.policy-box p { margin: 0; color: var(--text); }

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: var(--dark2);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

/* ===== REVIEWS PAGE ===== */
.reviews-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

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

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

.btn-cookie-accept {
  background: var(--primary);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: .5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: .9rem;
  transition: background .2s;
  white-space: nowrap;
}

.btn-cookie-accept:hover { background: var(--primary-dark); }

.btn-cookie-decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: .9rem;
  transition: all .2s;
  white-space: nowrap;
}

.btn-cookie-decline:hover { border-color: var(--text-muted); color: var(--text); }

/* ===== UTILITIES ===== */
.section-pad { padding: 90px 0; }
.bg-dark2 { background: var(--dark2); }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 1.4rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form .d-flex { flex-direction: column; }
}
