/* Win777 Vietnam - Modern Casino Design
   Primary: Red (lucky/fortune)
   Accent: Gold (wealth)
   Dynamic, varied layouts
*/

:root {
  /* Brand - Red & Gold Vietnamese theme */
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #ef4444;
  --accent-gold: #fbbf24;
  --accent-gold-dark: #d97706;
  --accent-gold-light: #fcd34d;

  /* Dark backgrounds */
  --dark-bg: #0c0a09;
  --darker-bg: #050403;
  --card-bg: #1c1917;
  --card-bg-hover: #292524;

  /* Text */
  --text-primary: #fafaf9;
  --text-secondary: #d6d3d1;
  --text-muted: #a8a29e;

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-light: rgba(255, 255, 255, 0.15);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --gradient-dark: linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
  --gradient-card: linear-gradient(145deg, #1c1917 0%, #141210 100%);
  --gradient-hero: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(251, 191, 36, 0.08) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow-red: 0 0 24px rgba(220, 38, 38, 0.35);
  --shadow-glow-gold: 0 0 24px rgba(251, 191, 36, 0.3);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow: 0.5s ease;

  /* Typography */
  --font-primary: 'Be Vietnam Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Be Vietnam Pro', 'Inter', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }

/* Container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 960px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  border: none; border-radius: var(--radius-md); cursor: pointer;
  transition: all var(--transition-normal);
}
.btn--primary { background: var(--gradient-primary); color: white; box-shadow: var(--shadow-md); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-red); color: white; }
.btn--gold { background: var(--gradient-gold); color: var(--dark-bg); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-gold); color: var(--dark-bg); }
.btn--outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: white; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.75rem; }

/* SVG Icons */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.1em; fill: currentColor; }
.icon--menu { width: 24px; height: 24px; }
.feature-card__icon .icon, .feature-card__icon svg { width: 32px; height: 32px; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(12, 10, 9, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1400px; margin: 0 auto;
}
.logo { display: flex; align-items: center; font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.logo img { height: 42px; width: auto; }
.logo:hover { color: var(--text-primary); }
.logo__text { color: var(--primary); }

/* Navigation */
.nav__list { display: none; list-style: none; gap: 0.5rem; }
@media (min-width: 1024px) { .nav__list { display: flex; } }
.nav__link {
  display: block; padding: 0.5rem 1rem; color: var(--text-secondary);
  font-weight: 500; font-size: 0.875rem; border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.nav__link:hover, .nav__link--active { color: var(--text-primary); background: rgba(220, 38, 38, 0.15); }
.nav__link--active { color: var(--primary); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex; align-items: center; justify-content: center;
  min-width: 48px; min-height: 48px; width: 48px; height: 48px;
  background: var(--card-bg); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); color: var(--text-primary);
  cursor: pointer; touch-action: manipulation;
}
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 73px; left: 0; right: 0; bottom: 0;
  background: var(--dark-bg); padding: 1.5rem; z-index: 1001;
  overflow-y: auto; transform: translateX(-100%);
  transition: transform var(--transition-normal), visibility var(--transition-normal);
  visibility: hidden;
}
.mobile-menu.active { transform: translateX(0); visibility: visible; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu__list { list-style: none; }
.mobile-menu__link {
  display: block; padding: 1rem; color: var(--text-secondary);
  font-size: 1.125rem; font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu__link:hover, .mobile-menu__link--active { color: var(--primary); }

/* Hero */
.hero {
  position: relative; padding: 8rem 0 5rem;
  background: var(--gradient-dark);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero__content { position: relative; text-align: center; max-width: 900px; margin: 0 auto; }
.hero__badge {
  display: inline-block; padding: 0.5rem 1.25rem;
  background: rgba(220, 38, 38, 0.25); color: var(--primary-light);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; border-radius: var(--radius-2xl);
  margin-bottom: 1.5rem; border: 1px solid rgba(220, 38, 38, 0.4);
}
.hero__title {
  font-size: 2.5rem; margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #fafaf9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }
.hero__subtitle { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero__actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 480px) { .hero__actions { flex-direction: row; flex-wrap: wrap; } }

/* Section */
.section { padding: 4rem 0; }
.section--dark { background: var(--darker-bg); }
.section--accent { background: linear-gradient(180deg, rgba(220, 38, 38, 0.06) 0%, transparent 100%); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__title { margin-bottom: 0.5rem; }
.section__subtitle { color: var(--text-muted); font-size: 1.125rem; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Cards Grid - Varied layouts */
.cards-grid {
  display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }
.cards-grid--2 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) { .cards-grid--2 { grid-template-columns: repeat(2, 1fr); } }
.cards-grid--3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .cards-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* Game Card */
.game-card {
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition-normal);
}
.game-card:hover {
  transform: translateY(-4px); border-color: var(--primary);
  box-shadow: var(--shadow-glow-red);
}
.game-card__image {
  position: relative; aspect-ratio: 16/10;
  background: var(--card-bg); overflow: hidden;
}
.game-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-normal); }
.game-card:hover .game-card__image img { transform: scale(1.06); }
.game-card__badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.75rem; background: var(--gradient-gold);
  color: var(--dark-bg); font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; border-radius: var(--radius-sm);
}
.game-card__content { padding: 1rem; }
.game-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.game-card__provider { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.game-card__info { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-secondary); }

/* Feature Card */
.feature-card {
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: all var(--transition-normal);
}
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow-red); }
.feature-card__icon {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  background: rgba(220, 38, 38, 0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-card__title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.feature-card__text { color: var(--text-secondary); font-size: 0.875rem; }

/* Stats Grid */
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
  transition: all var(--transition-normal);
}
.stat-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.stat-card__value { font-size: 1.75rem; font-weight: 800; color: var(--accent-gold); margin-bottom: 0.25rem; }
.stat-card__label { font-size: 0.875rem; color: var(--text-muted); }

/* RTP Grid */
.rtp-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 768px) { .rtp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rtp-grid { grid-template-columns: repeat(4, 1fr); } }
.rtp-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.25rem;
  transition: all var(--transition-normal); color: inherit;
}
.rtp-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow-red); }
.rtp-card__value { font-size: 1.5rem; font-weight: 800; color: var(--accent-gold); white-space: nowrap; }
.rtp-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.rtp-card__provider { font-size: 0.75rem; color: var(--text-muted); }

