/* ===== YUNAREVOX.PRO — MAIN STYLESHEET ===== */
: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;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

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

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(12px);
  border-bottom: 1px solid var(--border);
  padding: 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(--accent); }

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

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

.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28226,232,240,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark2);
}

.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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.4) 0%, rgba(6,182,212,.15) 100%);
  z-index: 1;
}

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

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

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

.hero h1 em {
  font-style: normal;
  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(226,232,240,.8);
  max-width: 560px;
  margin-bottom: 2rem;
}

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

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

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

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

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

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

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

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .75rem;
}

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

/* ===== 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 16px 40px rgba(0,0,0,.5);
}

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

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

.review-card-genre {
  display: inline-block;
  background: rgba(124,58,237,.2);
  color: var(--primary);
  border: 1px solid rgba(124,58,237,.3);
  padding: .2rem .65rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .75rem;
}

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

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

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

.score-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: .25rem .65rem;
  border-radius: 8px;
  min-width: 42px;
  text-align: center;
}

.stars {
  color: var(--warning);
  font-size: .9rem;
}

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

/* ===== 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: 380px;
  object-fit: cover;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--warning), #f97316);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 1rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}

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

.form-control-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .95rem;
  width: 100%;
  transition: border-color .2s;
}

.form-control-dark:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,.09);
  color: #fff;
}

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

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

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

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

/* ===== ABOUT ===== */
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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-name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.team-role {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

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

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

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

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

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

.footer-links { list-style: none; }

.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: 2rem;
  padding-top: 1.25rem;
  color: var(--text-muted);
  font-size: .82rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: .5rem;
}

/* ===== POLICY PAGES ===== */
.policy-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.policy-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: .75rem;
}

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

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

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

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

/* ===== RATING BREAKDOWN ===== */
.rating-bar-wrap { margin-bottom: .6rem; }
.rating-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.rating-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

/* ===== UTILITIES ===== */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.text-accent { color: var(--accent); }
.text-muted-custom { color: var(--text-muted); }
.bg-card { background: var(--card-bg); }
.border-custom { border: 1px solid var(--border); }
.rounded-custom { border-radius: var(--radius); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero-stats { gap: 1.25rem; }
  .newsletter-section { padding: 2rem 1.5rem; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .policy-content { padding: 1.75rem 1.25rem; }
}
