:root {
  --color-dark-base: rgb(34, 33, 31);
  --color-gold-accent: rgb(200, 178, 140);
  --color-border-soft: #cfcdce;
  --color-surface-muted: rgb(205, 203, 200);
  --color-bg-light: #fcfcfa;
  --color-nav-dark: #26263a;
  --color-bg-white: #fefffe;
  --color-page-dark: #1c1e28;
  --color-gold-alt: rgb(200, 178, 138);
  --color-footer-dark: #191b24;
  --color-ui-light: #eef0f1;
  --color-green-cta: #3b6b4e;
  --color-bg-faint: rgb(243, 244, 246);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  color: var(--color-dark-base);
  background: var(--color-bg-faint);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.body-locked {
  height: 100vh;
  overflow: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-nav-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
}
.logo-link {
  display: inline-block;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.desktop-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 1.6rem;
}
.nav-link {
  color: var(--color-ui-light);
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--color-gold-alt);
}
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ui-light);
  border-radius: 1px;
}
.mobile-menu {
  display: none;
  background: var(--color-nav-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.9rem 1.5rem;
}
.mobile-menu.open {
  display: block;
}
.mobile-nav-list {
  list-style: none;
}
.mobile-nav-link {
  display: block;
  color: var(--color-ui-light);
  font-size: 1rem;
  padding: 0.55rem 0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover {
  color: var(--color-gold-alt);
}
@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.hero-banner {
  background: var(--color-nav-dark);
  color: var(--color-bg-light);
  text-align: center;
  padding: 2rem 1.5rem 2.25rem;
}
.hero-title {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto 0.6rem;
}
.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero-banner {
    padding: 1.25rem 1rem 1.5rem;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .hero-subtitle {
    display: none;
  }
}
.offers-section {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.5rem;
}
.offers-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url("https://thechosendeck.com/wp-content/themes/thechosendeckn-com/img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}
.offers-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.offers-title {
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-dark-base);
  margin-bottom: 1.6rem;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.3rem;
}
.offer-card {
  background: var(--color-bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.11);
}
.offer-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-dark-base);
  padding: 1.3rem;
  min-height: 175px;
}
.offer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 88px;
  background: var(--color-surface-muted);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 0.8rem;
}
.offer-logo-wrap img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  max-height: 68px;
}
.offer-label {
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}
.articles-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 3.25rem;
}
.info-block {
  background: var(--color-bg-white);
  border-radius: 10px;
  padding: 1.6rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.06);
}
.info-heading {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-dark-base);
  margin-bottom: 0.7rem;
}
.info-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-dark-base);
}
main {
  flex: 1;
}
.site-footer {
  background: var(--color-footer-dark);
  color: var(--color-border-soft);
  padding: 2.25rem 1.5rem;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.1rem;
}
.footer-logo-img {
  display: block;
  width: auto;
  height: 32px;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--color-gold-accent);
  text-decoration: none;
  transition: text-decoration 0.15s;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.88rem;
  margin-bottom: 1.3rem;
}
.footer-contact a {
  color: var(--color-gold-accent);
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.footer-badges a {
  display: inline-block;
}
.footer-badges img {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}
#age-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 999999;
  align-items: center;
  justify-content: center;
}
#age-gate.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.age-gate-wrapper {
  position: relative;
}
.age-gate-box {
  background: var(--color-bg-white);
  border-radius: 10px;
  padding: 1.75rem;
  max-width: 400px;
  margin: 0 1rem;
}
.age-gate-denied {
  display: none;
  background: var(--color-bg-white);
  border-radius: 10px;
  padding: 1.75rem;
  margin: 0 1rem;
}
.age-gate-denied.active {
  display: block;
}
.age-gate-message p {
  color: var(--color-dark-base);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.age-gate-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.btn-confirm-age,
.btn-exit-age {
  border: 1px solid rgb(200, 197, 204);
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  background: rgb(253, 250, 255);
  padding: 0.5rem 1.1rem;
  transition: background 0.15s;
}
.btn-confirm-age:hover,
.btn-exit-age:hover {
  background: rgb(238, 237, 237);
}
#cookie-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-white);
  padding: 1rem 1.5rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.13);
  z-index: 999998;
}
#cookie-bar.active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.cookie-bar-text p {
  font-size: 0.88rem;
  color: var(--color-dark-base);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.cookie-bar-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.btn-cookie-accept,
.btn-cookie-decline {
  background: #ffffff;
  border: 1px solid rgb(200, 200, 203);
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.88rem;
  padding: 0.45rem 1rem;
  transition: background 0.15s;
}
.btn-cookie-accept:hover,
.btn-cookie-decline:hover {
  background: rgb(240, 241, 238);
}
.inner-page-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}
.inner-page-content {
  background: var(--color-bg-white);
  border-radius: 10px;
  padding: 2rem 2.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.inner-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark-base);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.inner-page-date {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 1.4rem;
}
.inner-page-intro {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--color-dark-base);
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-soft);
}
.inner-page-intro a {
  color: var(--color-green-cta);
  text-decoration: none;
}
.inner-page-intro a:hover {
  text-decoration: underline;
}
.inner-section {
  margin-bottom: 1.6rem;
}
.inner-section-heading {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-dark-base);
  margin-bottom: 0.5rem;
}
.inner-section-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-dark-base);
}
.inner-section-text a {
  color: var(--color-green-cta);
  text-decoration: none;
}
.inner-section-text a:hover {
  text-decoration: underline;
}
.faq-item {
  border-bottom: 1px solid var(--color-border-soft);
  padding: 1.3rem 0;
}
.faq-item:first-of-type {
  padding-top: 0.5rem;
}
.faq-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark-base);
  margin-bottom: 0.5rem;
}
.faq-answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-dark-base);
}
.faq-answer a {
  color: var(--color-green-cta);
  text-decoration: none;
}
.faq-answer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .inner-page-content {
    padding: 1.4rem 1.1rem;
  }
  .inner-page-title {
    font-size: 1.4rem;
  }
}