/* Design System: Emerald Trust Bangladesh UI */
:root {
  --color-primary: #0d6e3f;
  --color-primary-dark: #0a5530;
  --color-primary-soft: #e8f5ee;
  --color-secondary: #1a237e;
  --color-accent: #f59e0b;
  --color-bg: #f8faf9;
  --color-bg-soft: #f0f4f2;
  --color-surface: #ffffff;
  --color-surface-strong: #e8ece9;
  --color-card: #ffffff;
  --color-card-alt: #f0f7f3;
  --color-border: #d4ddd8;
  --color-border-strong: #a8b8ae;
  --color-text: #1a2e22;
  --color-text-soft: #3d5a48;
  --color-text-muted: #6b8577;
  --color-success: #059669;
  --color-warning: #d97706;
  --color-danger: #dc2626;
  --color-footer-bg: #0f1f16;
  --color-footer-text: #c8d8ce;
  --gradient-hero: linear-gradient(135deg, #0d6e3f 0%, #1a237e 100%);
  --gradient-hero-soft: linear-gradient(135deg, #e8f5ee 0%, #e8eaf6 100%);
  --gradient-button: linear-gradient(135deg, #0d6e3f 0%, #059669 100%);
  --gradient-button-hover: linear-gradient(135deg, #0a5530 0%, #047857 100%);
  --gradient-cta: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-footer: linear-gradient(180deg, #0f1f16 0%, #0a1510 100%);
  --shadow-header: 0 2px 12px rgba(13,110,63,0.08);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 28px rgba(13,110,63,0.12);
  --shadow-button: 0 2px 8px rgba(13,110,63,0.2);
  --shadow-soft: 0 2px 8px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --radius-card: 14px;
  --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, 3rem);
  --fs-h2: clamp(1.4rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-nav: clamp(13px, 0.84vw, 15px);
  --lh-heading: 1.3;
  --lh-body: 1.8;
  --section-y: clamp(3rem, 5vw, 5rem);
  --container-max: 1200px;
  --header-h: 72px;
  --mobile-header-h: 64px;
  --motion-normal: 0.3s;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

body {
  margin: 0; padding: 0;
  font-family: var(--font-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--motion-normal) var(--ease-out); }
a:hover { color: var(--color-primary-dark); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: var(--radius-sm); }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-left: clamp(16px, 3vw, 24px); padding-right: clamp(16px, 3vw, 24px); }
.text-center { text-align: center; }
.prose { max-width: 820px; }
.prose p { margin: 0 0 1.2em; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: var(--lh-heading); font-weight: 700; color: var(--color-text); margin: 0 0 0.8em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--color-surface);
  box-shadow: var(--shadow-header);
  border-bottom: 1px solid var(--color-border);
}
.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, 0.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, 0.72vw, 14px);
  white-space: nowrap; overflow: visible;
}
.primary-nav a {
  flex: 0 1 auto; min-width: 0;
  padding: 9px clamp(6px, 0.65vw, 12px);
  font-size: var(--fs-nav); line-height: 1;
  white-space: nowrap; color: var(--color-text-soft);
  border-radius: var(--radius-sm);
  transition: background var(--motion-normal), color var(--motion-normal);
}
.primary-nav a:hover, .primary-nav a.active { color: var(--color-primary); background: var(--color-primary-soft); font-weight: 600; }
.header-actions {
  flex: 0 0 auto; margin-left: auto;
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(6px, 0.6vw, 10px); white-space: nowrap;
}
.nav-toggle { display: none; }

@media (max-width: 1180px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

.nav-toggle {
  flex: 0 0 40px; width: 40px; height: 40px;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 8px; border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--color-primary-soft); }
.hamburger-line { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform var(--motion-normal); }

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed; top: var(--mobile-header-h); left: 0; right: 0;
  background: var(--color-surface); z-index: 999;
  display: none; flex-direction: column;
  padding: 16px; gap: 0;
  max-height: calc(100vh - var(--mobile-header-h));
  overflow-y: auto; border-bottom: 2px solid var(--color-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 16px;
  font-size: 1rem; color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--color-primary-soft); color: var(--color-primary); }

@media (max-width: 1180px) {
  .header-inner {
    width: 100%; max-width: none;
    padding-left: clamp(8px, 2.4vw, 14px);
    padding-right: clamp(8px, 2.4vw, 14px);
    min-height: var(--mobile-header-h);
    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); }
  .header-actions { margin-left: auto; }
}

