/*
Theme Name: MinhazWeb
Theme URI: https://minhazweb.com
Author: MinhazWeb
Author URI: https://minhazweb.com
Description: A modern review website theme for Money Maker Sites, AI Tools, and Traffic & Lead Generation platforms. Fully responsive — works perfectly on mobile and desktop.
Version: 2.0.0
Requires at least: 5.5
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minhazweb
Tags: blog, custom-colors, custom-logo, featured-images, full-width-template, responsive-layout, translation-ready
*/

/* ════════════════════════════════════════
   VARIABLES & RESET
════════════════════════════════════════ */
:root {
  --bg:      #060910;
  --surface: #0d1422;
  --card:    #111827;
  --border:  #1e2d45;
  --gold:    #f0a500;
  --gold2:   #ffd166;
  --teal:    #06d6a0;
  --pink:    #ff6b9d;
  --blue:    #4895ef;
  --text:    #e8eaf0;
  --muted:   #8892a4;
  --radius:  14px;
  --nav-h:   60px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; }
ul  { list-style: none; }

/* ════════════════════════════════════════
   NOISE TEXTURE
════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
nav, .site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(6,9,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
}

.logo, .site-title a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.logo span { -webkit-text-fill-color: var(--teal); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: var(--muted); font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.4px;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--gold2); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #e08c00) !important;
  color: #000 !important; padding: 8px 16px !important;
  border-radius: 8px; font-weight: 700 !important;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  cursor: pointer;
  z-index: 300;
  min-width: 44px; min-height: 44px;
  align-items: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(50px, 10vw, 90px) 5% clamp(50px, 8vw, 70px);
  overflow: hidden;
}
.hero-glow {
  position: absolute; width: min(700px, 100vw); height: min(700px, 100vw);
  background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; width: min(400px, 80vw); height: min(400px, 80vw);
  background: radial-gradient(circle, rgba(6,214,160,0.08) 0%, transparent 70%);
  top: 15%; right: 5%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.1); border: 1px solid rgba(240,165,0,0.3);
  color: var(--gold2); padding: 6px 16px; border-radius: 100px;
  font-size: clamp(0.7rem, 2.5vw, 0.82rem);
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: clamp(16px, 4vw, 28px);
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 14vw, 8rem);
  line-height: 0.92; letter-spacing: 4px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 .line1 { display: block; color: var(--text); }
.hero h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  max-width: 560px; margin: clamp(14px, 3vw, 24px) auto 0;
  color: var(--muted); font-size: clamp(0.9rem, 2.5vw, 1.05rem); line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 12px; margin-top: clamp(24px, 5vw, 40px);
  flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c87d00);
  color: #000; font-weight: 700;
  padding: clamp(12px, 3vw, 14px) clamp(22px, 5vw, 32px);
  border-radius: 10px; border: none; cursor: pointer;
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(240,165,0,0.25);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(240,165,0,0.4); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
  padding: clamp(12px, 3vw, 14px) clamp(22px, 5vw, 32px);
  border-radius: 10px; cursor: pointer;
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold2); color: var(--gold2); }

.stats {
  display: flex; gap: clamp(20px, 5vw, 48px);
  margin-top: clamp(36px, 7vw, 64px);
  flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { color: var(--muted); font-size: clamp(0.72rem, 2vw, 0.82rem); margin-top: 2px; }

/* ════════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */
section { padding: clamp(50px, 8vw, 90px) 5%; position: relative; }

.section-tag {
  display: inline-block; font-family: 'Space Mono', monospace;
  font-size: clamp(0.68rem, 2vw, 0.75rem);
  color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 6vw, 3.5rem);
  letter-spacing: 2px; line-height: 1.05;
}
.section-title span {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub {
  color: var(--muted); max-width: 500px;
  line-height: 1.7; margin-top: 10px;
  font-size: clamp(0.88rem, 2.5vw, 1rem);
}

/* ════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════ */
#categories { background: var(--surface); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 3vw, 24px);
  margin-top: clamp(28px, 5vw, 48px);
}
.cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px) clamp(18px, 3vw, 28px);
  position: relative; overflow: hidden; cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s;
}
.cat-card.money::before { background: radial-gradient(circle at top left, rgba(240,165,0,0.08), transparent 60%); }
.cat-card.ai::before    { background: radial-gradient(circle at top left, rgba(72,149,239,0.08), transparent 60%); }
.cat-card.traffic::before { background: radial-gradient(circle at top left, rgba(6,214,160,0.08), transparent 60%); }
.cat-card:hover { transform: translateY(-5px); }
.cat-card.money:hover   { border-color: var(--gold); }
.cat-card.ai:hover      { border-color: var(--blue); }
.cat-card.traffic:hover { border-color: var(--teal); }
.cat-card:hover::before { opacity: 1; }
.cat-icon { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: clamp(12px, 3vw, 18px); display: block; }
.cat-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 3.5vw, 1.6rem); letter-spacing: 2px; margin-bottom: 8px;
}
.cat-card p  { color: var(--muted); font-size: clamp(0.82rem, 2vw, 0.9rem); line-height: 1.6; }
.cat-count {
  position: absolute; top: 14px; right: 14px;
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  padding: 3px 9px; border-radius: 20px; font-weight: 700;
}
.money .cat-count   { background: rgba(240,165,0,0.15); color: var(--gold2); }
.ai .cat-count      { background: rgba(72,149,239,0.15); color: var(--blue); }
.traffic .cat-count { background: rgba(6,214,160,0.15); color: var(--teal); }