/* League / Sports Predictions */
.league-predictions { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .league-predictions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .league-predictions { grid-template-columns: repeat(3, 1fr); } }
.league-card {
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
}
.league-card__header {
  padding: 1rem 1.25rem; background: rgba(220, 38, 38, 0.15);
  font-weight: 700; font-size: 1rem; color: var(--primary-light);
}
.league-card__match {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-color);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem;
}
.league-card__match:last-child { border-bottom: none; }
.league-card__odds { display: flex; gap: 0.75rem; }
.league-card__odd {
  padding: 0.35rem 0.75rem; background: rgba(251, 191, 36, 0.15);
  color: var(--accent-gold); font-weight: 600; font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Tournament Card */
.tournament-card {
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all var(--transition-normal);
}
.tournament-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-glow-gold); }
.tournament-card__header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.5rem; }
.tournament-card__title { font-size: 1.125rem; font-weight: 700; }
.tournament-card__badge {
  padding: 0.25rem 0.75rem; background: var(--gradient-gold);
  color: var(--dark-bg); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; border-radius: var(--radius-sm);
}
.tournament-card__prize { font-size: 1.25rem; font-weight: 800; color: var(--accent-gold); }
.tournament-card__meta { font-size: 0.875rem; color: var(--text-muted); }

/* Promo Card */
.promo-card {
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition-normal);
}
.promo-card:hover { border-color: var(--accent-gold); }
.promo-card__image { aspect-ratio: 16/9; background: var(--card-bg); overflow: hidden; }
.promo-card__image img { width: 100%; height: 100%; object-fit: cover; }
.promo-card__content { padding: 1.25rem; flex: 1; }
.promo-card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.promo-card__excerpt { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1rem; }
.promo-card__cta { font-size: 0.875rem; font-weight: 600; color: var(--accent-gold); }

/* Payment Icons */
.payments-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
}
.payment-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem 1.5rem; background: var(--gradient-card);
  border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}
.payment-item:hover { border-color: var(--primary); }
.payment-item__icon { width: 48px; height: 48px; }
.payment-item__name { font-size: 0.875rem; font-weight: 600; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
  border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
}
.cta-banner__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .cta-banner__inner { flex-direction: row; justify-content: space-between; }
}
.cta-banner__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.cta-banner__subtitle { font-size: 0.875rem; color: var(--text-secondary); }

