:root {
  --color-primary: #0A0A0C;
  --color-secondary: #1C1C21;
  --color-accent: #D4FF00;
  --color-accent-dark: #A3CC00;
  --color-bg: #050505;
  --color-surface: #121215;
  --color-text-main: #FFFFFF;
  --color-text-muted: #A0A0AB;
  --color-border: #33333C;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --base-size: 16px;
  --line-height: 1.6;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-glow: 0 0 15px rgba(212, 255, 0, 0.15);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 70px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); font-size: var(--base-size); line-height: var(--line-height); color: var(--color-text-main); background-color: var(--color-bg); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: #fff; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition-normal); }
a:hover { color: var(--color-accent-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.mt-sm { margin-top: 1rem; } .mt-md { margin-top: 2rem; } .mt-lg { margin-top: 3rem; } .mt-xl { margin-top: 4rem; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: var(--radius-sm); font-family: var(--font-heading); font-weight: 800; cursor: pointer; transition: all var(--transition-normal); text-decoration: none; border: 2px solid transparent; min-height: 44px; }
.btn-small { padding: 0.5rem 1rem; font-size: 0.875rem; min-height: 36px; }
.btn-large { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-primary { background: var(--color-surface); color: #fff; border-color: var(--color-border); }
.btn-primary:hover { background: #2a2a32; border-color: #4a4a55; }
.btn-accent { background: var(--color-accent); color: var(--color-primary); }
.btn-accent:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-glow); }
.btn-outline { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline:hover { background: rgba(212,255,0,0.1); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(10, 10, 12, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); height: var(--header-height); display: flex; align-items: center; }
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.brand-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--color-accent); letter-spacing: -0.5px; }
.brand-logo:hover { color: var(--color-accent); }
.main-nav { display: flex; gap: 2rem; }
.main-nav a { color: var(--color-text-main); font-weight: 600; font-size: 0.95rem; }
.main-nav a:hover, .main-nav a.active { color: var(--color-accent); }
.mobile-menu-toggle { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; }
.mobile-menu-toggle span { display: block; width: 25px; height: 3px; background: var(--color-text-main); transition: var(--transition-normal); }

/* Live Ticker */
.live-ticker-strip { background: var(--color-accent); color: var(--color-primary); overflow: hidden; white-space: nowrap; padding: 0.5rem 0; font-family: var(--font-heading); font-size: 0.85rem; }
.ticker-content { display: inline-block; animation: ticker-scroll 30s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; margin-right: 3rem; }
.ticker-item .pulse { width: 8px; height: 8px; background: #ff3366; border-radius: 50%; display: inline-block; margin-right: 8px; animation: pulse 2s infinite; }
@keyframes ticker-scroll { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,51,102,0.7); } 70% { box-shadow: 0 0 0 6px rgba(255,51,102,0); } 100% { box-shadow: 0 0 0 0 rgba(255,51,102,0); } }

/* Hero Split Image Right */
.hero-split-image-right { display: flex; flex-wrap: wrap; min-height: calc(100vh - var(--header-height)); background: var(--color-primary); position: relative; overflow: hidden; }
.hero-content-column { flex: 1 1 50%; padding: 6rem 4rem 4rem 10%; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.hero-visual-column { flex: 1 1 50%; background: var(--color-surface); position: relative; }
.trust-emphasis { margin-bottom: 1.5rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.badge { background: rgba(212,255,0,0.1); color: var(--color-accent); border: 1px solid rgba(212,255,0,0.3); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.hero-content-column h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.125rem; color: var(--color-text-muted); margin-bottom: 2.5rem; max-width: 90%; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.duotone-stage { width: 100%; height: 100%; position: relative; padding: 2rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--color-surface) 0%, #17171C 100%); }
.hero-image { width: 80%; height: auto; border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(0,0,0,0.5); object-fit: cover; border: 1px solid var(--color-border); }
.floating-proof-card { position: absolute; background: rgba(18,18,21,0.9); backdrop-filter: blur(5px); border: 1px solid var(--color-border); padding: 1rem; border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0,0,0,0.8); display: flex; flex-direction: column; gap: 0.25rem; }
.floating-proof-card strong { color: var(--color-accent); font-family: var(--font-heading); font-size: 1.1rem; }
.floating-proof-card span { font-size: 0.9rem; }
.floating-proof-card small { color: var(--color-text-muted); font-size: 0.8rem; }
.proof-card-1 { bottom: 20%; left: 10%; animation: float 6s ease-in-out infinite; }
.proof-card-2 { top: 20%; right: 5%; animation: float 8s ease-in-out infinite reverse; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Shared Sections */
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 1rem; }
.section-desc { text-align: center; color: var(--color-text-muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.1rem; }
.reveal-section { padding: 5rem 0; opacity: 1; transition: opacity 0.8s ease, transform 0.8s ease; }
.js-enabled .reveal-section { opacity: 0; transform: translateY(30px); }
.js-enabled .reveal-section.is-visible { opacity: 1; transform: translateY(0); }

/* Safety Strip */
.free-play-safety-strip { background: var(--color-secondary); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 4rem 0; }
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.safety-card { background: var(--color-surface); padding: 2rem; border-radius: var(--radius-md); border-left: 3px solid var(--color-accent); }
.safety-card h3 { color: var(--color-accent); font-size: 1.25rem; margin-bottom: 1rem; }

/* Catalog Cards */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.catalog-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.catalog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.5); border-color: var(--color-accent); }
.card-image-wrap { position: relative; height: 180px; overflow: hidden; }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.8); }
.catalog-card:hover .card-image-wrap img { transform: scale(1.05); filter: brightness(1); }
.card-badge { position: absolute; top: 1rem; right: 1rem; background: var(--color-accent); color: var(--color-primary); padding: 0.25rem 0.5rem; font-weight: 800; font-size: 0.75rem; border-radius: 4px; text-transform: uppercase; z-index: 2; }
.card-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sport-tag { color: var(--color-accent); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.format-meta { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.card-desc { font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; }
.card-facts { list-style: none; margin-bottom: 1.5rem; background: var(--color-primary); padding: 1rem; border-radius: var(--radius-sm); font-size: 0.85rem; }
.card-facts li { margin-bottom: 0.5rem; }
.card-facts li:last-child { margin-bottom: 0; }
.card-facts strong { color: var(--color-text-main); }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: auto; }

/* Sports Hub */
.sports-hub-cards { background: #0A0A0C; }
.sports-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.sport-hub-card { position: relative; height: 250px; border-radius: var(--radius-md); overflow: hidden; display: block; border: 1px solid var(--color-border); }
.sport-hub-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: grayscale(50%) brightness(0.6); }
.sport-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%); padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; }
.sport-hub-card:hover img { transform: scale(1.05); filter: grayscale(0%) brightness(0.8); }
.sport-hub-card:hover .sport-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(212,255,0,0.1) 100%); }
.sport-overlay h3 { margin-bottom: 0.25rem; font-size: 1.5rem; }
.sport-overlay p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.format-chip { align-self: flex-start; border: 1px solid var(--color-accent); color: var(--color-accent); font-size: 0.75rem; padding: 2px 8px; border-radius: 12px; font-weight: 700; }