@media (max-width: 375px) {
  .header-inner { padding-left: 8px; padding-right: 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; min-height: 44px;
  font-size: 0.95rem; font-weight: 600;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: all var(--motion-normal) var(--ease-out);
}
.btn-primary {
  background: var(--gradient-button); color: #fff; border-color: var(--color-primary);
  box-shadow: var(--shadow-button);
}
.btn-primary:hover { background: var(--gradient-button-hover); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(13,110,63,0.3); color: #fff; }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-sm { padding: 8px 18px; min-height: 36px; font-size: 0.85rem; }

/* ===================== SECTIONS ===================== */
section { padding: var(--section-y) 0; }
.section-alt { background: var(--color-bg-soft); }
.section-accent { background: var(--gradient-hero); color: #fff; }
.section-accent h2, .section-accent p, .section-accent a { color: #fff; }
.section-accent .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.section-accent .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ===================== HERO ===================== */
.home-hero { background: var(--gradient-hero); color: #fff; padding: clamp(3rem, 6vw, 6rem) 0; }
.home-hero h1, .home-hero p { color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-lead { font-size: clamp(1rem, 1.4vw, 1.15rem); opacity: 0.92; }
.hero-sub { opacity: 0.85; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.5rem 0; }
.badge-tag { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,0.15); color: #fff; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-image-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.hero-visual { position: relative; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { order: -1; }
}

.page-hero {
  background: var(--gradient-hero-soft);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { color: var(--color-text); }
.page-hero .hero-lead { max-width: 980px; color: var(--color-text-soft); }
.hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
@media (max-width: 768px) { .hero-split { grid-template-columns: 1fr; } }
.voucher-hero .hero-split,
.lottery-hero .hero-split,
.games-hero .hero-split {
  gap: clamp(24px, 4vw, 40px);
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: start;
}
.voucher-hero .hero-lead,
.lottery-hero .hero-lead,
.games-hero .hero-lead { max-width: 58ch; margin-bottom: 0; }
.voucher-hero .hero-image-frame,
.lottery-hero .hero-image-frame,
.games-hero .hero-image-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 768px) {
  .voucher-hero .hero-split,
  .lottery-hero .hero-split,
  .games-hero .hero-split { grid-template-columns: 1fr; }
  .voucher-hero .hero-image-frame,
  .lottery-hero .hero-image-frame,
  .games-hero .hero-image-frame { max-width: 100%; margin-left: 0; }
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb { margin-bottom: 1rem; font-size: 0.85rem; }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb span { color: var(--color-text-soft); }

/* ===================== CARDS ===================== */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; } }

.info-card, .feature-card, .benefit-card, .game-card, .step-card {
  background: var(--color-card); padding: 28px;
  border-radius: var(--radius-card); border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--motion-normal) var(--ease-out), box-shadow var(--motion-normal);
}
.info-card:hover, .feature-card:hover, .benefit-card:hover, .game-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-card-hover);
}
.info-card h3, .feature-card h3, .benefit-card h3, .game-card h3 { font-size: var(--fs-h3); margin-bottom: 0.6em; color: var(--color-primary-dark); }
.feature-card i, .benefit-card i, .game-card i { font-size: 1.2em; margin-right: 6px; color: var(--color-accent); }

/* ===================== STEPS ===================== */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .step-grid { grid-template-columns: 1fr; } }
.step-card { text-align: center; position: relative; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-button); color: #fff; font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }

.step-list { display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-badge { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-button); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }

/* ===================== TABLE ===================== */
.table-wrap { overflow-x: auto; border-radius: var(--radius-card); border: 1px solid var(--color-border); margin: 1.5rem 0; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--color-border); }
th { background: var(--color-primary-soft); font-weight: 600; color: var(--color-primary-dark); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--color-bg-soft); }

.home-comparison .comparison-table { table-layout: fixed; }
.home-comparison .comparison-table th,
.home-comparison .comparison-table td { vertical-align: top; }
.home-comparison .comparison-table th:nth-child(1),
.home-comparison .comparison-table td:nth-child(1) { width: 24%; padding-left: 20px; padding-right: 26px; text-align: left; }
.home-comparison .comparison-table th:nth-child(2),
.home-comparison .comparison-table td:nth-child(2) { width: 40%; padding-left: 28px; padding-right: 28px; text-align: center; }
.home-comparison .comparison-table th:nth-child(3),
.home-comparison .comparison-table td:nth-child(3) { width: 36%; padding-left: 26px; padding-right: 20px; text-align: right; }
@media (max-width: 768px) {
  .home-comparison .comparison-table th:nth-child(1),
  .home-comparison .comparison-table td:nth-child(1),
  .home-comparison .comparison-table th:nth-child(2),
  .home-comparison .comparison-table td:nth-child(2),
  .home-comparison .comparison-table th:nth-child(3),
  .home-comparison .comparison-table td:nth-child(3) { padding-left: 16px; padding-right: 16px; }
}

/* ===================== ACCORDION ===================== */
.accordion-group { display: flex; flex-direction: column; gap: 8px; }
.accordion-item { border: 1px solid var(--color-border); border-radius: var(--radius-card); overflow: hidden; background: var(--color-card); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border: none; background: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--color-text);
  text-align: left; gap: 12px;
}
.accordion-trigger h3 { margin: 0; font-size: 1rem; flex: 1; }
.accordion-trigger:hover { background: var(--color-bg-soft); }
.accordion-icon { flex: 0 0 20px; width: 20px; height: 20px; position: relative; }
.accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; background: var(--color-text-soft); border-radius: 2px; transition: transform var(--motion-normal); }
.accordion-icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.accordion-icon::after { width: 2px; height: 14px; top: 3px; left: 9px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: rotate(90deg); }
.accordion-panel { display: none; padding: 0 20px 18px; color: var(--color-text-soft); line-height: var(--lh-body); }
.accordion-panel.is-open { display: block; }

