/* 67bd com - Emerald Trust Gaming UI - Design System */
/* Visual Style: Premium Bangladesh Gaming Platform */

:root {
  /* Color Tokens */
  --color-primary: #0d9e6d;
  --color-primary-dark: #087a54;
  --color-primary-soft: rgba(13,158,109,0.12);
  --color-secondary: #1db88a;
  --color-accent: #f5a623;
  --color-bg: #0a1628;
  --color-bg-soft: #0f1f35;
  --color-surface: #152238;
  --color-surface-strong: #1a2d4a;
  --color-card: #162640;
  --color-card-alt: #1b3050;
  --color-border: rgba(13,158,109,0.18);
  --color-border-strong: rgba(13,158,109,0.35);
  --color-text: #e8f0eb;
  --color-text-soft: #b0c4b8;
  --color-text-muted: #7a9488;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-footer-bg: #060e1a;
  --color-footer-text: #94a3b8;

  /* Gradient Tokens */
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0f2a1e 50%, #0a1628 100%);
  --gradient-hero-soft: linear-gradient(180deg, rgba(13,158,109,0.08) 0%, transparent 100%);
  --gradient-button: linear-gradient(135deg, #0d9e6d 0%, #1db88a 100%);
  --gradient-button-hover: linear-gradient(135deg, #1db88a 0%, #22c55e 100%);
  --gradient-card-bg: linear-gradient(145deg, #162640 0%, #1b3050 100%);
  --gradient-cta: linear-gradient(135deg, rgba(13,158,109,0.15) 0%, rgba(29,184,138,0.08) 100%);
  --gradient-footer: linear-gradient(180deg, #0a1628 0%, #060e1a 100%);

  /* Shadow Tokens */
  --shadow-header: 0 2px 20px rgba(0,0,0,0.3);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.2);
  --shadow-card-hover: 0 8px 32px rgba(13,158,109,0.15);
  --shadow-button: 0 4px 14px rgba(13,158,109,0.25);
  --shadow-soft: 0 2px 8px rgba(0,0,0,0.15);

  /* Radius Tokens */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --radius-card: 14px;

  /* Typography */
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --fs-h1: clamp(1.8rem, 4vw, 2.8rem);
  --fs-h2: clamp(1.4rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.05rem);
  --fs-small: 0.875rem;
  --fs-nav: clamp(13px, 0.84vw, 15px);
  --fs-button: 0.95rem;
  --lh-heading: 1.3;
  --lh-body: 1.85;

  /* Spacing */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --section-y: clamp(48px, 6vw, 80px);
  --section-y-sm: clamp(32px, 4vw, 56px);
  --gap-xs: 6px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --header-h: 72px;
  --mobile-header-h: 64px;
  --card-padding: clamp(18px, 2.5vw, 28px);

  /* Motion */
  --motion-fast: 0.15s;
  --motion-normal: 0.3s;
  --motion-slow: 0.5s;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--motion-fast) var(--ease-soft); }
a:hover { color: var(--color-secondary); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* === FOCUS === */
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: var(--radius-xs); }

/* === CONTAINER === */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: var(--container-narrow); }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 1000; width: 100%;
  background: rgba(10,22,40,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--motion-normal) var(--ease-soft);
}
.site-header.scrolled { box-shadow: var(--shadow-header); }

.header-inner {
  width: 100%; max-width: none;
  padding-left: clamp(10px, 1.2vw, 20px);
  padding-right: clamp(10px, 1.2vw, 20px);
  min-height: var(--header-h);
  display: flex; align-items: center;
  gap: clamp(10px, 1vw, 18px);
}

.brand-wrap { flex: 0 0 auto; margin-right: clamp(4px, .8vw, 14px); }
.site-logo {
  display: block; width: auto;
  height: clamp(32px, 3vw, 42px);
  max-width: clamp(118px, 10vw, 168px);
  object-fit: contain;
}

.primary-nav {
  flex: 1 1 auto; min-width: 0;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap; gap: clamp(6px, .72vw, 14px);
  white-space: nowrap; overflow: visible;
}
.primary-nav a {
  flex: 0 1 auto; min-width: 0;
  padding: 9px clamp(6px, .65vw, 12px);
  font-size: var(--fs-nav); line-height: 1;
  white-space: nowrap; color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--motion-fast) var(--ease-soft);
  position: relative;
}
.primary-nav a:hover { color: var(--color-primary); background: var(--color-primary-soft); }
.primary-nav a.active {
  color: var(--color-primary); font-weight: 600;
  background: var(--color-primary-soft);
}

