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

/* CSS Variables */
:root {
  --background: 0 0% 100%;
  --foreground: 150 10% 15%;
  --card: 0 0% 100%;
  --card-foreground: 150 10% 15%;
  --popover: 0 0% 100%;
  --popover-foreground: 150 10% 15%;
  --primary: 145 80% 42%;
  --primary-foreground: 0 0% 100%;
  --secondary: 145 60% 95%;
  --secondary-foreground: 145 80% 25%;
  --muted: 150 10% 96%;
  --muted-foreground: 150 10% 45%;
  --accent: 45 100% 50%;
  --accent-foreground: 0 0% 10%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 150 20% 90%;
  --input: 150 20% 90%;
  --ring: 145 80% 42%;
  --radius: 0.75rem;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --gradient-primary: linear-gradient(135deg, hsl(145, 80%, 42%) 0%, hsl(145, 70%, 35%) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
  --gradient-card: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(45, 100%, 50%) 0%, hsl(35, 100%, 45%) 100%);
  --shadow-glow: 0 0 30px hsl(145 80% 42% / 0.4);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Base Styles */
*, *::before, *::after { box-sizing: border-box; border: 0; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 1rem;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--gradient-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-logo .logo-accent {
  color: hsl(var(--accent));
}
.navbar-links {
  display: none;
  gap: 2rem;
}
.navbar-links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary-foreground) / 0.9);
  transition: color 0.3s;
}
.navbar-links a:hover {
  color: hsl(var(--primary-foreground));
}
.navbar-cta {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
}
.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--gradient-accent);
  color: hsl(var(--accent-foreground));
}
.btn-accent:hover {
  box-shadow: 0 0 30px hsl(45 100% 50% / 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid hsl(var(--primary-foreground) / 0.5);
  color: hsl(var(--primary-foreground));
}
.btn-outline:hover {
  background: hsl(var(--primary-foreground) / 0.1);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: hsl(var(--primary-foreground));
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: hsl(var(--primary));
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem 1rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary) / 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
}
.hero h1 .text-accent { color: hsl(var(--accent)); }
.hero h1 .text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--accent) / 0.2);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 600;
}
.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.hero-links a {
  color: hsl(var(--primary-foreground) / 0.8);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}
.hero-links a:hover { color: hsl(var(--accent)); }
.hero-links .separator {
  color: hsl(var(--primary-foreground) / 0.4);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

/* Section Styles */
.section {
  padding: 4rem 0;
}
.section-alt {
  background: hsl(var(--secondary));
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}
.section-title .text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-description {
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* Game Card */
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s;
}
.game-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}
.game-card-image {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  transition: transform 0.7s;
}
.game-card:hover .game-card-image { transform: scale(1.1); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
}
.game-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.game-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.game-card-icon {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
}
.game-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.5rem;
}
.game-card-description {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  margin-bottom: 1rem;
}

/* Feature Card */
.feature-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: hsl(var(--primary) / 0.3);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  color: hsl(var(--primary-foreground));
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}
.feature-link:hover { color: hsl(var(--primary) / 0.8); }

