:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 221.2 83.2% 53.3%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96%;
    --secondary-foreground: 222.2 84% 4.9%;
    --muted: 极速赛车开奖直播历史记录 210 40% 96%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96%;
    --accent-foreground: 222.2 84% 4.9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 极速赛车开奖直播历史记录 31.8% 91.4%;
    --ring: 221.2 83.2% 53.3%;
    --radius: 0.5rem;
    --success: 142.1 76.2% 36.3%;
    
    --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-hero: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    --gradient-card: linear-gradient(135deg, #ffffff, #f9fafb);
    --gradient-button: linear-gradient(135deg, #3b82f6, #8b5cf6);
    
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
    --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-button: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.15);
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #0073e6;
}

.navbar .cta-btn {
  background: #0073e6;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.navbar .cta-btn:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar ul li a {
    display: block;
    padding: 0.5rem 0;
  }

  .navbar .cta-btn {
    margin-top: 0.8rem;
    align-self: flex-start;
  }
}


.dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 217.2 91.2% 59.8%;
    --primary-foreground: 222.2 84% 4.9%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 224.3 76.3% 94.1%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0 solid;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
nav {
    background-color: hsl(var(--card)/0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(var(--border));
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: hsl(var(--foreground));
    text-decoration: none;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
    font-weight: bold;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: hsl(var(--primary));
}

.nav-button {
    background: var(--gradient-button);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: var(--shadow-button);
    transition: all 0.2s;
}

.nav-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: block;
    background: none;
    color: hsl(var(--foreground));
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: var(--gradient-hero);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border: 1px solid hsl(var(--border));
}

.badge-success {
    background-color: hsl(var(--success)/0.2);
    color: hsl(var(--success));
    border-color: hsl(var(--success)/0.3);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.button-cta {
    background: var(--gradient-button);
    color: white;
    box-shadow: var(--shadow-button);
}

.button-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(59, 130, 246, 0.4);
}

.button-outline {
    background: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.button-outline:hover {
    background: hsl(var(--accent));
}

/* Features Section */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 极速赛车开奖直播历史记录 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--极速赛车开奖直播历史记录 gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: hsl(var(--muted-foreground));
}

/* Testimonials */
.testimonials {
    background-color: hsl(var(--card));
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: hsl(var(--muted-foreground));
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-result {
    color: hsl(var(--success));
    font-weight: 700;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-description {
    color: hsl(var(--muted-foreground));
    max-width: 350px;
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    border-top: 1px solid hsl(var(--border));
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.75rem;
    }
    
    .hero {
        padding: 8rem 0;
    }
    
    .section {
        padding: 8rem 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
/* ===========================
   Blog / Articles Styling
   =========================== */

/* Article Hero Section */
.article-hero {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-bottom: 1px solid hsl(var(--border));
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.article-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.article-hero .overlay h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.article-hero .overlay p {
  font-size: 1.125rem;
  max-width: 700px;
  opacity: 0.9;
}

/* Article Container */ .article-container { max-width: 900px; margin: 0 auto; padding: 4rem 1rem; } .article-container article h2 { font-size: 1.75rem; font-weight: 700; margin: 2rem 0 1rem; } .article-container article h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 0.75rem; } .article-container article p { margin-bottom: 1rem; font-size: 1.05rem; color: hsl(var(--foreground) / 0.9); } /* Call to Action Buttons inside articles */ .article-container .btn-primary { display: inline-block; margin: 2rem 0; padding: 0.75rem 1.5rem; border-radius: var(--radius); background: var(--gradient-button); color: white; font-weight: 600; text-decoration: none; box-shadow: var(--shadow-button); transition: all 0.2s ease; } .article-container .btn-primary:hover { transform: translateY(-2px); opacity: 0.95; } /* FAQ Section */ .article-container details { margin: 1rem 0; border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 0.75rem 1rem; background: hsl(var(--card)); cursor: pointer; transition: all 0.2s; } .article-container details summary { font-weight: 600; color: hsl(var(--foreground)); } .article-container details p { margin-top: 0.75rem; font-size: 0.95rem; color: hsl(var(--muted-foreground)); } /* Navigation Between Articles */ .article-navigation { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid hsl(var(--border)); padding-top: 2rem; margin-top: 3rem; } .article-navigation a { color: hsl(var(--primary)); font-weight: 600; text-decoration: none; transition: color 0.2s; } .article-navigation a:hover { color: hsl(var(--primary-foreground)); } /* Responsive Article Styles */ @media (min-width: 768px) { .article-hero { height: 450px; } .article-hero .overlay h1 { font-size: 3rem; } } /* Blog Grid */ .blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1rem; max-width: 1200px; margin: 0 auto; } @media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } } /* Blog Card */ .blog-card { background: var(--card); border: 1px solid hsl(var(--border)); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.3s, box-shadow 0.3s; } .blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); } .blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s ease; } .blog-card:hover img { transform: scale(1.05); } .blog-content { padding: 1.5rem; } .blog-content h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: hsl(var(--foreground)); transition: color 0.2s; } .blog-link { text-decoration: none; color: inherit; } .blog-link:hover h2 { color: hsl(var(--primary)); } /* Blog Section Logo Styling */
.blog-header .site-logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}
.blog-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Default Logo */
.site-logo img {
  content: url('/images/logo-dark.png');
}