.header-actions {
  flex: 0 0 auto; margin-left: auto;
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(6px, .6vw, 10px); white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px clamp(14px, 1.5vw, 22px);
  font-size: var(--fs-button); font-weight: 600;
  border-radius: var(--radius-sm); white-space: nowrap;
  transition: all var(--motion-fast) var(--ease-soft);
  min-height: 42px; line-height: 1;
}
.btn-login {
  background: transparent; color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-login:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.btn-register {
  background: var(--gradient-button); color: #fff;
  border: none; box-shadow: var(--shadow-button);
}
.btn-register:hover { background: var(--gradient-button-hover); transform: translateY(-1px); }

.btn-primary {
  background: var(--gradient-button); color: #fff;
  border: none; box-shadow: var(--shadow-button);
  padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-pill);
}
.btn-primary:hover { background: var(--gradient-button-hover); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 14px 32px; border-radius: var(--radius-pill);
}
.btn-secondary:hover { background: var(--color-primary-soft); }

/* Nav Toggle (mobile) */
.nav-toggle { display: none; flex: 0 0 40px; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all var(--motion-normal) var(--ease-soft); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--color-bg-soft); border-top: 1px solid var(--color-border);
  padding: 16px; flex-direction: column; gap: 4px;
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  z-index: 999;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 16px; color: var(--color-text);
  border-radius: var(--radius-sm); font-size: 1rem;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--color-primary-soft); color: var(--color-primary); }
.mobile-menu-actions { display: flex; gap: 10px; padding: 16px 0 8px; border-top: 1px solid var(--color-border); margin-top: 8px; }
.mobile-menu-actions .btn { flex: 1; text-align: center; }

/* === SECTIONS === */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--color-bg-soft); }
.section-highlight { background: var(--gradient-cta); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }

.section-title {
  font-size: var(--fs-h2); font-weight: 700; color: var(--color-primary);
  margin-bottom: var(--gap-lg); line-height: var(--lh-heading);
  position: relative; padding-bottom: 14px;
}
.section-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 60px; height: 3px; background: var(--gradient-button);
  border-radius: 2px;
}
.section-title-center { text-align: center; }
.section-title-center::after { left: 50%; transform: translateX(-50%); }

/* === HERO VARIANTS === */
.hero-home {
  padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  background: var(--gradient-hero); position: relative; overflow: hidden;
  border-bottom: 2px solid var(--color-border-strong);
}
.hero-home::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,158,109,0.08) 0%, transparent 60%);
}
.hero-home .container { position: relative; z-index: 1; }
.hero-home h1 { font-size: var(--fs-h1); color: var(--color-primary); margin-bottom: 18px; line-height: var(--lh-heading); }
.hero-home .hero-lead { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--color-text-soft); margin-bottom: 28px; max-width: 640px; }
.hero-home .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-home .hero-visual { margin-top: 36px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }

/* Inner page hero - simple breadcrumb + title */
.hero-inner {
  padding: clamp(28px, 4vw, 48px) 0;
  background: var(--color-bg-soft); border-bottom: 1px solid var(--color-border);
}
.hero-inner h1 { font-size: var(--fs-h2); margin-bottom: 8px; }
.hero-inner .breadcrumb { font-size: var(--fs-small); color: var(--color-text-muted); margin-bottom: 10px; }
.hero-inner .breadcrumb a { color: var(--color-text-soft); }
.hero-inner .hero-lead { color: var(--color-text-soft); max-width: 700px; }

/* Auth hero - form focused */
.hero-auth {
  padding: clamp(32px, 5vw, 56px) 0;
  background: var(--gradient-hero);
}

/* === CARDS === */
.card-grid { display: grid; gap: var(--gap-md); }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.feature-card {
  background: var(--gradient-card-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: var(--card-padding);
  transition: all var(--motion-normal) var(--ease-soft);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--color-border-strong); }
.feature-card .card-icon { font-size: 2rem; color: var(--color-primary); margin-bottom: 14px; }
.feature-card h3 { font-size: var(--fs-h3); color: var(--color-primary); margin-bottom: 10px; }
.feature-card p { color: var(--color-text-soft); font-size: var(--fs-small); }

