html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 400;
}

body {
  background: #13090A;
  color: #F6E7BF;
  line-height: 1.65;
}

* { box-sizing: border-box; }

a { color: inherit; text-decoration: none; }
img { display: block; }

.container,
.container-wide {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.container-wide { width: min(1200px, calc(100% - 32px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #13090A 0%, #1A0D0E 55%, #221112 100%);
  color: #FFD83A;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,216,58,0.12);
}

.desktop-header {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand img,
.mobile-brand img,
.drawer-logo img,
.footer-brand img {
  width: 132px;
  max-height: 54px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.nav a,
.text-link,
.meta-text,
.small-note {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
}

.nav a {
  color: #FFD83A;
  padding: 8px 10px;
  border-radius: 0;
  white-space: nowrap;
  line-height: 1;
  font-size: 15px;
}

.nav a.active,
.nav a:hover {
  color: #FFD83A;
  background: transparent;
  box-shadow: inset 0 -2px 0 #D60013;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  background: linear-gradient(180deg, #F10A17 0%, #D60013 45%, #A8000E 100%);
  color: #FFD83A;
  border: 1px solid rgba(255,216,58,0.28);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(214,0,19,0.28), inset 0 1px 0 rgba(255,255,255,0.16);
  letter-spacing: 0.3px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.login-btn:hover,
.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(214,0,19,0.38), inset 0 1px 0 rgba(255,255,255,0.18);
}

.mobile-header { display: none; }

.menu-toggle,
.drawer-close,
.slider-arrow {
  font-family: "Charis SIL", Georgia, serif;
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1B1112;
  border: 1px solid rgba(255,216,58,0.22);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #FFD83A;
  border-radius: 4px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 84vw;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #13090A 0%, #1A0D0E 60%, #221112 100%);
  transform: translateX(-105%);
  transition: transform .28s ease;
  border-right: 1px solid rgba(255,216,58,0.16);
  box-shadow: 20px 0 50px rgba(0,0,0,.45);
  padding: 18px;
  overflow-y: auto;
}

.drawer-open .mobile-drawer { transform: translateX(0); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.drawer-open { overflow: hidden; }

.drawer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.drawer-logo { grid-column: 1 / 2; }
.drawer-login { grid-column: 1 / 3; }

.drawer-close {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #241516;
  color: #FFD83A;
  font-size: 26px;
  line-height: 1;
  border: 1px solid rgba(255,216,58,0.18);
}

.drawer-nav {
  display: grid;
  gap: 8px;
}

.drawer-nav a {
  padding: 12px 14px;
  color: #FFD83A;
  background: #1B1112;
  border: 1px solid rgba(255,216,58,0.12);
  border-radius: 12px;
  font-weight: 700;
}

h1,
.page-title,
.hero-title {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
  line-height: 1.15;
}

h2,
.section-title {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
  line-height: 1.2;
}

h3,
.card-title,
.zone-card h3,
.info-card h3 {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
}

p,
li,
.faq-answer,
.section-desc,
.card p,
.zone-card p,
.info-card p {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 400;
  color: #F6E7BF;
}

.section {
  padding: 58px 0;
}

.section-tight { padding: 34px 0; }

.section-head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.section-desc,
.muted,
.card .muted {
  color: #D5C29A;
}

.banner-slider {
  max-width: 1200px;
  margin: 28px auto 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, #13090A 0%, #1A0D0E 48%, #221112 100%);
  border: 1px solid rgba(255,216,58,0.16);
  box-shadow: 0 18px 42px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform .5s ease;
}

.slide {
  min-width: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(241,10,23,.18), transparent 38%);
}

.banner-slider img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  background: linear-gradient(135deg, #1A0D0E 0%, #221112 100%);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #FFD83A;
  background: rgba(19,9,10,.82);
  border: 1px solid rgba(255,216,58,.24);
  font-size: 28px;
  line-height: 1;
  z-index: 3;
}

.slider-prev { left: 18px; }
.slider-next { right: 18px; }

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 4;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,216,58,.55);
  background: rgba(255,216,58,.25);
  cursor: pointer;
}

.slider-dots button.active { width: 28px; background: #D60013; }

.intro-strip,
.notice-box,
.app-band,
.page-hero,
.promo-panel {
  background: linear-gradient(135deg, #1A0D0E 0%, #221112 55%, #1B1112 100%);
  border: 1px solid rgba(255,216,58,0.14);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.intro-strip img {
  width: 260px;
  max-height: 160px;
  object-fit: contain;
}

.quick-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.quick-pills a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214,0,19,0.55);
  background: #1B1112;
  color: #FFD83A;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,216,58,0.05);
}

.grid-8,
.grid-3,
.zone-grid,
.info-grid,
.feature-grid,
.faq-grid,
.link-grid {
  display: grid;
  gap: 18px;
}

.grid-8 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.zone-grid { grid-template-columns: repeat(3, 1fr); }
.info-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.link-grid { grid-template-columns: repeat(3, 1fr); }

.card,
.zone-card,
.info-card,
.faq-item,
.content-card {
  background: #1B1112;
  border: 1px solid rgba(255,216,58,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  color: #F6E7BF;
  border-radius: 18px;
  padding: 22px;
}

.card:hover,
.zone-card:hover,
.info-card:hover {
  border-color: rgba(255,216,58,0.28);
  transform: translateY(-2px);
  transition: transform .2s ease, border-color .2s ease;
}

.card-number,
.tag,
.kicker {
  color: #FFD83A;
  font-weight: 700;
}

.card-number {
  font-size: 28px;
  margin-bottom: 8px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(214,0,19,.18);
  border: 1px solid rgba(214,0,19,.42);
  margin-bottom: 10px;
}

.card h3,
.zone-card h3,
.info-card h3,
.faq-item h3,
.content-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.card ul,
.info-card ul,
.content-card ul,
.page-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.text-link {
  color: #FFD83A;
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 1px solid rgba(255,216,58,.45);
}

.content-img,
.zone-card img,
.app-section img,
.banner-slider img,
.hero-visual img,
.promo-banner img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}

.split-row:last-child { margin-bottom: 0; }

.visual-box {
  background: #241516;
  border: 1px solid rgba(255,216,58,0.14);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
}

.visual-box img,
.hero-visual img,
.zone-card img,
.app-band img,
.promo-banner img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 16px;
}

.split-copy {
  padding: 12px 0;
}

.split-copy h2,
.page-copy h2 {
  margin-top: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.point-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.point-list span {
  position: relative;
  padding-left: 20px;
  color: #F6E7BF;
}

.point-list span:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D60013;
  box-shadow: 0 0 0 3px rgba(214,0,19,.22);
}

.zone-card { padding: 0; overflow: hidden; }
.zone-card img { border-radius: 0; background: #241516; padding: 10px; }
.zone-body { padding: 20px; }
.zone-card.no-image { padding: 22px; min-height: 100%; }

.decor-mark {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: radial-gradient(circle at 25% 25%, #FFD83A 0, #FFC928 32%, #D60013 33%, #B80010 62%, #241516 63%);
  box-shadow: 0 16px 30px rgba(214,0,19,.2);
  margin-bottom: 16px;
}

.app-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.app-band:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 260px;
  height: 260px;
  background: rgba(214,0,19,.22);
  border-radius: 50%;
  filter: blur(4px);
}

.app-band > * { position: relative; z-index: 1; }

.page-hero {
  margin: 32px auto 28px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.page-hero.no-visual { grid-template-columns: 1fr; }

.page-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
}

.breadcrumb {
  color: #FFC928;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-content {
  display: grid;
  gap: 22px;
  padding-bottom: 64px;
}

.page-content .content-card {
  background: #1B1112;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  margin-top: 14px;
  border-radius: 10px;
  font-weight: 700;
  color: #FFD83A;
  background: linear-gradient(180deg, #F10A17 0%, #D60013 45%, #A8000E 100%);
  border: 1px solid rgba(255,216,58,0.28);
  box-shadow: 0 10px 22px rgba(214,0,19,0.28);
}

.notice-box {
  padding: 22px;
  border-left: 4px solid #D60013;
}

.notice-box p { margin: 0; }

.faq-item h3 { font-size: 21px; }

.site-footer {
  background: #0E0607;
  color: #F7D976;
  border-top: 1px solid rgba(255,216,58,0.12);
  padding: 46px 0 22px;
}

.site-footer p,
.site-footer a,
.site-footer h3 { color: #F7D976; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3 { margin: 0 0 12px; }
.site-footer a { display: block; margin: 7px 0; }
.footer-brand p { margin: 16px 0; color: #D5C29A; }
.footer-login { display: inline-flex !important; margin-top: 4px !important; }
.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,216,58,0.12);
}
.footer-bottom p { margin: 0; color: #D5C29A; }

@media (max-width: 1080px) {
  .desktop-header { gap: 12px; }
  .nav a { padding: 8px 7px; font-size: 14px; }
  .brand img { width: 116px; }
  .grid-8 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .desktop-header { display: none; }
  .mobile-header {
    min-height: 68px;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 10px;
  }
  .mobile-brand { justify-self: center; }
  .mobile-brand img { width: 118px; }
  .mobile-login { min-height: 38px; padding: 8px 11px; font-size: 13px; }
  .intro-strip,
  .app-band,
  .page-hero,
  .split-row,
  .two-col { grid-template-columns: 1fr; }
  .intro-strip img { width: 100%; max-height: 220px; }
  .grid-3,
  .zone-grid,
  .info-grid,
  .feature-grid,
  .faq-grid,
  .link-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 42px 0; }
  .page-hero { padding: 24px; }
  .slider-arrow { width: 38px; height: 38px; font-size: 24px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
}

@media (max-width: 560px) {
  .container,
  .container-wide { width: min(100% - 22px, 1200px); }
  .grid-8 { grid-template-columns: 1fr; }
  .card,
  .zone-card.no-image,
  .info-card,
  .faq-item,
  .content-card { padding: 18px; }
  .intro-strip,
  .app-band { padding: 20px; border-radius: 18px; }
  .banner-slider { margin: 18px auto 26px; border-radius: 16px; }
  .banner-slider img { max-height: 260px; }
  .quick-pills { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .quick-pills a { white-space: nowrap; }
  .page-title { font-size: 34px; }
}
