/* ==========================================================================
   TikTokProxy.top - Main CSS Stylesheet
   Design Tokens & Modern Dark Theme Architecture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #08090e;
  --bg-card: #11131f;
  --bg-card-hover: #181b2c;
  --bg-glass: rgba(17, 19, 31, 0.75);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(37, 244, 238, 0.3);

  /* TikTok Brand Accents */
  --primary-cyan: #25f4ee;
  --primary-pink: #fe2c55;
  --primary-gradient: linear-gradient(135deg, #25f4ee 0%, #fe2c55 100%);
  --gold-accent: #ffb800;
  --green-online: #00e676;

  /* Typography */
  --text-main: #f0f2f8;
  --text-muted: #8e95ad;
  --text-white: #ffffff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 25px rgba(37, 244, 238, 0.25);
  --shadow-glow-pink: 0 0 25px rgba(254, 44, 85, 0.25);
  --shadow-top1: 0 0 35px rgba(255, 184, 0, 0.2);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(37, 244, 238, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 45%, rgba(254, 44, 85, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(37, 244, 238, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-white);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.logo-brand .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  box-shadow: var(--shadow-glow-cyan);
}

.logo-brand span.highlight {
  color: var(--primary-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-cyan);
  border-radius: var(--radius-pill);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #08090e;
  box-shadow: 0 4px 15px rgba(37, 244, 238, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 44, 85, 0.4);
  color: #08090e;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-rockhoster-gold {
  background: linear-gradient(135deg, #ffb800 0%, #ff8800 100%);
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(255, 184, 0, 0.4);
}

.btn-rockhoster-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.6);
  color: #000;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.82rem;
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 244, 238, 0.1);
  border: 1px solid rgba(37, 244, 238, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--primary-cyan);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 35px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 30px auto 0;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  transition: transform var(--transition-fast);
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 244, 238, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-cyan);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* TOP POSITION #1 SPOTLIGHT CARD - ROCKHOSTER */
.spotlight-top1 {
  background: linear-gradient(145deg, rgba(255, 184, 0, 0.08) 0%, rgba(17, 19, 31, 0.95) 50%, rgba(37, 244, 238, 0.05) 100%);
  border: 2px solid #ffb800;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px 0 50px;
  box-shadow: var(--shadow-top1);
  position: relative;
  overflow: hidden;
}

.spotlight-top1::before {
  content: '👑 TOP RANKED #1 PROVIDER';
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #ffb800, #ff8800);
  color: #000;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 20px;
  border-bottom-left-radius: var(--radius-md);
  letter-spacing: 0.5px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  gap: 28px;
  align-items: center;
}

.spotlight-brand {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 184, 0, 0.2);
}

.spotlight-logo-container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.spotlight-logo-container img {
  max-height: 55px;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
}

.status-online-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-online);
  background: rgba(0, 230, 118, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green-online);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-online);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.spotlight-info h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.spotlight-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.spotlight-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

.spotlight-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-badge-large {
  text-align: center;
}

.rating-score-large {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-accent);
  line-height: 1;
}

.stars {
  color: var(--gold-accent);
  font-size: 0.95rem;
  margin-top: 4px;
}

.price-tag-spotlight {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-tag-spotlight strong {
  color: var(--primary-cyan);
  font-size: 1.2rem;
}

/* Filter & Controls Bar */
.filter-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 30px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 12px 16px 12px 42px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--primary-cyan);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.filter-select {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-cyan);
}

.filter-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.filter-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-chip:hover,
.filter-chip.active {
  background: rgba(37, 244, 238, 0.15);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  font-weight: 600;
}

/* Leaderboard Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 950px;
}

.leaderboard-table th {
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 20px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
}

.leaderboard-table tr {
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-fast);
}

.leaderboard-table tbody tr:hover {
  background-color: var(--bg-card-hover);
}

.leaderboard-table tr.row-top1 {
  background: linear-gradient(90deg, rgba(255, 184, 0, 0.07) 0%, rgba(17, 19, 31, 0.95) 100%);
  border-left: 4px solid #ffb800;
}

.leaderboard-table tr.row-top1:hover {
  background: linear-gradient(90deg, rgba(255, 184, 0, 0.12) 0%, rgba(24, 27, 44, 0.95) 100%);
}

.leaderboard-table td {
  padding: 18px 20px;
  vertical-align: middle;
  font-size: 0.9rem;
}

.rank-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-muted);
  width: 40px;
  text-align: center;
}

.rank-number.rank-1 {
  color: var(--gold-accent);
  font-size: 1.4rem;
}

.provider-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.provider-logo-sm {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.provider-logo-sm img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.provider-name-wrap {
  display: flex;
  flex-direction: column;
}

.provider-name-title {
  font-weight: 700;
  color: var(--text-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-top {
  background: #ffb800;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-verified {
  background: rgba(37, 244, 238, 0.15);
  color: var(--primary-cyan);
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.provider-type-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.table-score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-cyan);
}

.table-price {
  font-weight: 600;
  color: var(--text-white);
}

.table-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Review Page & Modal Layout */
.review-header-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
  margin-bottom: 30px;
}

.review-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.review-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.review-pro-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.pro-box {
  background: rgba(0, 230, 118, 0.05);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
}

.con-box {
  background: rgba(254, 44, 85, 0.05);
  border: 1px solid rgba(254, 44, 85, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
}

.pro-box h4 { color: var(--green-online); margin-bottom: 10px; }
.con-box h4 { color: var(--primary-pink); margin-bottom: 10px; }

.pro-box ul li, .con-box ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.pro-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green-online); }
.con-box ul li::before { content: '✕'; position: absolute; left: 0; color: var(--primary-pink); }

/* Typography & Content Layout for 1200+ Word Reviews & Blog */
.article-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #d1d5e6;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-white);
  margin: 35px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-cyan);
  margin: 25px 0 12px;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body ul, .article-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body code {
  background: rgba(0, 0, 0, 0.4);
  color: var(--primary-cyan);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}

.article-body pre {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 20px 0;
  font-size: 0.9rem;
}

.info-callout {
  background: rgba(37, 244, 238, 0.07);
  border-left: 4px solid var(--primary-cyan);
  padding: 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

/* Coupon Code Box */
.coupon-box {
  background: rgba(255, 184, 0, 0.08);
  border: 1px dashed #ffb800;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.coupon-code {
  font-family: monospace;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold-accent);
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 1px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 244, 238, 0.3);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, #181b2c 0%, #0d0e15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 3rem;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  font-size: 0.75rem;
  color: var(--primary-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

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

/* FAQ Accordion */
.faq-section {
  padding: 60px 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-cyan);
}

/* Interactive Ping Tester Tool Widget */
.ping-tool-widget {
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.05) 0%, rgba(17, 19, 31, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 50px 0;
  text-align: center;
}

.ping-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.ping-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.ping-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-online);
}

/* Footer */
.site-footer {
  background: #040508;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  margin-top: 80px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  font-size: 0.88rem;
}

.footer-col h5 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
}

.footer-col ul li a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
}

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--primary-cyan);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-cyan);
  z-index: 999;
  font-weight: 600;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title { font-size: 2.4rem; }
  .spotlight-grid { grid-template-columns: 1fr; text-align: center; }
  .spotlight-cta { flex-direction: row; }
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-grid-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
  }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2rem; }
  .filter-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-pro-con { grid-template-columns: 1fr; }
}
