@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

/* ===========================================
   CSS CUSTOM PROPERTIES
   =========================================== */
:root {
  --bg:          #0d0d1a;
  --surface:     #14142b;
  --surface-2:   #1c1c38;
  --primary:     #f5c518;
  --accent:      #e94560;
  --text:        #f0f0f8;
  --text-muted:  #8888aa;
  --border:      #2a2a4a;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --radius:  5px;
  --max-w:   1200px;
}

/* ===========================================
   RESET & BASE
   =========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

/* ===========================================
   LAYOUT UTILITIES
   =========================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ===========================================
   PHOTO / IMAGE PLACEHOLDERS
   =========================================== */
.img-placeholder {
  background-color: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

/* ===========================================
   SECTION HEADER
   =========================================== */
.section-header {
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 12px;
  max-width: 580px;
  line-height: 1.75;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

/* ===========================================
   SITE HEADER
   =========================================== */
.site-header {
  background-color: var(--surface);
  border-bottom: 3px solid var(--primary);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}

.brand-tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ===========================================
   CENTER-ALIGNED SECTIONS (Index page)
   =========================================== */
.about-intro .section-header,
.section-header {
  text-align: center;
}

.about-intro .section-desc,
.section-desc {
  margin-left: auto;
  margin-right: auto;
}

.about-intro .about-text .section-header {
  text-align: center;
}

.featured-reviews .section-header,
.genres .section-header,
.latest-reviews .section-header,
.editors-picks .section-header,
.products .section-header {
  text-align: center;
}

/* ===========================================
   SECTION 1 — HERO
   =========================================== */
.hero {
  background-color: var(--surface);
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--surface-2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-label {
  display: inline-block;
  background-color: var(--primary);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  height: 440px;
}

/* ===========================================
   SECTION 2 — ABOUT INTRO
   =========================================== */
.about-intro {
  background-color: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 380px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-text .section-header {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

/* ===========================================
   SECTION 3 — STATS STRIP
   =========================================== */
.stats-strip {
  background-color: var(--primary);
  padding: 44px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 12px;
  border-right: 1px solid rgba(13,13,26,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--bg);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--bg);
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  display: block;
}

/* ===========================================
   SECTION 4 — TOP RANKINGS
   =========================================== */
.top-rankings {
  background-color: var(--bg);
}

.rankings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.rankings-header .section-header {
  margin-bottom: 0;
}

.rankings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 56px 60px 1fr auto;
  gap: 20px;
  align-items: center;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
}

.ranking-item:nth-child(1) { border-left-color: var(--primary); }
.ranking-item:nth-child(2) { border-left-color: #b0b0c8; }
.ranking-item:nth-child(3) { border-left-color: #cd7f32; }

.rank-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1;
}

.ranking-item:nth-child(2) .rank-num { color: #b0b0c8; }
.ranking-item:nth-child(3) .rank-num { color: #cd7f32; }
.ranking-item:nth-child(n+4) .rank-num { color: var(--text-muted); font-size: 26px; }

.rank-cover {
  width: 56px;
  height: 72px;
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.rank-info { min-width: 0; }

.rank-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.rank-genre {
  background-color: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
}

.rank-score-wrap {
  text-align: center;
  min-width: 64px;
}

.rank-score {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.rank-score-label {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===========================================
   SECTION 5 — FEATURED REVIEWS
   =========================================== */
.featured-reviews {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

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

.review-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-genre {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.review-stars {
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

/* ===========================================
   SECTION 6 — GENRES
   =========================================== */
.genres {
  background-color: var(--bg);
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.genre-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.genre-icon-wrap {
  width: 52px;
  height: 52px;
  background-color: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.genre-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.genre-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.genre-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===========================================
   SECTION 7 — LATEST REVIEWS
   =========================================== */
.latest-reviews {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.latest-item {
  display: flex;
  gap: 16px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.latest-cover {
  width: 76px;
  height: 100px;
  flex-shrink: 0;
}

.latest-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.latest-content {
  flex: 1;
  min-width: 0;
}

.latest-genre {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.latest-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.latest-author {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.latest-score {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

/* ===========================================
   SECTION 8 — EDITOR'S PICKS
   =========================================== */
.editors-picks {
  background-color: var(--bg);
}

.picks-label-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.picks-badge {
  background-color: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pick-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pick-img {
  width: 100%;
  height: 196px;
}

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

.pick-body {
  padding: 16px;
}

.pick-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.pick-score {
  font-size: 13px;
  color: var(--primary);
  font-family: var(--font-heading);
}

/* ===========================================
   SECTION 9 — PRODUCTS / MEMBERSHIP
   =========================================== */
.products {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card.featured {
  border-color: var(--primary);
  border-width: 2px;
}

.product-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.product-icon {
  width: 48px;
  height: 48px;
  background-color: var(--surface);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.product-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 2px;
}

.product-price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  flex: 1;
  margin-bottom: 22px;
}

.product-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0 6px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.5;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.product-cta {
  display: block;
  width: 100%;
  padding: 11px 16px;
  text-align: center;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.product-card.featured .product-cta {
  background-color: var(--primary);
  color: var(--bg);
}

/* ===========================================
   SECTION 10 — CONTACTS
   =========================================== */
.contacts {
  background-color: var(--bg);
  border-top: 3px solid var(--primary);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.contact-value a {
  color: var(--text);
  text-decoration: none;
}

.contacts-map-area {
  width: 100%;
  height: 380px;
  background-color: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
}

.contacts-map-area svg {
  width: 44px;
  height: 44px;
  color: var(--border);
}

.contacts-map-area p {
  font-size: 14px;
}

/* ===========================================
   ABOUT PAGE SECTIONS
   =========================================== */
.page-title {
  background-color: var(--surface);
  border-bottom: 3px solid var(--primary);
  padding: 56px 0;
  text-align: center;
}

.page-title h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 8px;
}

.page-title p {
  color: var(--text-muted);
  font-size: 16px;
}

.page-section {
  padding: 80px 0;
}

.page-section.alt {
  background-color: var(--surface);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-content.reversed {
  direction: rtl;
}

.section-content.reversed > * {
  direction: ltr;
}

.content-text h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 20px;
}

.content-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.value-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.value-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.value-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================================
   INDEX PAGE MISSING SECTIONS
   =========================================== */
.latest-releases {
  background-color: var(--bg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.latest-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.latest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-releases .latest-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.latest-releases .latest-item h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  padding: 12px 16px;
}

.genre-showcase {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.genre-icon {
  width: 52px;
  height: 52px;
  background-color: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.genre-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.subscription-plans {
  background-color: var(--bg);
}

.product-header {
  margin-bottom: 16px;
}

.product-header h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.product-features ul {
  list-style: none;
  margin-bottom: 22px;
}

.product-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0 6px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.5;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.product-actions {
  margin-top: auto;
}

.contact-section {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.contact-section .contact-item {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background-color: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact-section .contact-item h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

.contact-section .contact-item a,
.contact-section .contact-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.review-cover {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.review-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.review-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 12px;
}

.read-more {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pick-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pick-image {
  width: 100%;
  height: 196px;
  overflow: hidden;
}

.pick-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pick-info {
  padding: 16px;
}

.pick-info h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 5px;
}

.pick-info p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.rankings-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-about {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

/* ===========================================
   COOKIE BANNER
   =========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface);
  border-top: 2px solid var(--primary);
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-banner-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-banner-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-reject {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn-accept {
  background-color: var(--primary);
  color: var(--bg);
}

.cookie-btn-accept:hover {
  background-color: #f0b708;
}

.cookie-btn-customize {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 12px;
}

.cookie-btn-customize:hover {
  background-color: var(--primary);
  color: var(--bg);
}

/* ===========================================
   COOKIE CUSTOMIZATION MODAL
   =========================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--surface);
  border-radius: 8px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}

.cookie-modal-header {
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-modal-header p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-options {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: var(--bg);
}

.cookie-option-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.cookie-option-text h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-option-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.cookie-option-required {
  opacity: 0.6;
  pointer-events: none;
}

.cookie-option-required .cookie-option-checkbox {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-option-required .cookie-option-text h3::after {
  content: ' (Required)';
  font-size: 11px;
  color: var(--text-muted);
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-modal-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-modal-btn-save {
  background-color: var(--primary);
  color: var(--bg);
}

.cookie-modal-btn-save:hover {
  background-color: #f0b708;
}

.cookie-modal-btn-reject {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.cookie-modal-btn-reject:hover {
  border-color: var(--text);
  color: var(--text);
}

.cookie-modal-link {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cookie-modal-link a {
  color: var(--primary);
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
}

.cookie-modal-link a:hover {
  text-decoration: underline;
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

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

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .picks-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn-accept,
  .cookie-btn-reject,
  .cookie-btn-customize {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .footer-legal {
    flex-wrap: wrap;
  }
  
  .products-grid { grid-template-columns: 1fr; }
  .picks-grid    { grid-template-columns: repeat(2, 1fr); }
  .rankings-grid { grid-template-columns: repeat(2, 1fr); }
  .genres-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .picks-grid    { grid-template-columns: 1fr; }
  .rankings-grid { grid-template-columns: 1fr; }
  .genres-grid   { grid-template-columns: 1fr; }
  
  .cookie-modal-content {
    width: 95%;
    padding: 24px;
  }
  
  .cookie-option {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .hero h1       { font-size: 46px; }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .genres-grid   { grid-template-columns: repeat(4, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section        { padding: 56px 0; }
  .hero          { padding: 60px 0; }
  .hero h1       { font-size: 36px; }
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-image    { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-image   { height: 260px; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item     { border-right: none; border-bottom: 1px solid rgba(13,13,26,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(13,13,26,0.15); }
  .ranking-item  { grid-template-columns: 44px 1fr auto; gap: 12px; }
  .rank-cover    { display: none; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .genres-grid   { grid-template-columns: repeat(2, 1fr); }
  .latest-grid   { grid-template-columns: 1fr; }
  .picks-grid    { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .contacts-map-area { height: 240px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; }
  .rankings-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1       { font-size: 30px; }
  .section-title { font-size: 30px; }
  .genres-grid   { grid-template-columns: repeat(2, 1fr); }
  .picks-grid    { grid-template-columns: 1fr; }
}