/* ════════════════════════════════════════
   REVIEW CARDS
════════════════════════════════════════ */
.filter-bar {
  display: flex; gap: 8px;
  margin: clamp(28px, 5vw, 48px) 0 clamp(18px, 3vw, 32px);
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); padding: 8px 18px; border-radius: 100px;
  cursor: pointer; font-size: clamp(0.8rem, 2.5vw, 0.88rem);
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  min-height: 40px;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold); color: var(--gold2); background: rgba(240,165,0,0.08);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 3vw, 24px);
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(240,165,0,0.3); }

.card-top {
  padding: clamp(14px, 3vw, 22px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 10px;
}
.site-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.site-logo {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.site-name { font-weight: 600; font-size: clamp(0.88rem, 2.5vw, 1rem); }
.site-url  {
  color: var(--muted); font-size: clamp(0.7rem, 2vw, 0.8rem);
  margin-top: 2px; font-family: 'Space Mono', monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px;
}
.badge {
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 8px; border-radius: 6px;
  letter-spacing: 0.5px; white-space: nowrap; flex-shrink: 0;
}
.badge-new { background: rgba(6,214,160,0.15);  color: var(--teal); }
.badge-top { background: rgba(240,165,0,0.15);   color: var(--gold2); }
.badge-hot { background: rgba(255,107,157,0.15); color: var(--pink); }

.card-body { padding: clamp(14px, 3vw, 18px) clamp(14px, 3vw, 22px); flex: 1; }
.stars { display: flex; gap: 3px; margin-bottom: 10px; }
.star { font-size: clamp(0.85rem, 2.5vw, 0.95rem); }
.star.filled { color: var(--gold2); }
.star.empty  { color: var(--border); }
.card-desc { color: var(--muted); font-size: clamp(0.82rem, 2vw, 0.875rem); line-height: 1.65; }
.card-tags { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.tag {
  font-size: clamp(0.68rem, 2vw, 0.75rem); padding: 3px 9px;
  border-radius: 5px; background: var(--surface);
  color: var(--muted); border: 1px solid var(--border);
}

.card-footer {
  padding: clamp(12px, 3vw, 16px) clamp(14px, 3vw, 22px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.rating-score { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--gold2); }
.rating-score span { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: var(--muted); }
.read-btn {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold2); padding: 8px 14px; border-radius: 8px;
  cursor: pointer; font-size: clamp(0.78rem, 2vw, 0.85rem);
  font-weight: 600; transition: background 0.2s, color 0.2s;
  white-space: nowrap; min-height: 40px;
  font-family: 'DM Sans', sans-serif;
}
.read-btn:hover { background: var(--gold); color: #000; }

/* ════════════════════════════════════════
   SUBSCRIBE SECTION
════════════════════════════════════════ */
#subscribe {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
#subscribe::before {
  content: ''; position: absolute;
  width: min(600px, 100vw); height: min(600px, 100vw);
  background: radial-gradient(circle, rgba(240,165,0,0.1) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.subscribe-inner { position: relative; max-width: 600px; margin: 0 auto; }
.subscribe-icon { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 14px; display: block; }
#subscribe h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 6vw, 3.2rem); letter-spacing: 3px; margin-bottom: 14px;
}
#subscribe h2 span {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
#subscribe p { color: var(--muted); line-height: 1.7; font-size: clamp(0.88rem, 2.5vw, 1rem); margin-bottom: clamp(24px, 5vw, 36px); }

.email-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.email-input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); color: var(--text);
  padding: 14px 18px; border-radius: 10px;
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  font-family: 'DM Sans', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--gold); }
.email-input::placeholder { color: var(--muted); }
.subscribe-btn {
  background: linear-gradient(135deg, var(--gold), #c87d00);
  color: #000; font-weight: 700;
  padding: 14px clamp(16px, 4vw, 26px);
  border: none; border-radius: 10px; cursor: pointer;
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif; min-height: 50px;
}
.subscribe-btn:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(240,165,0,0.35); }

.success-msg {
  display: none; margin-top: 18px;
  background: rgba(6,214,160,0.1); border: 1px solid rgba(6,214,160,0.3);
  color: var(--teal); padding: 12px 20px; border-radius: 10px;
  font-size: clamp(0.82rem, 2.5vw, 0.9rem);
}
.success-msg.show { display: block; animation: fadeUp 0.4s ease; }
.subscribers-count { margin-top: 20px; color: var(--muted); font-size: clamp(0.78rem, 2vw, 0.85rem); }
.subscribers-count strong { color: var(--gold2); }

/* ════════════════════════════════════════
   ADMIN EMAIL PANEL
════════════════════════════════════════ */
#emailListPanel {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
#emailListPanel.open { display: flex; }
.panel-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); width: 100%; max-width: 540px;
  max-height: 85vh; overflow: hidden; display: flex; flex-direction: column;
}
.panel-head {
  padding: 18px 22px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.panel-head h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; color: var(--gold2); }