/* News Card */
.news-card {
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition-normal);
}
a.news-card { display: block; color: inherit; }
.news-card:hover { border-color: var(--primary); }
.news-card__image { aspect-ratio: 16/10; background: var(--card-bg); overflow: hidden; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; }
.news-card__content { padding: 1.25rem; }
.news-card__category { font-size: 0.7rem; font-weight: 600; color: var(--primary); text-transform: uppercase; margin-bottom: 0.5rem; }
.news-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.news-card__excerpt { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
.news-card__meta { font-size: 0.75rem; color: var(--text-muted); }

/* Layout variations */
.layout-split {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 1024px) {
  .layout-split { grid-template-columns: 1fr 1fr; align-items: center; }
}
.layout-split--reverse { direction: rtl; }
.layout-split--reverse > * { direction: ltr; }

/* Footer */
.footer { background: var(--darker-bg); padding: 4rem 0 2rem; border-top: 1px solid var(--border-color); }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand p { font-size: 0.875rem; color: var(--text-secondary); margin-top: 1rem; max-width: 280px; }
.footer__column h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--text-primary); }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { color: var(--text-secondary); font-size: 0.875rem; }
.footer__links a:hover { color: var(--primary); }
.trust-links { margin-bottom: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.trust-links__title { font-size: 1rem; margin-bottom: 1rem; color: var(--text-primary); }
.trust-links__grid { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; }
.trust-links__item { font-size: 0.8rem; color: var(--text-muted); }
.trust-links__item:hover { color: var(--primary); }
.responsible-gaming { margin-bottom: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.responsible-gaming__title { font-size: 1rem; margin-bottom: 0.5rem; }
.responsible-gaming__text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.responsible-gaming__text a { color: var(--primary); }
.footer__bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-color); }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.8rem; color: var(--text-muted); }

/* Mobile Platform Section */
.mobile-platform {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .mobile-platform { grid-template-columns: 1fr 1fr; }
}
.mobile-platform__features { display: flex; flex-direction: column; gap: 1rem; }
.mobile-platform__feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; background: var(--gradient-card);
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
}
.mobile-platform__feature-icon { flex-shrink: 0; }
.mobile-platform__feature h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.mobile-platform__feature p { font-size: 0.875rem; color: var(--text-secondary); }

/* Content page */
.content-page__content { max-width: 800px; margin: 0 auto; }
.content-page__content h3 { font-size: 1.5rem; margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary); }
.content-page__content p { margin-bottom: 1rem; }
.content-page__content ul { margin: 1rem 0; padding-left: 1.5rem; }
.content-page__content li { margin-bottom: 0.5rem; }

/* SEO Content - Listicles, Steps, Infographics */
.seo-content { max-width: 900px; margin: 0 auto; }
.seo-content h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary); }
.seo-content h3 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.seo-content h4 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; color: var(--accent-gold); }
.seo-content p { margin-bottom: 1rem; line-height: 1.7; }
.seo-content ul, .seo-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.seo-content li { margin-bottom: 0.5rem; line-height: 1.6; }

.infographic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .infographic-grid { grid-template-columns: repeat(4, 1fr); } }
.infographic-block {
  background: var(--gradient-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.25rem; text-align: center;
}
.infographic-block__value { font-size: 1.5rem; font-weight: 800; color: var(--accent-gold); display: block; margin-bottom: 0.25rem; }
.infographic-block__label { font-size: 0.8rem; color: var(--text-muted); }

.step-list { counter-reset: step; list-style: none; padding-left: 0; margin: 1.5rem 0; }
.step-list li {
  counter-increment: step; position: relative; padding-left: 3rem; margin-bottom: 1.25rem;
  padding-top: 0.25rem;
}
.step-list li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 2rem; height: 2rem; background: var(--gradient-primary);
  color: white; font-weight: 700; font-size: 0.9rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.step-list li strong { display: block; margin-bottom: 0.25rem; }

.listicle { list-style: none; padding-left: 0; }
.listicle li { padding-left: 1.5rem; position: relative; margin-bottom: 0.75rem; }
.listicle li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

.seo-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.seo-table th, .seo-table td { padding: 0.75rem 1rem; text-align: left; border: 1px solid var(--border-color); }
.seo-table th { background: rgba(220, 38, 38, 0.15); color: var(--primary-light); font-weight: 600; }
.seo-table tr:nth-child(even) { background: rgba(255,255,255,0.02); }

.callout-box {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  border-left: 4px solid var(--primary); padding: 1.25rem; margin: 1.5rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.animate-pulse { animation: pulse-glow 2s ease-in-out infinite; }
