/* =============================================
   SOFT-EDGE Theme - Modern Adventure Premium
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --se-bg-950: #0b0907;
  --se-bg-900: #14100c;
  --se-bg-800: #1d1711;
  --se-bg-700: #271f18;
  --se-sand-200: #d9c8a8;
  --se-sand-100: #efe2c9;
  --se-gold-500: #c79b3f;
  --se-gold-400: #dfba6b;
  --se-gold-300: #f0d79b;
  --se-accent-red: #9d3d2d;
  --se-ink-100: #f5efe3;
  --se-ink-300: #cfc0a5;
  --se-muted: #a99574;
  --se-line-gold: rgba(199, 155, 63, 0.34);
  --se-line-soft: rgba(239, 226, 201, 0.12);
  --se-heading: 'Cinzel', Georgia, serif;
  --se-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --se-mono: 'DM Mono', 'Consolas', monospace;
  --se-w: 1120px;
  --se-r-sm: 10px;
  --se-r: 16px;
  --se-r-lg: 22px;
  --se-lift-sm: 0 4px 18px rgba(0, 0, 0, 0.3);
  --se-lift-md: 0 12px 34px rgba(0, 0, 0, 0.35);
  --se-lift-lg: 0 20px 56px rgba(0, 0, 0, 0.45);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--se-body);
  color: var(--se-ink-100);
  background:
    radial-gradient(circle at 12% 8%, rgba(199,155,63,0.16) 0%, rgba(11,9,7,0) 40%),
    radial-gradient(circle at 85% 25%, rgba(157,61,45,0.12) 0%, rgba(20,16,12,0) 42%),
    linear-gradient(180deg, var(--se-bg-900) 0%, var(--se-bg-950) 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    radial-gradient(rgba(240, 215, 155, 0.25) 0.45px, transparent 0.45px),
    radial-gradient(rgba(239, 226, 201, 0.15) 0.3px, transparent 0.3px);
  background-size: 3px 3px, 6px 6px;
  z-index: -2;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--se-gold-300); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.se-wrap {
  max-width: var(--se-w);
  margin: 0 auto;
  padding: 0 24px;
}

.se-topbar {
  background: #0a0806;
  border-bottom: 1px solid var(--se-line-gold);
  color: var(--se-ink-300);
  font-size: 0.78rem;
  padding: 7px 0;
}
.se-topbar .se-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.se-topbar-left { font-weight: 600; letter-spacing: 0.25px; }
.se-topbar-right { color: var(--se-muted); }

.se-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--se-line-gold);
  backdrop-filter: blur(10px);
  background: rgba(20, 16, 12, 0.86);
}
.se-header .se-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 12px;
}

.se-brand {
  font-family: var(--se-heading);
  font-size: 1.08rem;
  letter-spacing: 0.35px;
  color: var(--se-gold-300);
  text-decoration: none;
}
.se-brand:hover { color: #fff; text-decoration: none; }

.se-nav {
  display: flex;
  gap: 4px;
}
.se-nav a {
  color: var(--se-ink-300);
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: var(--se-r-sm);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.se-nav a:hover {
  color: #fff;
  background: rgba(239, 226, 201, 0.07);
  border-color: var(--se-line-gold);
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(199, 155, 63, 0.16), inset 0 0 22px rgba(199, 155, 63, 0.08);
}

.se-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--se-line-gold);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.se-burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--se-gold-300);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.se-header.is-open .se-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.se-header.is-open .se-burger span:nth-child(2) { opacity: 0; }
.se-header.is-open .se-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.se-hero {
  background:
    linear-gradient(165deg, rgba(240, 215, 155, 0.12) 0%, rgba(20, 16, 12, 0) 34%),
    linear-gradient(160deg, rgba(157, 61, 45, 0.16) 0%, rgba(11, 9, 7, 0.8) 62%);
  padding: 60px 24px 54px;
  text-align: center;
  border-bottom: 1px solid var(--se-line-gold);
}
.se-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.se-hero h1 {
  font-family: var(--se-heading);
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.16;
  letter-spacing: 0.2px;
  color: #fff;
  margin-bottom: 16px;
}
.se-hero-sub {
  max-width: 660px;
  margin: 0 auto 20px;
  color: var(--se-ink-300);
  font-size: 1rem;
  line-height: 1.62;
}
.se-hero-img {
  max-width: 360px;
  width: 100%;
  margin: 0 auto 22px;
  border-radius: var(--se-r);
  border: 1px solid var(--se-line-gold);
  box-shadow: var(--se-lift-lg), 0 0 0 1px rgba(240, 215, 155, 0.12) inset;
}
.se-hero-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--se-muted);
  font-size: 0.85rem;
}
.se-hero-byline img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--se-line-gold);
}
.se-hero-byline a { color: var(--se-gold-300); font-weight: 700; }
.se-hero-byline-sep { color: rgba(239, 226, 201, 0.22); }

.se-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 22px auto 0;
}
.se-hero-stat {
  padding: 13px 10px;
  border-radius: 12px;
  border: 1px solid var(--se-line-gold);
  background: rgba(20, 16, 12, 0.55);
  box-shadow: var(--se-lift-sm);
}
.se-hero-stat-val {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}
.se-hero-stat-lbl {
  color: var(--se-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.se-main {
  max-width: var(--se-w);
  margin: 0 auto;
  padding: 44px 24px 66px;
  position: relative;
}

.se-article { max-width: 790px; }

.se-toc {
  position: fixed;
  top: 88px;
  right: calc((100vw - var(--se-w)) / 2);
  width: 220px;
  max-height: calc(100vh - 118px);
  overflow-y: auto;
  padding: 16px 0;
}
.se-toc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.95px;
  text-transform: uppercase;
  color: var(--se-muted);
  margin-bottom: 9px;
  padding-left: 12px;
}
.se-toc ul { list-style: none; }
.se-toc li { margin-bottom: 2px; }
.se-toc a {
  display: block;
  padding: 6px 11px;
  border-left: 2px solid transparent;
  border-radius: 0 var(--se-r-sm) var(--se-r-sm) 0;
  font-size: 0.82rem;
  color: var(--se-ink-300);
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.se-toc a:hover {
  color: #fff;
  background: rgba(239, 226, 201, 0.07);
  border-left-color: var(--se-gold-400);
}

.se-section {
  margin-bottom: 46px;
  padding: 24px;
  border-radius: var(--se-r-lg);
  border: 1px solid var(--se-line-gold);
  background: linear-gradient(180deg, rgba(29, 23, 17, 0.92) 0%, rgba(20, 16, 12, 0.88) 100%);
  box-shadow: var(--se-lift-sm);
}
.se-section-head {
  font-family: var(--se-heading);
  font-size: 1.56rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--se-line-soft);
}
.se-section h3 {
  font-size: 1.14rem;
  color: var(--se-sand-100);
  margin: 0 0 11px;
}
.se-section p { margin-bottom: 16px; color: var(--se-ink-100); }
.se-section ul, .se-section ol {
  margin-bottom: 16px;
  padding-left: 22px;
}
.se-section li { margin-bottom: 7px; color: var(--se-ink-300); }

section h2 {
  font-family: var(--se-heading);
  font-size: 1.56rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--se-line-soft);
}
section h3 {
  font-size: 1.14rem;
  color: var(--se-sand-100);
  margin-bottom: 11px;
}
section p { margin-bottom: 16px; color: var(--se-ink-100); }
section ul, section ol { margin-bottom: 16px; padding-left: 22px; }
section li { margin-bottom: 7px; color: var(--se-ink-300); }
section table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 16px;
  border: 1px solid var(--se-line-gold);
  border-radius: 12px;
  overflow: hidden;
}
section th, section td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--se-line-soft);
}
section tr:last-child td { border-bottom: 0; }
section tbody tr:nth-child(even) td { background: rgba(239, 226, 201, 0.03); }
section th {
  background: rgba(239, 226, 201, 0.06);
  color: var(--se-sand-100);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.2px;
}

.se-btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: var(--se-r);
  border: 1px solid transparent;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.se-btn:hover { text-decoration: none; }
.se-btn-cta {
  background: linear-gradient(180deg, #f0d79b 0%, #dfba6b 45%, #c79b3f 100%);
  color: #1a130b;
  border-color: rgba(240, 215, 155, 0.8);
  box-shadow: 0 8px 18px rgba(199, 155, 63, 0.28);
}
.se-btn-cta:hover {
  color: #140f09;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(199, 155, 63, 0.35), 0 0 18px rgba(240, 215, 155, 0.25);
}
.se-btn-outline {
  color: var(--se-gold-300);
  border-color: var(--se-line-gold);
  background: rgba(239, 226, 201, 0.03);
}
.se-btn-outline:hover {
  color: #fff;
  background: rgba(239, 226, 201, 0.1);
}

.se-facts {
  background: rgba(239, 226, 201, 0.04);
  border-radius: var(--se-r);
  border: 1px solid var(--se-line-gold);
  padding: 22px;
  margin-bottom: 40px;
}
.se-facts table { width: 100%; border-collapse: collapse; }
.se-facts td, .se-facts th {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--se-line-soft);
}
.se-facts tr:last-child td, .se-facts tr:last-child th { border-bottom: none; }
.se-facts th { font-weight: 700; color: var(--se-sand-100); width: 40%; font-size: 0.88rem; }

.se-casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}
.se-casino-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  border-radius: var(--se-r);
  border: 1px solid var(--se-line-gold);
  background: linear-gradient(180deg, rgba(39, 31, 24, 0.88), rgba(20, 16, 12, 0.92));
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.se-casino-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--se-lift-md);
  border-color: rgba(240, 215, 155, 0.55);
}
.se-casino-name {
  font-family: var(--se-heading);
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
}
.se-casino-bonus {
  display: inline-block;
  width: fit-content;
  background: rgba(240, 215, 155, 0.1);
  border: 1px solid rgba(240, 215, 155, 0.3);
  color: var(--se-sand-100);
  border-radius: var(--se-r-sm);
  padding: 8px 11px;
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 700;
}
.se-casino-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--se-ink-300);
}
.se-casino-rating { font-weight: 700; color: var(--se-gold-400); }
.se-casino-license { font-size: 0.8rem; color: var(--se-muted); }
.se-casino-card .se-btn-cta { margin-top: auto; width: 100%; }

.se-demo {
  background: rgba(20, 16, 12, 0.88);
  border: 1px solid var(--se-line-gold);
  border-radius: var(--se-r);
  padding: 24px;
  margin-bottom: 40px;
}
.se-demo-frame {
  border-radius: var(--se-r-sm);
  overflow: hidden;
  border: 1px solid var(--se-line-gold);
  background: #121212;
}
.se-demo-frame iframe {
  display: block;
  border: none;
  width: 100%;
  min-height: 480px;
}
.se-demo-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--se-muted);
  text-align: center;
}

.se-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.se-faq-item {
  border: 1px solid var(--se-line-gold);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(239, 226, 201, 0.03);
}
.se-faq-q {
  font-family: var(--se-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 7px;
}
.se-faq-a {
  color: var(--se-ink-300);
  line-height: 1.72;
}

.se-faq-section details {
  border: 1px solid var(--se-line-gold);
  background: rgba(239, 226, 201, 0.03);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.se-faq-section summary {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--se-sand-100);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.se-faq-section summary::-webkit-details-marker { display: none; }
.se-faq-section summary::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  color: var(--se-gold-400);
  font-weight: 400;
}
.se-faq-section details[open] summary::after { content: "\2212"; }
.se-faq-section .faq-answer,
.se-faq-section details > div,
.se-faq-section details > p {
  padding: 0 16px 15px;
  color: var(--se-ink-300);
  line-height: 1.72;
}

.se-author-card {
  background: rgba(239, 226, 201, 0.04);
  border: 1px solid var(--se-line-gold);
  border-radius: var(--se-r);
  padding: 26px;
  margin-top: 48px;
}
.se-author-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.se-author-pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--se-gold-400);
}
.se-author-body { flex: 1; }
.se-author-name { font-size: 1.02rem; margin-bottom: 3px; }
.se-author-name a { color: var(--se-sand-100); }
.se-author-role {
  font-size: 0.83rem;
  color: var(--se-muted);
  margin-bottom: 8px;
}
.se-author-desc {
  font-size: 0.92rem;
  color: var(--se-ink-300);
  margin-bottom: 6px;
}
.se-author-count { font-size: 0.82rem; color: var(--se-muted); font-weight: 600; }

.se-signup {
  background: linear-gradient(180deg, rgba(29, 23, 17, 0.94), rgba(20, 16, 12, 0.96));
  border: 1px solid var(--se-line-gold);
  color: var(--se-ink-100);
  border-radius: var(--se-r);
  padding: 34px;
  text-align: center;
  margin-top: 40px;
}
.se-signup h3 {
  font-family: var(--se-heading);
  font-size: 1.23rem;
  color: #fff;
  margin-bottom: 8px;
}
.se-signup p { font-size: 0.92rem; color: var(--se-ink-300); margin-bottom: 18px; }
.se-signup-form { max-width: 440px; margin: 0 auto; }
.se-signup-row { display: flex; gap: 8px; margin-bottom: 10px; }
.se-signup-form input[type="email"] {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--se-r-sm);
  border: 1px solid var(--se-line-gold);
  background: rgba(239, 226, 201, 0.06);
  color: #fff;
  font-size: 0.94rem;
  font-family: var(--se-body);
}
.se-signup-form input[type="email"]::placeholder { color: var(--se-muted); }
.se-signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--se-gold-400);
  background: rgba(239, 226, 201, 0.08);
}
.se-signup-form .se-btn-cta { white-space: nowrap; padding: 11px 22px; }
.se-signup-consent {
  font-size: 0.75rem;
  color: var(--se-muted);
  text-align: left;
}
.se-signup-consent a { color: var(--se-gold-300); text-decoration: underline; }
.se-signup-consent label { display: flex; gap: 8px; align-items: flex-start; cursor: pointer; }

.se-disclaimer {
  background: rgba(239, 226, 201, 0.08);
  border-top: 1px solid var(--se-line-gold);
  padding: 14px 24px;
  font-size: 0.82rem;
  color: var(--se-ink-300);
  text-align: center;
}
.se-disclaimer a { color: var(--se-gold-300); font-weight: 700; text-decoration: underline; }
.se-disclaimer strong { color: var(--se-sand-100); font-weight: 700; }

.se-footer {
  background: #090705;
  color: var(--se-muted);
  border-top: 1px solid var(--se-line-gold);
  padding: 34px 24px;
  text-align: center;
}
.se-footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.se-footer-links a {
  color: var(--se-ink-300);
  font-size: 0.86rem;
  transition: color 0.2s;
}
.se-footer-links a:hover { color: #fff; text-decoration: none; }
.se-footer-copy {
  font-size: 0.82rem;
  color: var(--se-muted);
  margin-bottom: 8px;
}
.se-footer-age {
  font-size: 0.78rem;
  color: var(--se-muted);
}
.se-age-mark {
  display: inline-block;
  background: rgba(199, 155, 63, 0.22);
  border: 1px solid var(--se-line-gold);
  color: var(--se-gold-300);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.72rem;
  margin-right: 4px;
  vertical-align: middle;
}

.se-author-page { max-width: 700px; margin: 0 auto; padding: 48px 24px; }
.se-author-page-header { text-align: center; margin-bottom: 36px; }
.se-author-page-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--se-gold-400);
}
.se-author-page-name {
  font-family: var(--se-heading);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 4px;
}
.se-author-page-title { font-size: 0.95rem; color: var(--se-muted); margin-bottom: 16px; }
.se-author-page-bio { font-size: 1rem; line-height: 1.75; margin-bottom: 28px; color: var(--se-ink-100); }
.se-author-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.se-author-details dt { font-weight: 700; color: var(--se-ink-300); }
.se-author-details dd { color: var(--se-ink-100); }
.se-author-social { display: flex; gap: 12px; justify-content: center; }
.se-author-social a {
  padding: 8px 18px;
  border: 1px solid var(--se-line-gold);
  border-radius: var(--se-r-sm);
  font-size: 0.84rem;
  color: var(--se-gold-300);
  background: rgba(239, 226, 201, 0.03);
}
.se-author-social a:hover { color: #fff; background: rgba(239, 226, 201, 0.1); text-decoration: none; }

.se-legal { max-width: 780px; margin: 0 auto; padding: 48px 24px; }

.se-main > * {
  animation: se-fade-up 280ms ease both;
}
@keyframes se-fade-up {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

:focus-visible {
  outline: 2px solid var(--se-gold-400);
  outline-offset: 2px;
}

@media (max-width: 1280px) {
  .se-toc { display: none; }
  .se-article { max-width: 100%; }
}

@media (max-width: 900px) {
  .se-nav {
    display: none;
    position: absolute;
    right: 24px;
    top: calc(100% + 8px);
    min-width: 220px;
    padding: 10px;
    background: rgba(20, 16, 12, 0.96);
    border: 1px solid var(--se-line-gold);
    border-radius: 12px;
    box-shadow: var(--se-lift-md);
    flex-direction: column;
    gap: 3px;
  }
  .se-header.is-open .se-nav { display: flex; }
  .se-nav a { width: 100%; }
  .se-burger { display: flex; }

  .se-hero { padding: 42px 16px 34px; }
  .se-hero-sub { font-size: 0.95rem; }
  .se-main { padding: 32px 16px 46px; }
  .se-section { padding: 18px; margin-bottom: 28px; }

  .se-signup { padding: 24px 16px; }
  .se-signup-row { flex-direction: column; }

  .se-footer-links { gap: 12px; }

  .se-topbar { display: none; }
}

@media (max-width: 700px) {
  .se-casinos-grid { grid-template-columns: 1fr; }
  .se-hero-stats {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .se-author-inner { flex-direction: column; align-items: center; text-align: center; }
  section table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .se-hero h1 { font-size: 1.5rem; }
  .se-hero-byline { flex-direction: column; gap: 5px; }
  .se-hero-byline-sep { display: none; }
  .se-casino-card { padding: 18px; }
  .se-wrap { padding: 0 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .se-topbar, .se-header, .se-toc, .se-signup, .se-disclaimer, .se-footer { display: none; }
  body { background: #fff; color: #000; }
  .se-hero { background: none; border-bottom: 1px solid #ccc; padding: 20px 0; }
}