.step-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: var(--card-padding);
  position: relative; overflow: hidden;
}
.step-card .step-num {
  position: absolute; top: -10px; right: -10px; font-size: 5rem; font-weight: 900;
  color: rgba(13,158,109,0.08); line-height: 1;
}
.step-card h4 { color: var(--color-primary); margin-bottom: 10px; font-size: 1.1rem; }

.trust-card {
  background: var(--color-surface-strong); border-radius: var(--radius-md);
  padding: 20px; text-align: center; border: 1px solid var(--color-border);
}
.trust-card .trust-num { font-size: 2.2rem; font-weight: 800; color: var(--color-accent); }
.trust-card .trust-label { color: var(--color-text-soft); font-size: var(--fs-small); margin-top: 4px; }

/* === CONTENT === */
.prose { max-width: var(--container-narrow); }
.prose p { margin-bottom: 16px; line-height: var(--lh-body); }
.prose h2 {
  font-size: var(--fs-h2); color: var(--color-primary);
  margin: 36px 0 16px; line-height: var(--lh-heading);
  padding-bottom: 10px; border-bottom: 2px solid var(--color-border);
}
.prose h3 {
  font-size: var(--fs-h3); color: var(--color-text);
  margin: 28px 0 12px; line-height: var(--lh-heading);
}
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; color: var(--color-text-soft); }
.prose strong { color: var(--color-text); }

.content-img {
  width: 100%; max-width: 100%; height: auto;
  border-radius: var(--radius-md); margin: 28px 0;
  box-shadow: var(--shadow-soft);
}

.content-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg);
  align-items: start;
}

/* Alert/Notice Boxes */
.notice-box {
  background: var(--color-primary-soft); border-left: 4px solid var(--color-primary);
  padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.notice-box h4 { color: var(--color-primary); margin-bottom: 8px; }

.warning-box {
  background: rgba(239,68,68,0.08); border-left: 4px solid var(--color-danger);
  padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.warning-box h4 { color: #fca5a5; margin-bottom: 8px; }

/* === COMPARISON TABLE === */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius-md); }
.data-table {
  width: 100%; border-collapse: collapse; background: var(--color-surface);
}
.data-table th { background: var(--color-primary-dark); color: #fff; padding: 14px 18px; text-align: left; font-weight: 600; }
.data-table td { padding: 12px 18px; border-bottom: 1px solid var(--color-border); }
.data-table tr:hover td { background: var(--color-primary-soft); }

/* === CTA === */
.cta-section {
  padding: var(--section-y-sm) 0; text-align: center;
  background: var(--gradient-cta); border-radius: var(--radius-lg);
  margin: var(--gap-xl) 0; padding: var(--gap-xl) var(--gap-lg);
}
.cta-section h2 { color: var(--color-primary); margin-bottom: 14px; font-size: var(--fs-h2); }
.cta-section p { color: var(--color-text-soft); margin-bottom: 24px; max-width: 600px; margin-inline: auto; }
.cta-section .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === FAQ === */
.faq-group { margin-bottom: 32px; }
.faq-group h3 { color: var(--color-primary); margin-bottom: 16px; font-size: var(--fs-h3); }
.faq-item {
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  margin-bottom: 8px; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 16px 20px; display: flex; justify-content: space-between;
  align-items: center; background: var(--color-surface); color: var(--color-text);
  font-size: 1rem; font-weight: 500; text-align: left;
  transition: background var(--motion-fast) var(--ease-soft);
}
.faq-question:hover { background: var(--color-surface-strong); }
.faq-question .faq-icon { font-size: 1.2rem; transition: transform var(--motion-normal) var(--ease-soft); color: var(--color-primary); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 20px 16px; color: var(--color-text-soft);
  line-height: var(--lh-body);
}
.faq-answer.is-open { display: block; }

/* === FORM === */
.form-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  max-width: 480px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--color-text-soft); font-size: var(--fs-small); }
.form-input {
  width: 100%; padding: 12px 16px; background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  color: var(--color-text); font-size: 1rem;
  transition: border-color var(--motion-fast) var(--ease-soft);
}
.form-input:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(13,158,109,0.15); }
.form-submit {
  width: 100%; padding: 14px; background: var(--gradient-button);
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all var(--motion-fast) var(--ease-soft);
}
.form-submit:hover { background: var(--gradient-button-hover); transform: translateY(-1px); }