.panel-close {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  width: 40px; height: 40px; border-radius: 8px; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.panel-close:hover { border-color: var(--pink); color: var(--pink); }
.panel-body { padding: 16px 22px; overflow-y: auto; flex: 1; -webkit-overflow-scrolling: touch; }
.email-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border); gap: 10px;
}
.email-item:last-child { border-bottom: none; }
.email-item .em { color: var(--text); font-size: clamp(0.8rem, 2.5vw, 0.9rem); word-break: break-all; }
.email-item .dt { color: var(--muted); font-size: 0.76rem; font-family: 'Space Mono', monospace; white-space: nowrap; }
.panel-empty { color: var(--muted); text-align: center; padding: 40px 0; font-size: 0.9rem; }
.export-btn {
  margin: 14px 22px 18px; background: transparent;
  border: 1px solid var(--teal); color: var(--teal);
  padding: 10px 0; border-radius: 8px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  width: calc(100% - 44px); transition: background 0.2s; min-height: 44px;
}
.export-btn:hover { background: rgba(6,214,160,0.1); }

/* ════════════════════════════════════════
   FULL REVIEW MODAL
════════════════════════════════════════ */
#reviewModal {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(0px, 3vw, 40px) clamp(0px, 2vw, 16px);
}
#reviewModal.open { display: block; }

#reviewModalContent {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: clamp(0px, 2vw, var(--radius));
  width: 100%; max-width: 760px;
  margin: 0 auto clamp(0px, 3vw, 40px);
  overflow: hidden;
  animation: fadeUp 0.3s ease both;
  min-height: 100vh;
}

/* Sticky floating close — always tapable */
.modal-close-sticky {
  display: none;
  position: fixed;
  top: 14px; right: 14px; z-index: 9999;
  background: var(--card);
  border: 2px solid var(--gold);
  color: var(--gold2);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
  transition: background 0.2s;
}
#reviewModal.open .modal-close-sticky { display: flex; }

.modal-header {
  padding: clamp(14px, 3vw, 24px) clamp(16px, 4vw, 28px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--surface);
  position: sticky; top: 0; z-index: 10;
}
.modal-site-info { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.modal-icon {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: 12px; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem); letter-spacing: 2px; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.modal-url {
  display: block; color: var(--teal); font-family: 'Space Mono', monospace;
  font-size: clamp(0.68rem, 2vw, 0.8rem); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.modal-close {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 8px; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.modal-close:hover { border-color: var(--pink); color: var(--pink); }

.modal-body { padding: clamp(16px, 4vw, 28px); }

.modal-rating-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.modal-stars .stars { gap: 4px; }
.modal-stars .star  { font-size: clamp(1rem, 3vw, 1.2rem); }
.modal-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 1.8rem); color: var(--gold2);
}
.modal-score span { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: var(--muted); }
.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.modal-review-text {
  color: var(--text); font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  line-height: 1.8; margin-bottom: 22px;
}
.modal-review-text p  { margin-bottom: 12px; }
.modal-review-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.05rem, 3vw, 1.2rem); letter-spacing: 1px;
  color: var(--gold2); margin: 18px 0 6px;
}

