/* ============================================================
   ParryStack.gg — Main Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* === 1. CSS Variables === */
:root {
  --bg-primary:     #07090f;
  --bg-secondary:   #0d1020;
  --bg-card:        #111827;
  --bg-card-hover:  #182035;
  --bg-input:       #0f1520;
  --accent:         #e63946;
  --accent-hover:   #ff4d58;
  --accent-orange:  #f4a261;
  --accent-blue:    #4cc9f0;
  --accent-gold:    #ffd700;
  --accent-green:   #2ecc71;
  --text-primary:   #eef0f8;
  --text-secondary: #8a8fa8;
  --text-muted:     #4a4f66;
  --border:         #1a1f35;
  --border-light:   #252c45;
  --score-S:        #00c851;
  --score-A:        #27ae60;
  --score-B:        #f39c12;
  --score-C:        #e67e22;
  --score-D:        #e74c3c;
  --font-heading:   'Oswald', sans-serif;
  --font-body:      'Inter', sans-serif;
  --radius:         6px;
  --radius-lg:      12px;
  --radius-xl:      20px;
  --shadow:         0 4px 24px rgba(0,0,0,0.6);
  --shadow-hover:   0 12px 48px rgba(0,0,0,0.8);
  --glow-red:       0 0 24px rgba(230,57,70,0.35);
  --glow-blue:      0 0 24px rgba(76,201,240,0.25);
  --transition:     all 0.22s ease;
  --max-w:          1280px;
  --nav-h:          64px;
}

/* === 2. Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
ul { list-style: none; }

/* === 3. Typography === */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); }