/* If blog has dark hero background */
.blog-hero.dark .site-logo img {
  content: url('/images/logo-light.png');
}

.blog-header {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--background); /* or transparent if hero image */
  border-bottom: 1px solid hsl(var(--border));
}
 .blog-content p { color: hsl(var(--muted-foreground)); margin-bottom: 1rem; } /* Blog Read More Buttons */ .btn-readmore { display: inline-block; padding: 0.5rem 1rem; border-radius: var(--radius); background: hsl(var(--accent)); color: hsl(var(--foreground)); font-size: 0.875rem; font-weight: 600; text-decoration: none; border: 1px solid hsl(var(--border)); transition: all 0.2s ease; } .btn-readmore:hover { background: hsl(var(--primary)); color: white; border-color: hsl(var(--primary)); } /* About Page */ .about-hero { background: var(--gradient-hero); padding: 6rem 1rem; text-align: center; } .about-hero h1 { font-size: 2.5rem; margin: 1rem 0; } .about-hero p { max-width: 700px; margin: 0 auto 2rem; color: hsl(var(--muted-foreground)); font-size: 1.125rem; } .about-story .subtitle, .stats .subtitle { font-size: 1.125rem; color: hsl(var(--muted-foreground)); margin-bottom: 2rem; text-align: center; } .story-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; } .story-card { background: var(--card); border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-card); transition: transform 0.3s; } .story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); } .stats-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); margin-top: 2rem; } .stat { background: var(--card); border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow-card); } .stat h3 { font-size: 2rem; font-weight: 800; color: hsl(var(--primary)); } .stat p { color: hsl(var(--muted-foreground)); } @media (min-width: 768px) { .story-grid { grid-template-columns: repeat(2, 1fr); } .stats-grid { grid-template-columns: repeat(4, 1fr); } } /* Product Review Page */ .review-hero { background: var(--gradient-hero); padding: 6rem 1rem; text-align: center; } .review-hero h1 { font-size: 2.5rem; margin: 1rem 0; } .review-hero p { max-width: 700px; margin: 0 auto 1.5rem; color: hsl(var(--muted-foreground)); } .review-rating { font-size: 1.125rem; margin-bottom: 2rem; color: hsl(var(--foreground)); } .pros-cons-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; } .pros-cons-grid ul { list-style: none; padding-left: 0; } .pros-cons-grid li { margin-bottom: 0.5rem; color: hsl(var(--foreground) / 0.9); } .pros h3 { color: hsl(var(--success)); } .cons h3 { color: hsl(var(--destructive)); } .review-verdict { background: var(--gradient-primary); color: white; text-align: center; padding: 5rem 1rem; } .review-verdict p { max-width: 700px; margin: 1rem auto 2rem; font-size: 1.125rem; opacity: 0.95; } .review-verdict .verdict-tags { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; } @media (min-width: 768px) { .pros-cons-grid { grid-template-columns: 1fr 1fr; } } /* Contact Page */ .contact-hero { background: var(--gradient-hero); padding: 5rem 1rem; text-align: center; } .contact-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; } .contact-hero p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); max-width: 700px; margin: 0 auto; } .contact-form { max-width: 700px; margin: 0 auto; background: var(--card); border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-card); } .form-group { margin-bottom: 1.5rem; display: flex; flex-direction: column; } .form-group label { margin-bottom: 0.5rem; font-weight: 600; color: hsl(var(--foreground)); } .form-group input, .form-group select, .form-group textarea { padding: 0.75rem 1rem; border: 1px solid hsl(var(--border)); border-radius: var(--radius); font-size: 1rem; background: hsl(var(--background)); color: hsl(var(--foreground)); transition: border 0.2s, box-shadow 0.2s; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsl(var(--primary)/0.2); outline: none; } .contact-form button { width: 100%; padding: 1rem; font-size: 1rem; font-weight: 600;


/* About Page */
.about-hero {
  background: var(--gradient-hero);
  padding: 6rem 1rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.about-hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

.about-story .subtitle,
.stats .subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  text-align: center;
}

.story-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.story-card {
  background: var(--card);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.stat {
  background: var(--card);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: hsl(var(--primary));
}

.stat p {
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Review Page */
.review-hero {
  background: var(--gradient-hero);
  padding: 6rem 1rem;
  text-align: center;
}

.review-hero h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.review-hero p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: hsl(var(--muted-foreground));
}

.review-rating {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: hsl(var(--foreground));
}

.pros-cons-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.pros-cons-grid ul {
  list-style: none;
  padding-left: 0;
}

.pros-cons-grid li {
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground) / 0.9);
}

.pros h3 {
  color: hsl(var(--success));
}

.cons h3 {
  color: hsl(var(--destructive));
}

.review-verdict {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.review-verdict p {
  max-width: 700px;
  margin: 1rem auto 2rem;
  font-size: 1.125rem;
  opacity: 0.95;
}

.review-verdict .verdict-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Page */
.contact-hero {
  background: var(--gradient-hero);
  padding: 5rem 1rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 1rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: border 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary)/0.2);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
}