/* Tables (Projections / Matrix) */
.projections-table-wrap, .matrix-table-wrap { overflow-x: auto; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.projections-table, .matrix-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.projections-table th, .matrix-table th { background: var(--color-secondary); padding: 1rem; text-align: left; font-family: var(--font-heading); color: var(--color-accent); font-size: 0.9rem; text-transform: uppercase; border-bottom: 2px solid var(--color-border); }
.projections-table td, .matrix-table td { padding: 1rem; border-bottom: 1px solid var(--color-border); }
.projections-table tr:hover, .matrix-table tr:hover { background: rgba(255,255,255,0.02); }
.highlight-val { font-weight: 700; color: #fff; font-size: 1.1rem; }
.trend.up { color: #00e676; }
.trend.steady { color: #A0A0AB; }
.trend.down { color: #ff3366; }

/* AI Chat Demo */
.ai-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ai-text p { font-size: 1.1rem; margin-bottom: 2rem; color: var(--color-text-muted); }
.ai-chat-demo { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.chat-msg { padding: 1rem; border-radius: var(--radius-md); font-size: 0.95rem; max-width: 85%; }
.chat-msg.user { background: var(--color-secondary); align-self: flex-end; border-bottom-right-radius: 0; }
.chat-msg.bot { background: rgba(212,255,0,0.05); border: 1px solid rgba(212,255,0,0.2); align-self: flex-start; border-bottom-left-radius: 0; color: #e0e0e0; }

/* Steps */
.how-it-works-steps { background: var(--color-secondary); }
.steps-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.step-card { text-align: center; }
.step-num { width: 50px; height: 50px; margin: 0 auto 1.5rem; background: var(--color-accent); color: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.step-card p { color: var(--color-text-muted); font-size: 0.95rem; }

/* Editorial Block / Strategy Cards */
.editorial-content { max-width: 800px; margin: 0 auto; color: var(--color-text-muted); font-size: 1.1rem; }
.editorial-content h3 { margin: 2rem 0 1rem; color: #fff; }
.editorial-content p { margin-bottom: 1.5rem; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.editorial-card { background: var(--color-surface); padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); }
.editorial-card h3 { color: var(--color-accent); font-size: 1.3rem; margin-bottom: 1rem; }
.editorial-card p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* Reviews */
.fan-review-wall { background: var(--color-secondary); }
.review-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.review-card { background: var(--color-surface); padding: 2rem; border-radius: var(--radius-md); flex: 1 1 300px; max-width: 400px; border: 1px solid var(--color-border); }
.review-stars { color: var(--color-accent); font-size: 1.2rem; margin-bottom: 1rem; }
.review-text { font-style: italic; color: #e0e0e0; margin-bottom: 1.5rem; line-height: 1.5; }
.review-author { font-weight: 700; color: var(--color-accent-dark); font-size: 0.9rem; text-transform: uppercase; }

/* FAQ Accordion */
.accordion-list { max-width: 800px; margin: 0 auto; }
.accordion-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-sm); margin-bottom: 1rem; overflow: hidden; }
.accordion-header { width: 100%; padding: 1.5rem; text-align: left; background: transparent; border: none; color: #fff; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-header::after { content: '+'; color: var(--color-accent); font-size: 1.5rem; transition: transform 0.3s; }
.accordion-item.expanded .accordion-header::after { transform: rotate(45deg); }
.accordion-content { padding: 0 1.5rem; display: none; color: var(--color-text-muted); }
.accordion-item.expanded .accordion-content { display: block; padding-bottom: 1.5rem; }

/* Footer */
.site-footer { background: #000; border-top: 1px solid var(--color-border); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-brand h3 { color: var(--color-accent); margin-bottom: 1rem; font-size: 1.2rem; }
.footer-brand p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-links h4 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-accent); }
.footer-disclaimer p { font-size: 0.8rem; color: #666; line-height: 1.4; }
.footer-bottom { text-align: center; border-top: 1px solid var(--color-border); margin-top: 3rem; padding-top: 2rem; font-size: 0.85rem; color: #555; }

/* Catalog Page Layout */
.page-catalog .catalog-layout { display: flex; max-width: 1400px; margin: 0 auto; padding: 2rem 1.5rem; gap: 2rem; min-height: 80vh; }
.catalog-sidebar { width: 280px; flex-shrink: 0; }
.sticky-filters { position: sticky; top: calc(var(--header-height) + 2rem); }
.catalog-main { flex: 1; }
.filter-group { margin-bottom: 2rem; }
.filter-group h3 { font-size: 1.1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.5rem; }
.form-input { width: 100%; background: var(--color-primary); border: 1px solid var(--color-border); color: #fff; padding: 0.75rem; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; }
.form-input:focus { outline: none; border-color: var(--color-accent); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-chips .chip { background: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-text-muted); padding: 0.5rem 1rem; border-radius: 20px; cursor: pointer; transition: all 0.2s; font-size: 0.85rem; }
.filter-chips .chip:hover { border-color: var(--color-accent); color: #fff; }
.filter-chips .chip.active { background: rgba(212,255,0,0.1); border-color: var(--color-accent); color: var(--color-accent); }
.catalog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.sort-controls { display: flex; align-items: center; gap: 1rem; }
.empty-state { text-align: center; padding: 5rem 2rem; background: var(--color-surface); border-radius: var(--radius-md); border: 1px dashed var(--color-border); }
.hidden { display: none !important; }
.editorial-block { background: var(--color-secondary); padding: 3rem; border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.editorial-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.editorial-columns h3 { font-size: 1.2rem; color: var(--color-accent); margin-bottom: 1rem; }
.editorial-columns p { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }

/* Compare Tray */
.compare-tray { position: fixed; bottom: 0; right: 2rem; width: 350px; background: var(--color-surface); border: 1px solid var(--color-accent); border-bottom: none; border-radius: var(--radius-md) var(--radius-md) 0 0; box-shadow: 0 -5px 20px rgba(0,0,0,0.8); z-index: 1000; display: flex; flex-direction: column; transition: transform 0.3s ease; }
.compare-tray.hidden { transform: translateY(100%); }
.compare-tray-header { padding: 1rem; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; background: rgba(212,255,0,0.05); }
.compare-tray-header h4 { margin: 0; font-size: 1rem; color: var(--color-accent); }
.compare-tray-header button { background: none; border: none; color: #fff; cursor: pointer; font-size: 1.2rem; }
.compare-tray-items { padding: 1rem; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.5rem; }
.compare-item { background: var(--color-primary); padding: 0.75rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.compare-item-remove { color: #ff3366; cursor: pointer; background: none; border: none; font-size: 1.2rem; }
.compare-tray-actions { padding: 1rem; border-top: 1px solid var(--color-border); text-align: center; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(10,10,12,0.95); backdrop-filter: blur(5px); border-top: 1px solid var(--color-accent); padding: 1rem; z-index: 9999; display: flex; justify-content: center; transform: translateY(0); transition: transform 0.3s; }
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-content { display: flex; align-items: center; gap: 2rem; max-width: 1200px; width: 100%; font-size: 0.9rem; }
.cookie-content a { text-decoration: underline; }

/* Games / Sports Hub specific */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.wide-card { grid-column: 1 / -1; height: 350px !important; }
.category-card { position: relative; height: 300px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); }
.cat-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.5); }
.cat-overlay { position: absolute; inset: 0; padding: 2rem; display: flex; flex-direction: column; background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%); transition: background 0.3s; }
.category-card:hover .cat-img { transform: scale(1.05); filter: brightness(0.7); }
.category-card:hover .cat-overlay { background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(212,255,0,0.1) 100%); }
.cat-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.cat-icon { font-size: 2rem; }
.cat-header h2 { font-size: 1.8rem; margin: 0; }
.cat-chip { display: inline-block; background: rgba(212,255,0,0.15); color: var(--color-accent); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem; width: max-content; }
.cat-bullets { list-style: none; margin-bottom: auto; }
.cat-bullets li { position: relative; padding-left: 1.2rem; font-size: 0.9rem; color: #ddd; margin-bottom: 0.4rem; }
.cat-bullets li::before { content: '•'; color: var(--color-accent); position: absolute; left: 0; font-size: 1.2rem; line-height: 1; }
.cat-context { font-size: 0.85rem; color: var(--color-text-muted); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.5rem; margin-bottom: 0; }
.checklist-panel { background: var(--color-surface); padding: 2rem; border-radius: var(--radius-md); border-left: 4px solid var(--color-accent); }
.sport-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; color: var(--color-text-muted); }

/* Tournament Detail specific */
.tournament-hero-img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-lg); opacity: 0.5; margin-bottom: -100px; }
.tournament-header-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; position: relative; z-index: 10; margin: 0 auto 3rem; max-width: 900px; text-align: center; box-shadow: 0 15px 40px rgba(0,0,0,0.6); }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; text-align: left; margin: 2rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 1.5rem 0; }
.detail-item span { display: block; font-size: 0.8rem; color: var(--color-text-muted); text-transform: uppercase; margin-bottom: 0.25rem; }
.detail-item strong { color: #fff; font-size: 1.1rem; }
.loading-state { text-align: center; padding: 10rem 2rem; }
.spinner { width: 40px; height: 40px; border: 4px solid rgba(212,255,0,0.2); border-top-color: var(--color-accent); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Simple form styling */
.fantasy-form { max-width: 600px; background: var(--color-surface); padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--color-text-muted); font-size: 0.9rem; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.5rem; }
.checkbox-group label { font-size: 0.85rem; margin-bottom: 0; line-height: 1.4; }
.alert { padding: 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; }
.alert-success { background: rgba(0, 230, 118, 0.1); border: 1px solid #00e676; color: #00e676; }

/* Policy / Guide pages */
.guide-body, .policy-body { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; font-size: 1.1rem; color: #ccc; }
.guide-body h2, .policy-body h2 { margin: 2.5rem 0 1rem; color: var(--color-accent); font-size: 1.6rem; }
.guide-body h3, .policy-body h3 { margin: 1.5rem 0 1rem; color: #fff; font-size: 1.3rem; }
.guide-body p, .policy-body p { margin-bottom: 1.5rem; line-height: 1.7; }
.guide-body ul, .policy-body ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }
.guide-body li, .policy-body li { margin-bottom: 0.5rem; }

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .hero-content-column { padding: 4rem 2rem; }
  .proof-card-1, .proof-card-2 { display: none; }
}
@media (max-width: 768px) {
  .hero-split-image-right { flex-direction: column; min-height: auto; }
  .hero-content-column, .hero-visual-column { flex: 1 1 100%; width: 100%; }
  .hero-content-column { padding: 3rem 1.5rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .trust-emphasis { justify-content: center; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: var(--header-height); left: 0; width: 100%; background: var(--color-primary); padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
  .main-nav.open { display: flex; }
  .mobile-menu-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .page-catalog .catalog-layout { flex-direction: column; }
  .catalog-sidebar { width: 100%; position: static; }
  .ai-split, .editorial-columns { grid-template-columns: 1fr; gap: 2rem; }
  .wide-card { height: auto !important; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .ticker-content { animation: none; display: flex; overflow-x: auto; }
  .reveal-section { opacity: 1 !important; transform: none !important; }
}