.modal-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 22px;
}
.modal-pros-cons {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: clamp(14px, 3vw, 18px);
}
.modal-pros-cons h4 {
  font-family: 'Space Mono', monospace; font-size: 0.75rem;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.modal-pros-cons ul { list-style: none; }
.modal-pros-cons li {
  font-size: clamp(0.8rem, 2.5vw, 0.875rem); color: var(--text);
  padding: 6px 0; border-bottom: 1px solid var(--border); line-height: 1.5;
}
.modal-pros-cons li:last-child { border-bottom: none; }

.modal-rating-breakdown {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: clamp(14px, 3vw, 20px); margin-bottom: 22px;
}
.modal-rating-breakdown h4 {
  font-family: 'Space Mono', monospace; font-size: 0.75rem;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.rb-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rb-row:last-child { margin-bottom: 0; }
.rb-label { color: var(--text); font-size: clamp(0.75rem, 2vw, 0.85rem); width: 130px; flex-shrink: 0; }
.rb-track { flex: 1; height: 6px; background: var(--border); border-radius: 10px; overflow: hidden; }
.rb-fill  { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 10px; }
.rb-score { color: var(--gold2); font-family: 'Space Mono', monospace; font-size: 0.76rem; width: 26px; text-align: right; }

.modal-cta-section { text-align: center; padding-bottom: 6px; }
.modal-disclaimer  { color: var(--muted); font-size: clamp(0.72rem, 2vw, 0.78rem); margin-bottom: 14px; line-height: 1.5; }
.modal-visit-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), #c87d00);
  color: #000; font-weight: 700;
  padding: clamp(14px, 3vw, 16px) 24px;
  border-radius: 12px; text-decoration: none;
  font-size: clamp(0.9rem, 3vw, 1rem);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(240,165,0,0.3);
  text-align: center;
}
.modal-visit-btn:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(240,165,0,0.5); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer, .site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 8vw, 60px) 5% clamp(24px, 5vw, 36px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 5vw, 48px);
  margin-bottom: clamp(30px, 5vw, 48px);
}
.footer-brand .logo { font-size: clamp(1.4rem, 4vw, 2rem); display: block; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: clamp(0.82rem, 2vw, 0.88rem); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  color: var(--gold2); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: clamp(0.82rem, 2vw, 0.875rem); margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  color: var(--muted); font-size: clamp(0.74rem, 2vw, 0.82rem);
}
.admin-link {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 8px 16px; border-radius: 6px;
  cursor: pointer; font-size: 0.8rem; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif; min-height: 40px;
}
.admin-link:hover { border-color: var(--gold); color: var(--gold2); }

/* ════════════════════════════════════════
   WORDPRESS SPECIFIC
════════════════════════════════════════ */
.alignleft  { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.screen-reader-text { position: absolute; left: -9999px; }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   HAMBURGER — desktop hidden
════════════════════════════════════════ */
.nav-toggle { display: none; }

/* ════════════════════════════════════════
   TABLET  (max 1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════
   MOBILE  (max 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Show hamburger, hide desktop links */
  .nav-toggle { display: flex; }
  .nav-links  {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,9,16,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 5% 28px;
    gap: 4px; z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    margin-top: 8px; text-align: center;
    padding: 12px 0 !important; border-radius: 10px;
    display: block;
  }

  /* Hero — full height on mobile */
  .hero { min-height: 90vh; padding: 50px 5% 40px; }

  /* Grids — single column on mobile */
  .reviews-grid { grid-template-columns: 1fr; }
  .cat-grid     { grid-template-columns: 1fr; }

  /* Email form — stacked */
  .email-form { flex-direction: column; }
  .subscribe-btn { width: 100%; }

  /* Hero buttons — full width */
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Modal — full screen */
  #reviewModal { padding: 0; }
  #reviewModalContent {
    border-radius: 0; border-left: none; border-right: none;
    min-height: 100vh; margin: 0;
    max-width: 100%;
  }
  .modal-header { padding: 12px 14px; }
  .modal-body   { padding: 14px; }
  .modal-two-col { grid-template-columns: 1fr; }
  .modal-icon   { width: 42px; height: 42px; min-width: 42px; font-size: 1.3rem; }
  .rb-label     { width: 100px; }
}

/* ════════════════════════════════════════
   SMALL MOBILE  (max 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats { gap: 16px; }
  .cat-count { display: none; }
}
