/* IQ777 Casino - Static Site Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ==================== CSS Variables ==================== */
:root {
  --primary: #7c3aed;
  --primary-light: #a855f7;
  --primary-dark: #1e0a3c;
  --primary-glow: rgba(124,58,237,0.3);
  --gold: #d4a017;
  --gold-light: #e6b422;
  --success: #16a34a;
  --destructive: #ef4444;
  --bg: #faf9ff;
  --bg-card: #ffffff;
  --bg-secondary: #f3f0f9;
  --fg: #1a0d33;
  --fg-muted: #6b6180;
  --border: #e5e0f0;
  --radius: 0.75rem;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  --gradient-gold: linear-gradient(135deg, #d4a017 0%, #e6a830 100%);
  --gradient-dark: linear-gradient(180deg, #2d1660 0%, #140a28 100%);
  --gradient-hero: linear-gradient(180deg, #faf9ff 0%, #f0ecf7 100%);
  --shadow-sm: 0 2px 8px rgba(124,58,237,0.08);
  --shadow-md: 0 4px 20px rgba(124,58,237,0.12);
  --shadow-glow: 0 0 30px rgba(124,58,237,0.3);
  --shadow-gold: 0 4px 20px rgba(212,160,23,0.3);
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124,58,237,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212,160,23,0.05) 0%, transparent 40%);
  pointer-events: none; z-index: -1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
ul { list-style: none; }

/* ==================== Utility ==================== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
@media(min-width:1024px) { .container { padding: 0 2rem; } }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gradient { color: var(--primary); }
.text-white { color: #fff; }
.text-muted { color: var(--fg-muted); }
.hidden { display: none; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ==================== Grid ==================== */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(1, 1fr); }
.grid-6 { grid-template-columns: repeat(1, 1fr); }
@media(min-width:768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

/* ==================== Components ==================== */

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.header-logo img { height: 48px; width: auto; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media(min-width:1024px) { .nav-desktop { display: flex; } }
.nav-link {
  color: var(--fg-muted); font-weight: 500; font-family: var(--font-display);
  transition: color 0.2s; position: relative; padding: 0.5rem 0;
}
.nav-link:hover { color: var(--primary); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
  width: 12rem; background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--border); padding: 0.5rem;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-link {
  display: block; padding: 0.5rem 1rem; font-size: 0.875rem;
  color: var(--fg-muted); border-radius: 0.5rem; transition: all 0.2s;
}
.nav-dropdown-link:hover { color: var(--primary); background: var(--bg-secondary); }
.header-cta { display: none; align-items: center; gap: 1rem; }
@media(min-width:1024px) { .header-cta { display: flex; } }
.mobile-toggle {
  display: block; padding: 0.5rem; background: none; border: none;
  color: var(--fg-muted); cursor: pointer; font-size: 1.5rem;
}
@media(min-width:1024px) { .mobile-toggle { display: none; } }
.mobile-menu {
  display: none; padding: 1rem 0; border-top: 1px solid var(--border);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block; padding: 0.75rem 1rem; color: var(--fg);
  border-radius: 0.5rem; transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--bg-secondary); }
.mobile-submenu { margin-left: 1rem; }
.mobile-submenu a { font-size: 0.875rem; color: var(--fg-muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all 0.3s; font-size: 0.875rem;
  text-decoration: none; gap: 0.5rem;
}
.btn-hero {
  background: var(--gradient-primary); color: #fff;
  padding: 1rem 2rem; border-radius: 0.75rem;
  box-shadow: var(--shadow-glow);
}
.btn-hero:hover { transform: scale(1.05); color: #fff; }
.btn-gold {
  background: var(--gradient-gold); color: var(--fg); font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: scale(1.05); color: var(--fg); }
.btn-outline {
  background: transparent; border: 1px solid var(--border);
  color: var(--fg); padding: 0.75rem 1.5rem;
}
.btn-outline:hover { background: var(--bg-secondary); }
.btn-outline-white {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* Cards */
.card {
  background: var(--bg-card); border-radius: 1rem;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.card:hover { box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.card-glow { background: var(--bg-card); border-radius: 1rem; box-shadow: var(--shadow-md); transition: all 0.3s; }
.card-glow:hover { box-shadow: var(--shadow-glow); transform: translateY(-4px); }

/* Sections */
.section-header {
  font-size: 1.875rem; font-family: var(--font-display);
  font-weight: 700; color: var(--fg); margin-bottom: 1rem;
}
@media(min-width:768px) { .section-header { font-size: 2.25rem; } }
.section-subheader { font-size: 1.125rem; color: var(--fg-muted); max-width: 42rem; }
.bg-gradient-dark { background: var(--gradient-dark); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-secondary { background: var(--bg-secondary); }
.bg-background { background: var(--bg); }

/* Hero Sections */
.hero-section {
  position: relative; min-height: 90vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-section-sm { min-height: 40vh; }
.hero-section-md { min-height: 60vh; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), transparent); }
.hero-overlay-center { background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7)); }
.hero-overlay-bottom { background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,0.3)); }
.hero-content { position: relative; z-index: 10; padding: 3rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border-radius: 9999px; padding: 0.5rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.875rem; font-weight: 500; color: #fff;
}
.hero-badge-gold { background: rgba(212,160,23,0.2); color: var(--gold); }
.hero-title {
  font-size: 2.5rem; font-family: var(--font-display);
  font-weight: 900; color: #fff; margin-bottom: 1.5rem; line-height: 1.1;
}
@media(min-width:768px) { .hero-title { font-size: 3rem; } }
@media(min-width:1024px) { .hero-title { font-size: 4.5rem; } }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 42rem; margin-bottom: 2rem; }
@media(min-width:768px) { .hero-subtitle { font-size: 1.25rem; } }

/* Stats */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-value { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; color: var(--gold); }
@media(min-width:768px) { .stat-value { font-size: 2.25rem; } }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* Feature Cards */
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 1rem;
  background: var(--gradient-primary); margin-bottom: 1.5rem;
  color: #fff; font-size: 1.5rem;
}
.feature-icon-sm { width: 3rem; height: 3rem; border-radius: 0.75rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.feature-icon-gold { background: var(--gradient-gold); color: var(--fg); }

/* Game Cards */
.game-card {
  position: relative; overflow: hidden; border-radius: 1rem;
  background: linear-gradient(145deg, #fff 0%, #f8f5ff 100%);
  box-shadow: var(--shadow-sm); transition: all 0.5s;
}
.game-card:hover { box-shadow: var(--shadow-glow); transform: translateY(-8px); }
.game-card-img { width: 100%; height: 12rem; object-fit: cover; transition: transform 0.5s; }
.game-card:hover .game-card-img { transform: scale(1.1); }
.game-card-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--gradient-primary); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem;
  border-radius: 9999px; z-index: 5;
}
.game-card-body { padding: 1rem; }
.game-card-title { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; color: var(--fg); margin-bottom: 0.25rem; }
.game-card-meta { font-size: 0.75rem; color: var(--fg-muted); display: flex; justify-content: space-between; align-items: center; }
.game-card-rating { color: var(--gold); }
.game-card-rtp { color: var(--success); font-weight: 600; }

/* Promo Cards */
.promo-card { position: relative; overflow: hidden; border-radius: 1rem; background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; transition: background 0.3s; }
.promo-card:hover { background: rgba(255,255,255,0.1); }
.promo-card-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--fg); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: 0.25rem; }
.promo-card .promo-subtitle { font-size: 0.875rem; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; }
.promo-card .promo-title { font-size: 1.25rem; font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.promo-card .promo-value { font-size: 3rem; font-family: var(--font-display); font-weight: 900; color: var(--gold); margin-bottom: 1rem; }
.promo-card .promo-desc { color: rgba(255,255,255,0.7); }
.promo-card .promo-corner { position: absolute; top: 0; right: 0; width: 8rem; height: 8rem; background: linear-gradient(to bottom-left, rgba(212,160,23,0.2), transparent); border-bottom-left-radius: 100%; }

/* VIP Cards */
.vip-card {
  position: relative; overflow: hidden; border-radius: 1rem;
  padding: 1.5rem; transition: transform 0.3s; text-align: center;
}
.vip-card:hover { transform: scale(1.05); }
.vip-bronze { background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%); color: #fff; }
.vip-silver { background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%); color: #fff; }
.vip-gold { background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%); color: #1a1a1a; }
.vip-platinum { background: linear-gradient(135deg, #E5E4E2 0%, #BCC6CC 100%); color: #1a1a1a; }
.vip-diamond { background: linear-gradient(135deg, #B9F2FF 0%, #00CED1 100%); color: #1a1a1a; }
.vip-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.vip-card-name { font-size: 1.5rem; font-family: var(--font-display); font-weight: 700; }
.vip-card-label { font-size: 0.875rem; opacity: 0.8; }

/* Blog Cards */
.blog-card { overflow: hidden; border-radius: 1rem; background: var(--bg-card); box-shadow: var(--shadow-sm); transition: all 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.blog-card-img-wrap { position: relative; overflow: hidden; height: 12rem; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img { transform: scale(1.1); }
.blog-card-category {
  position: absolute; top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; padding: 0.25rem 0.75rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
  background: rgba(124,58,237,0.1); color: var(--primary);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.blog-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--fg); margin-bottom: 0.75rem; transition: color 0.2s; }
.blog-card:hover .blog-card-title { color: var(--primary); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 1rem; }
.blog-card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); }

/* Badge */
.badge {
  display: inline-flex; align-items: center; padding: 0.25rem 0.75rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
  background: rgba(124,58,237,0.1); color: var(--primary);
}

/* Breadcrumb */
.breadcrumb { padding: 1rem 0; font-size: 0.875rem; color: var(--fg-muted); }
.breadcrumb a { color: var(--fg-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 0.5rem; }

/* Footer */
.site-footer { background: var(--gradient-dark); color: #fff; }
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; gap: 3rem; }
@media(min-width:768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(255,255,255,0.7); max-width: 24rem; line-height: 1.8; margin-top: 1.5rem; }
.footer-heading { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { margin-top: 1.5rem; }
.footer-contact a, .footer-contact div { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; transition: background 0.2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
}

/* Accordion / FAQ */
.accordion-item { background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 1rem; overflow: hidden; }
.accordion-trigger {
  width: 100%; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; font-family: var(--font-display);
  font-weight: 500; font-size: 1rem; color: var(--fg); text-align: left; transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-trigger::after { content: '+'; font-size: 1.25rem; font-weight: 700; color: var(--fg-muted); transition: transform 0.3s; }
.accordion-item.active .accordion-trigger::after { content: '−'; }
.accordion-content { display: none; padding: 0 1.5rem 1.25rem; color: var(--fg-muted); line-height: 1.8; }
.accordion-item.active .accordion-content { display: block; }

/* Legal content */
.legal-content { max-width: 56rem; margin: 0 auto; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.25rem; font-family: var(--font-display); font-weight: 700; color: var(--fg); margin-bottom: 1rem; }
.legal-section p, .legal-section div { color: var(--fg-muted); white-space: pre-line; line-height: 1.8; }

/* Timeline */
.timeline { position: relative; max-width: 48rem; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 1rem; top: 0; bottom: 0; width: 2px; background: var(--border); }
@media(min-width:768px) { .timeline::before { left: 50%; transform: translateX(-1px); } }
.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 3rem; }
@media(min-width:768px) {
  .timeline-item { padding-left: 0; width: 50%; }
  .timeline-item:nth-child(odd) { padding-right: 3rem; text-align: right; margin-left: 0; }
  .timeline-item:nth-child(even) { padding-left: 3rem; margin-left: 50%; }
}
.timeline-dot {
  position: absolute; left: 1rem; top: 0.4rem; width: 1rem; height: 1rem;
  border-radius: 50%; background: var(--primary); transform: translateX(-50%);
}
@media(min-width:768px) { .timeline-dot { left: auto; right: -0.5rem; }
  .timeline-item:nth-child(even) .timeline-dot { left: -0.5rem; right: auto; }
}
.timeline-content { background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.timeline-year { font-size: 1.5rem; font-family: var(--font-display); font-weight: 700; color: var(--primary); }

/* Ticker */
.ticker-wrap { overflow: hidden; background: var(--bg-secondary); padding: 0.75rem 0; }
.ticker {
  display: flex; gap: 2rem; animation: ticker-scroll 20s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); }
.ticker-item .winner-name { color: var(--primary); font-weight: 600; }
.ticker-item .winner-amount { color: var(--gold); font-weight: 700; }

/* Jackpot */
.jackpot-section { background: var(--gradient-dark); padding: 2rem 0; text-align: center; }
.jackpot-amount { font-size: 3rem; font-family: var(--font-display); font-weight: 900; color: var(--gold); }
@media(min-width:768px) { .jackpot-amount { font-size: 4rem; } }

/* Phone mockup */
.phone-mockup {
  width: 16rem; height: 31rem; background: linear-gradient(to bottom, rgba(124,58,237,0.5), rgba(124,58,237,0.2));
  border-radius: 3rem; padding: 1rem; margin: 0 auto;
}
.phone-screen {
  width: 100%; height: 100%; background: var(--gradient-dark);
  border-radius: 2.5rem; display: flex; align-items: center; justify-content: center; text-align: center;
}

/* SVG Icons inline */
.icon { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: middle; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 4rem; height: 4rem; }

/* Responsive helpers */
@media(max-width:767px) {
  .md-hide { display: none; }
  .hero-title { font-size: 2rem; }
}
@media(min-width:768px) {
  .sm-only { display: none; }
}

/* Checkmark list */
.check-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.check-icon { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: rgba(22,163,74,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon svg { width: 1rem; height: 1rem; color: var(--success); }

/* Warning list */
.warning-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.warning-icon { color: var(--destructive); flex-shrink: 0; margin-top: 0.125rem; }

/* Category filter buttons */
.filter-btn {
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem;
  font-weight: 500; border: none; cursor: pointer;
  background: var(--bg-secondary); color: var(--fg-muted); transition: all 0.2s;
}
.filter-btn:hover { background: rgba(124,58,237,0.1); }
.filter-btn.active { background: var(--primary); color: #fff; }

/* Search input */
.search-input {
  width: 100%; padding: 0.875rem 1rem 0.875rem 3rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem;
  background: var(--bg-card); color: var(--fg); outline: none; transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--primary); }
.search-wrap { position: relative; }
.search-wrap svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--fg-muted); }

/* Contact card */
.contact-card { text-align: center; padding: 2rem; }
.contact-card-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--gradient-primary); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: #fff; font-size: 1.5rem;
}

/* Article prose */
.prose { line-height: 1.8; color: var(--fg-muted); }
.prose h2 { font-size: 1.5rem; color: var(--fg); margin: 3rem 0 1.5rem; }
.prose h3 { font-size: 1.25rem; color: var(--fg); margin: 2rem 0 0.75rem; }
.prose p { margin-bottom: 1.5rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.prose ul li { margin-bottom: 0.75rem; }
.prose strong { color: var(--fg); }
.prose a { color: var(--primary); }
.prose a:hover { text-decoration: underline; }
.prose img { border-radius: 0.75rem; margin: 2rem 0; box-shadow: var(--shadow-md); }

/* Decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.blob-primary { background: rgba(124,58,237,0.15); }
.blob-gold { background: rgba(212,160,23,0.1); }
.blob-success { background: rgba(22,163,74,0.1); }

/* Step circles */
.step-circle {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--gradient-primary); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 1rem;
  font-size: 1.5rem; font-family: var(--font-display); font-weight: 700; color: #fff;
}

/* Category page icons (SVG placeholders) */
.cat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