/* === POLICY LAYOUT === */
.policy-toc {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 32px;
}
.policy-toc h3 { color: var(--color-primary); margin-bottom: 12px; font-size: 1.1rem; }
.policy-toc ol { list-style: decimal; padding-left: 20px; }
.policy-toc li { margin-bottom: 6px; }
.policy-toc a { color: var(--color-text-soft); }
.policy-toc a:hover { color: var(--color-primary); }

.policy-updated {
  display: inline-block; background: var(--color-primary-soft);
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: var(--fs-small); color: var(--color-primary); margin-bottom: 24px;
}

/* === FOOTER === */
.site-footer {
  background: var(--gradient-footer); padding: clamp(40px, 6vw, 72px) 0 28px;
  border-top: 2px solid var(--color-border-strong); margin-top: var(--section-y);
}
.footer-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.footer-brand { margin-bottom: 32px; }
.footer-brand img { margin-bottom: 14px; height: 40px; width: auto; }
.footer-brand p { color: var(--color-footer-text); max-width: 480px; font-size: var(--fs-small); line-height: 1.7; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--gap-lg); margin-bottom: 36px;
}
.footer-col h4 { color: var(--color-text); font-size: 1rem; margin-bottom: 14px; font-weight: 600; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--color-footer-text); font-size: var(--fs-small); transition: color var(--motion-fast); }
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom {
  border-top: 1px solid var(--color-border); padding-top: 24px; text-align: center;
  color: var(--color-text-muted); font-size: var(--fs-small);
}
.footer-bottom p { margin-bottom: 6px; }
.footer-disclaimer { color: var(--color-danger); font-weight: 500; }
.footer-sitemap-link { color: var(--color-text-muted); font-size: 0.8rem; }

/* === AOS FALLBACK === */
[data-aos] { opacity: 1 !important; transform: none !important; }
.aos-animate { opacity: 1 !important; }

/* === RESPONSIVE === */
@media (max-width: 1180px) {
  .site-header .header-inner {
    width: 100%; max-width: none;
    padding-left: clamp(8px, 2.4vw, 14px);
    padding-right: clamp(8px, 2.4vw, 14px);
    justify-content: flex-start;
    gap: clamp(6px, 1.8vw, 10px);
  }
  .brand-wrap { flex: 0 1 auto; margin-right: 0; }
  .site-logo { height: clamp(30px, 8vw, 40px); max-width: clamp(104px, 27vw, 138px); }
  .primary-nav { display: none; }
  .header-actions { margin-left: auto; flex: 0 0 auto; gap: clamp(5px, 1.6vw, 8px); }
  .header-actions .btn { min-height: 40px; padding-inline: clamp(10px, 2.6vw, 14px); font-size: clamp(12px, 3.2vw, 14px); }
  .nav-toggle { display: inline-flex; flex: 0 0 40px; width: 40px; height: 40px; align-items: center; justify-content: center; margin-left: 2px; }
}

@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; }
  .hero-home { padding: clamp(40px, 6vw, 60px) 0; }
}

@media (max-width: 768px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .hero-home .hero-actions { flex-direction: column; }
  .cta-section .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 375px) {
  .site-header .header-inner { padding-left: 8px; padding-right: 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .header-actions .btn { min-height: 38px; padding-inline: 9px; font-size: 12px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* Page-specific body classes for unique styling */
.page-home .hero-home { min-height: 50vh; }
.page-auth .hero-auth { min-height: auto; }
.page-policy .prose { max-width: 860px; }
.page-faq .faq-group + .faq-group { border-top: 1px solid var(--color-border); padding-top: 24px; }
.page-about .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--gap-md); margin: 32px 0; }
.page-game .game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--gap-md); }
.page-download .download-steps { counter-reset: step; }
.page-download .download-step::before { counter-increment: step; content: counter(step); display: flex; width: 36px; height: 36px; background: var(--color-primary); color: #fff; border-radius: 50%; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 12px; }

/* Error page */
.error-page { text-align: center; padding: 100px 20px; min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error-page h1 { font-size: 4rem; color: var(--color-primary); margin-bottom: 16px; }
.error-page p { color: var(--color-text-soft); margin-bottom: 28px; font-size: 1.15rem; }