/* === 4. Layout === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* === 5. Navigation === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(7,9,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px;
  color: var(--text-primary);
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.nav-logo .logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; margin-bottom: 2px; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 6px 10px; border-radius: var(--radius);
  color: var(--text-secondary); transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-card); }
.nav-links a.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-search {
  position: relative;
}
.nav-search input {
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px 36px 7px 12px;
  color: var(--text-primary); font-size: 0.82rem; width: 180px;
  transition: var(--transition);
}
.nav-search input:focus { border-color: var(--accent); width: 240px; }
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search .search-icon {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 0.9rem; pointer-events: none;
}
.btn-adfree {
  background: linear-gradient(135deg, var(--accent), #c0392b);
  color: #fff; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 7px 14px; border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--glow-red);
}
.btn-adfree:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(230,57,70,0.5); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; background: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg-secondary); z-index: 999; overflow-y: auto;
  flex-direction: column; padding: 24px 20px; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading); font-size: 1.2rem; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 12px 16px; border-radius: var(--radius);
  color: var(--text-secondary); transition: var(--transition); border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--accent); background: var(--bg-card); }

/* === 6. Footer === */
.site-footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-heading); font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-primary); margin-bottom: 16px;
  border-bottom: 1px solid var(--accent); padding-bottom: 8px; display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  color: var(--text-secondary); font-size: 0.88rem; transition: var(--transition);
}
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-newsletter h4 { border-color: var(--accent-orange); }
.footer-newsletter p { font-size: 0.85rem; margin-bottom: 14px; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input {
  flex: 1; background: var(--bg-input); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 9px 14px;
  color: var(--text-primary); font-size: 0.85rem;
}
.footer-newsletter-form input:focus { border-color: var(--accent); }
.footer-newsletter-form button {
  background: var(--accent); color: #fff; padding: 9px 16px;
  border-radius: var(--radius); font-size: 0.82rem; font-weight: 600;
  transition: var(--transition);
}
.footer-newsletter-form button:hover { background: var(--accent-hover); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-secondary); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* === 7. Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 0.06em; transition: var(--transition);
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,0.3);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--glow-red); }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 7px 14px; font-size: 0.78rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-orange { background: var(--accent-orange); color: #fff; }
.btn-orange:hover { background: #e8945a; transform: translateY(-2px); }
.btn-green { background: var(--accent-green); color: #fff; }
.btn-green:hover { background: #25b563; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* === 8. Cards === */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
}
.card:hover {
  transform: translateY(-4px); border-color: var(--border-light);
  box-shadow: var(--shadow-hover);
}
.card-cover {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: var(--bg-secondary);
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-cover img { transform: scale(1.04); }
.card-cover-landscape { aspect-ratio: 16/9; }
.card-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.card:hover .card-overlay { opacity: 1; }
.card-overlay-actions {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  display: flex; gap: 6px;
  opacity: 0; transform: translateY(8px); transition: var(--transition);
}
.card:hover .card-overlay-actions { opacity: 1; transform: translateY(0); }
.card-body { padding: 14px; }
.card-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 6px; color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-excerpt { font-size: 0.83rem; color: var(--text-secondary); margin: 6px 0; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Horizontal card */
.card-h {
  display: flex; gap: 0; flex-direction: row;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.card-h:hover { border-color: var(--border-light); box-shadow: var(--shadow); transform: translateX(3px); }
.card-h .card-cover { width: 90px; min-width: 90px; aspect-ratio: auto; height: 100%; }
.card-h .card-cover img { height: 100%; width: 100%; object-fit: cover; }
.card-h .card-body { padding: 12px; flex: 1; }
.card-h .card-title { font-size: 0.9rem; }

/* === 9. Score Badges === */
.score-badge {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.9rem; padding: 4px 10px; border-radius: var(--radius);
  letter-spacing: 0.04em; display: inline-block; line-height: 1;
}
.score-badge.score-S, .score-badge.great { background: var(--score-S); color: #fff; }
.score-badge.score-A, .score-badge.good { background: var(--score-A); color: #fff; }
.score-badge.score-B, .score-badge.mixed { background: var(--score-B); color: #000; }
.score-badge.score-C, .score-badge.average { background: var(--score-C); color: #fff; }
.score-badge.score-D, .score-badge.poor { background: var(--score-D); color: #fff; }

.score-large {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-heading);
}
.score-large .score-num { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.score-large .score-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }

/* === 10. Platform Badges === */
.platform-badges { display: flex; flex-wrap: wrap; gap: 4px; }
.platform-badge {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 2px 7px; border-radius: 3px;
}
.platform-badge.pc    { background: rgba(76,201,240,0.15); color: var(--accent-blue); border: 1px solid rgba(76,201,240,0.3); }
.platform-badge.ps5, .platform-badge.ps4 { background: rgba(0,112,224,0.15); color: #5b9bf2; border: 1px solid rgba(0,112,224,0.3); }
.platform-badge.xbox  { background: rgba(16,124,16,0.2); color: #4caf50; border: 1px solid rgba(16,124,16,0.4); }
.platform-badge.switch { background: rgba(230,40,15,0.15); color: #ff6b57; border: 1px solid rgba(230,40,15,0.3); }

/* === 11. Genre & Tag Badges === */
.genre-badge, .tag-badge {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 3px 9px; border-radius: 20px;
}
.genre-badge { background: rgba(230,57,70,0.15); color: var(--accent); border: 1px solid rgba(230,57,70,0.3); }
.tag-badge { background: var(--bg-secondary); color: var(--text-muted); border: 1px solid var(--border); }
.tag-badge:hover { border-color: var(--accent); color: var(--accent); cursor: pointer; }
.badge-new { background: rgba(230,57,70,0.2); color: var(--accent); border: 1px solid var(--accent); }
.badge-hot { background: rgba(244,162,97,0.2); color: var(--accent-orange); border: 1px solid var(--accent-orange); }
.badge-trending { background: rgba(76,201,240,0.15); color: var(--accent-blue); border: 1px solid var(--accent-blue); }
.badge-sale { background: var(--accent-green); color: #fff; padding: 2px 8px; border-radius: 3px; font-size: 0.7rem; font-weight: 700; }

/* === 12. Section Headers === */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.section-header h2 { position: relative; }
.section-header h2::after {
  content: ''; position: absolute; bottom: -15px; left: 0;
  width: 40px; height: 3px; background: var(--accent); border-radius: 2px;
}
.section-title { display: flex; align-items: center; gap: 10px; }
.section-title .icon { color: var(--accent); font-size: 1.1rem; }
.section-header a { color: var(--text-secondary); font-size: 0.85rem; transition: var(--transition); }
.section-header a:hover { color: var(--accent); }

/* === 13. Hero Section === */
.hero {
  min-height: 88vh; position: relative; display: flex; align-items: flex-end;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,9,15,0.95) 35%, rgba(7,9,15,0.5) 70%, transparent 100%),
              linear-gradient(to top, rgba(7,9,15,0.9) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 0; max-width: 600px; }
.hero-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.hero-label::before { content: ''; width: 24px; height: 2px; background: var(--accent); }
.hero h1 { color: var(--text-primary); margin-bottom: 16px; }
.hero-desc { color: var(--text-secondary); font-size: 1rem; margin-bottom: 24px; max-width: 480px; }
.hero-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-price-badge {
  background: rgba(46,204,113,0.15); border: 1px solid rgba(46,204,113,0.4);
  color: var(--accent-green); padding: 6px 14px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
}
.hero-dots {
  position: absolute; bottom: 28px; right: 0; left: 0;
  display: flex; justify-content: flex-end; padding-right: 40px;
  gap: 8px; z-index: 2;
}
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-muted); border: none; transition: var(--transition); }
.hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* === 14. Trending Row === */
.trending-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.trending-scroll::-webkit-scrollbar { height: 4px; }
.trending-scroll::-webkit-scrollbar-track { background: transparent; }
.trending-scroll::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }
.trending-card {
  min-width: 160px; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.trending-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.trending-card-cover { height: 210px; position: relative; overflow: hidden; }
.trending-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.trending-card-body { padding: 10px 12px; }
.trending-card-title { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; text-transform: uppercase; }

/* === 15. News Section === */
.news-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.news-item:hover .news-title { color: var(--accent); }
.news-item:last-child { border-bottom: none; }
.news-item-img { width: 80px; min-width: 80px; height: 60px; border-radius: var(--radius); overflow: hidden; background: var(--bg-secondary); }
.news-item-img img { width: 100%; height: 100%; object-fit: cover; }
.news-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; transition: var(--transition); }
.news-meta { display: flex; gap: 10px; align-items: center; }
.news-time { font-size: 0.75rem; color: var(--text-muted); }
.editor-picks h3 { font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.editor-pick-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 10px; display: flex; gap: 0;
  transition: var(--transition); cursor: pointer;
}
.editor-pick-card:hover { border-color: var(--border-light); transform: translateX(3px); }
.editor-pick-img { width: 70px; height: 70px; object-fit: cover; }
.editor-pick-body { padding: 10px; }
.editor-pick-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-orange); font-weight: 700; margin-bottom: 3px; }
.editor-pick-title { font-size: 0.85rem; font-weight: 600; }

/* === 16. Deals Strip === */
.deals-strip { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.deal-strip-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.deal-strip-item:last-child { border-bottom: none; }
.deal-strip-item:hover { background: var(--bg-card); }
.deal-game-info { display: flex; align-items: center; gap: 14px; flex: 1; }
.deal-game-img { width: 44px; height: 60px; border-radius: 4px; overflow: hidden; background: var(--bg-primary); }
.deal-game-img img { width: 100%; height: 100%; object-fit: cover; }
.deal-game-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.deal-stores { display: flex; gap: 8px; align-items: center; }
.deal-store-badge {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 2px 7px; border-radius: 3px; border: 1px solid var(--border-light);
  color: var(--text-muted);
}
.deal-price-info { display: flex; align-items: center; gap: 12px; }
.deal-old-price { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.deal-new-price { font-size: 1.1rem; font-weight: 700; color: var(--accent-green); }
.deal-pct { background: rgba(46,204,113,0.15); color: var(--accent-green); border: 1px solid rgba(46,204,113,0.3); padding: 2px 8px; border-radius: 3px; font-size: 0.78rem; font-weight: 700; }

/* === 17. Genre Grid === */
.genre-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.genre-tile {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 16px;
  text-align: center; transition: var(--transition); cursor: pointer;
  display: block; text-decoration: none;
}
.genre-tile:hover { border-color: var(--accent); background: var(--bg-card-hover); transform: translateY(-3px); }
.genre-tile:hover .genre-icon { color: var(--accent); transform: scale(1.1); }
.genre-icon { font-size: 2rem; margin-bottom: 8px; transition: var(--transition); display: block; }
.genre-name { font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); }
.genre-tile:hover .genre-name { color: var(--text-primary); }
.genre-count { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

/* === 18. Review Score Grid === */
.review-score-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.sub-score-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sub-score-label { font-size: 0.85rem; color: var(--text-secondary); }
.sub-score-bar { flex: 1; height: 4px; background: var(--border-light); border-radius: 2px; margin: 0 12px; }
.sub-score-fill { height: 100%; border-radius: 2px; background: var(--accent); }
.sub-score-val { font-weight: 700; font-size: 0.9rem; }

/* === 19. Filter Sidebar === */
.browse-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filter-sidebar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 80px;
}
.filter-section { margin-bottom: 24px; }
.filter-section:last-child { margin-bottom: 0; }
.filter-section h4 {
  font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px;
}
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.filter-option input[type=checkbox] { accent-color: var(--accent); width: 14px; height: 14px; }
.filter-option label { font-size: 0.85rem; color: var(--text-secondary); cursor: pointer; transition: var(--transition); }
.filter-option:hover label { color: var(--text-primary); }
.filter-range input[type=range] { width: 100%; accent-color: var(--accent); }
.filter-range .range-vals { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.sort-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.sort-bar select {
  background: var(--bg-card); border: 1px solid var(--border-light);
  color: var(--text-primary); padding: 8px 14px; border-radius: var(--radius);
  font-size: 0.85rem; cursor: pointer;
}
.games-count { color: var(--text-muted); font-size: 0.85rem; margin-left: auto; }

/* === 20. Guide Progress === */
.guide-progress-bar-wrap { background: var(--bg-secondary); border-radius: 4px; height: 6px; margin-bottom: 6px; }
.guide-progress-bar { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-orange)); border-radius: 4px; transition: width 0.4s ease; }
.progress-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 16px; }
.guide-step {
  display: flex; gap: 14px; padding: 16px; margin-bottom: 12px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition);
}
.guide-step.completed { border-color: var(--score-A); background: rgba(46,204,113,0.05); }
.step-check {
  width: 24px; height: 24px; min-width: 24px; border-radius: 50%;
  border: 2px solid var(--border-light); display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: var(--transition);
  background: transparent; color: transparent; font-size: 0.75rem;
}
.step-check.checked { background: var(--score-A); border-color: var(--score-A); color: #fff; }
.step-num { color: var(--text-muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.step-title { font-weight: 600; margin-bottom: 6px; }
.step-desc { font-size: 0.88rem; color: var(--text-secondary); }

/* === 21. Game Hub Tabs === */
.hub-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.hub-tab {
  font-family: var(--font-heading); font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 12px 20px; background: none;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: var(--transition);
}
.hub-tab:hover { color: var(--text-primary); }
.hub-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* === 22. Deals Table === */
.deals-table { width: 100%; border-collapse: collapse; }
.deals-table thead tr { border-bottom: 2px solid var(--border-light); }
.deals-table th {
  font-family: var(--font-heading); font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); padding: 12px 16px; text-align: left;
}
.deals-table tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
.deals-table tbody tr:hover { background: var(--bg-card); }
.deals-table td { padding: 14px 16px; vertical-align: middle; }
.deal-game-cell { display: flex; align-items: center; gap: 12px; }

/* === 23. FAQ Accordion === */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-primary); font-weight: 600; font-size: 0.92rem;
  text-align: left; transition: var(--transition);
}
.faq-question:hover { background: var(--bg-card); }
.faq-question.open { background: var(--bg-card); color: var(--accent); }
.faq-chevron { font-size: 0.75rem; transition: transform 0.2s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 20px 16px; font-size: 0.9rem; color: var(--text-secondary); }
.faq-answer.open { max-height: 400px; }

/* === 24. Quick-answer box === */
.quick-answer {
  background: rgba(76,201,240,0.08); border: 1px solid rgba(76,201,240,0.25);
  border-left: 4px solid var(--accent-blue); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 24px;
}
.quick-answer h4 { color: var(--accent-blue); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.quick-answer p { color: var(--text-primary); font-size: 0.9rem; }

/* === 25. Pros/Cons === */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.pros, .cons {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px;
}
.pros { border-top: 3px solid var(--score-A); }
.cons { border-top: 3px solid var(--score-D); }
.pros h4, .cons h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.pros h4 { color: var(--score-A); }
.cons h4 { color: var(--score-D); }
.pros ul, .cons ul { display: flex; flex-direction: column; gap: 8px; }
.pros li::before { content: '✓ '; color: var(--score-A); font-weight: 700; }
.cons li::before { content: '✗ '; color: var(--score-D); font-weight: 700; }
.pros li, .cons li { font-size: 0.88rem; color: var(--text-secondary); }

/* === 26. Affiliate Buy Box === */
.buy-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; margin: 24px 0;
}
.buy-box-title { font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.buy-links { display: flex; flex-direction: column; gap: 8px; }
.buy-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius); border: 1px solid var(--border-light);
  transition: var(--transition); background: var(--bg-secondary);
}
.buy-link:hover { border-color: var(--accent-green); background: rgba(46,204,113,0.05); }
.buy-store { font-weight: 600; font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.buy-store-dot { width: 8px; height: 8px; border-radius: 50%; }
.steam-dot { background: #1b9cdb; }
.epic-dot { background: #2d2d2d; border: 1px solid #555; }
.amazon-dot { background: #ff9900; }
.gog-dot { background: #86329a; }
.gamesplanet-dot { background: #d63031; }
.buy-price { font-weight: 700; font-size: 1rem; color: var(--accent-green); }
.buy-btn { padding: 6px 14px; background: var(--accent-green); color: #fff; border-radius: var(--radius); font-size: 0.8rem; font-weight: 600; transition: var(--transition); }
.buy-btn:hover { background: #25b563; }

/* === 27. Newsletter Section === */
.newsletter-section {
  background: linear-gradient(135deg, rgba(230,57,70,0.1) 0%, rgba(244,162,97,0.05) 100%);
  border: 1px solid rgba(230,57,70,0.2); border-radius: var(--radius-xl);
  padding: 48px; text-align: center;
}
.newsletter-section h2 { margin-bottom: 12px; }
.newsletter-section p { max-width: 480px; margin: 0 auto 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; }
.newsletter-form input {
  flex: 1; background: var(--bg-input); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 12px 18px;
  color: var(--text-primary); font-size: 0.9rem;
}
.newsletter-form input:focus { border-color: var(--accent); }
.push-note { font-size: 0.8rem; color: var(--text-muted); }
.push-note a { color: var(--accent-blue); }

/* === 28. Cookie Banner === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-card); border-top: 1px solid var(--border-light);
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.85rem; color: var(--text-secondary); flex: 1; min-width: 280px; }
.cookie-text a { color: var(--accent-blue); }
.cookie-actions { display: flex; gap: 10px; }

/* === 29. Ad-free Modal === */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 40px; max-width: 480px; width: 90%;
  position: relative; transform: scale(0.92); transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; color: var(--text-muted); font-size: 1.2rem; transition: var(--transition); }
.modal-close:hover { color: var(--text-primary); }
.modal-icon { font-size: 2.5rem; text-align: center; margin-bottom: 16px; }
.modal h3 { text-align: center; margin-bottom: 8px; }
.modal p { text-align: center; margin-bottom: 24px; font-size: 0.9rem; }
.modal-price { font-size: 2rem; font-family: var(--font-heading); color: var(--accent); text-align: center; margin-bottom: 6px; font-weight: 700; }
.modal-price-sub { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 28px; }
.modal-features { list-style: none; margin-bottom: 28px; }
.modal-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.88rem; }
.modal-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; }
.badge-atl { background: rgba(255,215,0,0.15); color: var(--accent-gold); border: 1px solid rgba(255,215,0,0.4); padding: 2px 8px; border-radius: 3px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }

/* === 30. Save Button === */
.save-btn {
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  color: var(--text-secondary); padding: 8px 14px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.save-btn:hover { border-color: var(--accent-orange); color: var(--accent-orange); }
.save-btn.saved { background: rgba(244,162,97,0.15); border-color: var(--accent-orange); color: var(--accent-orange); }

/* === 31. Verdict Box === */
.verdict-box {
  background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(7,9,15,0));
  border: 1px solid rgba(230,57,70,0.25); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
}
.verdict-box h4 { color: var(--accent); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.verdict-box p { color: var(--text-primary); font-size: 0.95rem; line-height: 1.7; }

/* === 32. Most Wanted === */
.wanted-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.wanted-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; position: relative; transition: var(--transition);
}
.wanted-card:hover { border-color: var(--accent-orange); transform: translateY(-3px); }
.wanted-rank {
  position: absolute; top: 10px; left: 10px; width: 28px; height: 28px;
  background: var(--accent); color: #fff; border-radius: 50%;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.wanted-save { position: absolute; top: 10px; right: 10px; z-index: 1; background: rgba(7,9,15,0.7); border: none; color: var(--accent-orange); font-size: 1rem; padding: 4px 8px; border-radius: 4px; }
.wanted-img { height: 140px; overflow: hidden; }
.wanted-img img { width: 100%; height: 100%; object-fit: cover; }
.wanted-body { padding: 12px; }
.wanted-title { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 4px; }
.wanted-saves { font-size: 0.75rem; color: var(--text-muted); }

/* === 33. Pagination === */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.88rem; transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* === 34. Merch Store === */
.merch-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.merch-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.merch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--border-light); }
.merch-img { height: 220px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.merch-body { padding: 14px; }
.merch-title { font-weight: 600; margin-bottom: 6px; }
.merch-price { color: var(--accent-orange); font-weight: 700; font-size: 1.05rem; }
.merch-types { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }

/* === 35. Static Pages === */
.static-content { max-width: 800px; margin: 0 auto; padding: 80px 20px 60px; }
.static-content h1 { margin-bottom: 8px; }
.static-content .updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }
.static-content h2 { margin: 36px 0 12px; color: var(--text-primary); font-size: 1.15rem; }
.static-content p { margin-bottom: 14px; font-size: 0.92rem; }
.static-content ul { margin: 8px 0 14px 20px; }
.static-content ul li { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 6px; list-style: disc; }
.static-content a { color: var(--accent-blue); }
.static-content a:hover { text-decoration: underline; }

/* === 36. Contact Form === */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 11px 14px; color: var(--text-primary); font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-info { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.form-info h3 { font-family: var(--font-heading); font-size: 1rem; text-transform: uppercase; margin-bottom: 16px; }
.form-info-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.form-info-item .fi-icon { color: var(--accent); font-size: 1rem; margin-top: 2px; }
.form-info-item p { font-size: 0.85rem; }

/* === 37. Page Hero === */
.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: linear-gradient(to bottom, rgba(230,57,70,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-muted); }

/* === 38. Go Ad-Free Page === */
.adfree-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 40px; text-align: center;
  position: relative;
}
.pricing-card.featured { border-color: var(--accent); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 16px; border-radius: 20px; }
.pricing-price { font-size: 3rem; font-family: var(--font-heading); font-weight: 700; color: var(--accent); line-height: 1; margin: 20px 0 6px; }
.pricing-period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li span:first-child { color: var(--accent-green); font-weight: 700; }

/* === 39. Merch Hero === */
.merch-hero { background: linear-gradient(135deg, #0d1020 0%, #1a0a2e 100%); border-bottom: 1px solid var(--border); padding: calc(var(--nav-h) + 60px) 0 60px; text-align: center; }
.merch-hero h1 span { color: var(--accent); }

/* === 40. Top-tip Box === */
.tip-box { background: rgba(244,162,97,0.08); border: 1px solid rgba(244,162,97,0.25); border-left: 4px solid var(--accent-orange); border-radius: var(--radius); padding: 14px 18px; margin: 16px 0; }
.tip-box strong { color: var(--accent-orange); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.tip-box p { color: var(--text-primary); font-size: 0.88rem; margin-top: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .genre-grid { grid-template-columns: repeat(4,1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .browse-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .merch-grid { grid-template-columns: repeat(2,1fr); }
  .adfree-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-search { display: none; }
  .hamburger { display: flex; }
  :root { --nav-h: 56px; }
  .hero { min-height: 70vh; }
  .hero-content { max-width: 100%; }
  .genre-grid { grid-template-columns: repeat(2,1fr); }
  .wanted-grid { grid-template-columns: repeat(2,1fr); }
  .hub-tabs { overflow-x: auto; }
  .hub-tab { flex-shrink: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .cookie-banner { flex-direction: column; }
}
@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }
  .wanted-grid { grid-template-columns: 1fr; }
  .genre-grid { grid-template-columns: repeat(2,1fr); }
  .hero-cta { flex-direction: column; }
  .section { padding: 40px 0; }
}

/* === Utility === */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-accent { color: var(--accent); }
.text-orange { color: var(--accent-orange); }
.text-green { color: var(--accent-green); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.bg-card { background: var(--bg-card); }
.border-accent { border-color: var(--accent); }
.hide { display: none !important; }
.game-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; text-align: center;
  padding: 8px; word-break: break-word; color: rgba(255,255,255,0.6);
}