/* ===================== PROGRESS ===================== */
.reward-panel { background: var(--color-card); padding: 32px; border-radius: var(--radius-card); border: 1px solid var(--color-border); }
.progress-bar-wrap { margin-bottom: 1.5rem; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 600; }
.progress-track { height: 12px; background: var(--color-surface-strong); border-radius: 6px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-button); border-radius: 6px; transition: width 1s var(--ease-out); }
.progress-marks { display: flex; justify-content: space-between; margin-top: 6px; font-size: 0.8rem; color: var(--color-text-muted); }

/* ===================== SPLIT PANELS ===================== */
.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .split-panel { grid-template-columns: 1fr; } }
.panel-left, .panel-right { background: var(--color-card); padding: 32px; border-radius: var(--radius-card); border: 1px solid var(--color-border); }
.jackpot-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--gradient-hero); color: #fff; border: none; }
.jackpot-panel h2, .jackpot-panel p { color: #fff; }
.jackpot-amount { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; font-variant-numeric: tabular-nums; text-shadow: 0 0 20px rgba(245,158,11,0.4); color: var(--color-accent); }

/* ===================== TIMELINE ===================== */
.timeline { border-left: 4px solid var(--color-primary); padding-left: 28px; }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -36px; top: 4px; width: 16px; height: 16px; background: var(--color-primary); border-radius: 50%; box-shadow: 0 0 0 4px var(--color-primary-soft); }
.timeline-item h3 { color: var(--color-primary-dark); }

/* ===================== CONTENT IMAGE ===================== */
.content-img { border-radius: var(--radius-lg); margin: 1.5rem 0; box-shadow: var(--shadow-card); }
.voucher-hero .content-img,
.lottery-hero .content-img,
.games-hero .content-img {
  width: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  border: none;
}
.voucher-benefits > h2 { text-align: center; }
.voucher-benefits > .content-img { margin-left: auto; margin-right: auto; }
.games-mobile-focus > h2 { text-align: center; }
.games-mobile-focus > .content-img { margin-left: auto; margin-right: auto; }
.games-mobile-focus > .prose {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.lottery-diff > h2 { text-align: center; }
.platform-intro > h2,
.platform-pay > h2 { text-align: center; }
.content-image-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 768px) { .content-image-split { grid-template-columns: 1fr; } }

/* ===================== GLOSSARY ===================== */
.glossary-list { list-style: none; padding: 0; }
.glossary-list li { padding: 12px 0; border-bottom: 1px solid var(--color-border); }
.glossary-list li:last-child { border-bottom: none; }
.glossary-list strong { color: var(--color-primary-dark); }

/* ===================== NOTICE CARD ===================== */
.notice-card { background: var(--color-card-alt); padding: 28px; border-radius: var(--radius-card); border-left: 4px solid var(--color-primary); }

/* ===================== LINK PILLS ===================== */
.link-pills { display: flex; flex-wrap: wrap; gap: 10px; }

/* ===================== CTA SECTION ===================== */
.cta-section { padding: var(--section-y) 0; }
.cta-lead { font-size: clamp(1rem, 1.4vw, 1.15rem); margin-bottom: 1.5rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===================== ERROR PAGE ===================== */
.error-section { padding: clamp(4rem, 8vw, 8rem) 0; }
.error-section h1 { font-size: clamp(2rem, 5vw, 4rem); color: var(--color-primary); }
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--gradient-footer); color: var(--color-footer-text); padding: clamp(3rem, 5vw, 4rem) 0 2rem; }
.footer-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.site-footer p { color: var(--color-footer-text); font-size: 0.9rem; line-height: 1.7; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--color-footer-text); font-size: 0.9rem; transition: color var(--motion-normal); }
.footer-links a:hover { color: #fff; }
.copyright { margin-top: 1rem; font-size: 0.8rem; opacity: 0.6; }

/* ===================== FORM STYLES (login/register) ===================== */
.page-login .content-section, .page-register .content-section { }
.auth-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--color-text); }
.form-group input {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--color-border); border-radius: var(--radius-md);
  font-size: 1rem; background: var(--color-surface); color: var(--color-text);
  transition: border-color var(--motion-normal);
}
.form-group input:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px var(--color-primary-soft); }

/* ===================== COMPARE NOTE ===================== */
.compare-note { margin-top: 1.5rem; padding: 16px; background: var(--color-card-alt); border-radius: var(--radius-md); border-left: 3px solid var(--color-accent); }

/* ===================== RESPONSIVE FIXES ===================== */
@media (max-width: 414px) {
  .btn { padding: 10px 20px; font-size: 0.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 375px) {
  body { font-size: 0.92rem; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .info-card, .feature-card, .benefit-card, .game-card { padding: 20px; }
}

/* ===================== PRINT ===================== */
@media print {
  .site-header, .site-footer, .nav-toggle, .mobile-menu, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