/* Promotion Card */
.promo-card {
  position: relative;
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}
.promo-card-default {
  background: hsl(var(--card));
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
}
.promo-card-default:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: hsl(var(--primary) / 0.3);
}
.promo-card-featured {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
}
.promo-card-featured:hover {
  transform: translateY(-12px);
}
.promo-card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}
.promo-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.promo-card-default .promo-icon { background: hsl(var(--primary) / 0.1); }
.promo-card-featured .promo-icon { background: hsl(var(--primary-foreground) / 0.2); }
.promo-icon svg {
  width: 28px;
  height: 28px;
}
.promo-card-default .promo-icon svg { color: hsl(var(--primary)); }
.promo-card-featured .promo-icon svg { color: hsl(var(--primary-foreground)); }
.promo-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.promo-card-default .promo-value {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.promo-card-featured .promo-value { color: hsl(var(--accent)); }
.promo-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.promo-description {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.promo-card-default .promo-description { color: hsl(var(--muted-foreground)); }
.promo-card-featured .promo-description { color: hsl(var(--primary-foreground) / 0.8); }

/* Blog Section */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}
.blog-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}
.blog-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-card-image {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-image { transform: scale(1.05); }
.blog-card-content { padding: 1.25rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.blog-card-category {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}
.blog-card-readtime {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.blog-card:hover .blog-card-title { color: hsl(var(--primary)); }
.blog-card-excerpt {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.blog-card-date, .blog-card-views {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Blog Loading/Error States */
#blog-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid hsl(var(--muted));
  border-top-color: hsl(var(--primary));
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
#blog-error {
  display: none;
  text-align: center;
  padding: 4rem;
  color: hsl(var(--muted-foreground));
}
#blog-error.active { display: block; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.pagination-btn {
  padding: 0.5rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
}
.pagination-btn:hover:not(:disabled) {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-info {
  padding: 0.5rem 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}
.pagination-jump {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination-input {
  width: 60px;
  padding: 0.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-item {
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: var(--shadow-hover);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: color 0.3s;
}
.faq-question:hover { color: hsl(var(--primary)); }
.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1rem;
  color: hsl(var(--muted-foreground));
}
.faq-item.active .faq-answer { display: block; }
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(var(--primary));
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.footer-links a {
  display: block;
  color: hsl(var(--primary-foreground) / 0.8);
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: hsl(var(--primary-foreground)); }
.footer-awards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.75rem;
}
.footer-award {
  text-align: center;
  padding: 0.75rem;
  background: hsl(var(--primary-foreground) / 0.1);
  border-radius: var(--radius);
  transition: background 0.3s;
}
.footer-award:hover { background: hsl(var(--primary-foreground) / 0.2); }
.footer-award-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--accent));
}
.footer-award-subtitle {
  font-size: 0.625rem;
  color: hsl(var(--primary-foreground) / 0.7);
  margin-top: 0.25rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.2);
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: hsl(var(--primary-foreground) / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.footer-social a:hover { background: hsl(var(--primary-foreground) / 0.2); }
.footer-disclaimer {
  background: hsl(var(--foreground) / 0.2);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-disclaimer p {
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.7);
  max-width: 900px;
  margin: 0 auto 0.5rem;
}
.footer-bottom {
  border-top: 1px solid hsl(var(--primary-foreground) / 0.2);
  padding: 1rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: hsl(var(--muted));
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.breadcrumb-list a {
  color: hsl(var(--primary));
  transition: color 0.3s;
}
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-separator { color: hsl(var(--muted-foreground)); }
.breadcrumb-current { color: hsl(var(--muted-foreground)); }

/* CTA Banner */
.cta-banner {
  background: var(--gradient-primary);
  padding: 4rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  color: hsl(var(--primary-foreground));
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: hsl(var(--primary-foreground) / 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Related Links */
.related-links {
  display: grid;
  gap: 1.5rem;
}
.related-link {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}
.related-link:hover {
  border-color: hsl(var(--primary) / 0.5);
}
.related-link h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.related-link:hover h3 { color: hsl(var(--primary)); }
.related-link p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }

/* Responsive */
@media (min-width: 768px) {
  .navbar .container { height: 80px; }
  .navbar-links { display: flex; }
  .navbar-cta { display: block; }
  .mobile-menu-btn { display: none; }
  .hero { padding-top: 80px; }
  .hero h1 { font-size: 3.5rem; }
  .hero-stat-value { font-size: 2.5rem; }
  .section-title { font-size: 2.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .related-links { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4rem; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 5fr 5fr; }
  .related-links { grid-template-columns: repeat(4, 1fr); }
}

/* noscript fallback */
noscript .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
noscript .blog-card-static {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid hsl(var(--border));
}
