@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

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

:root {
  --cream: #F5EDD3;
  --white: #ffffff;
  --heading: #7B2D1E;
  --body: #2a2a2a;
  --muted: #555555;
  --nav-active: #8BBE2A;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --radius: 10px;
  --max-w: 1200px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── HEADER ─────────────────────────────────── */
header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}

.nav-logo img { height: 58px; width: auto; flex-shrink: 0; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
  padding: 6px 8px;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--nav-active); }

.nav-links a.active {
  background: var(--nav-active);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
}

.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-social a {
  color: #444;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.nav-social a:hover {
  background: var(--heading);
  color: var(--white);
}

/* ── UTILITIES ───────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-pad { padding: 72px 32px; }

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.btn-primary {
  background: var(--heading);
  color: var(--white);
  padding: 13px 36px;
  border-radius: 24px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.88; }

/* ── HERO CAROUSEL ───────────────────────────── */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.carousel-track {
  display: flex;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  background: var(--cream);
}

.carousel-slide-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 48px 32px 32px;
  gap: 32px;
  min-height: 480px;
}

.carousel-slide-inner.reverse {
  direction: rtl;
}
.carousel-slide-inner.reverse > * {
  direction: ltr;
}

.carousel-text h1,
.carousel-text h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 10px;
}

.carousel-text .tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}

.carousel-text p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 500px;
}

.carousel-img {
  text-align: center;
}

.carousel-img img {
  max-height: 420px;
  width: 100%;
  object-fit: contain;
}

/* nav buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s;
  z-index: 10;
  color: var(--heading);
}

.carousel-btn:hover { background: var(--white); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

/* dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 24px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dots button.active {
  background: var(--heading);
  transform: scale(1.25);
}

/* ── HP HERO ─────────────────────────────────── */
.hp-hero { background: var(--cream); }

.hp-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  min-height: 480px;
}

.hp-hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hp-hero-text p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 500px;
}

.hp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hp-hero-btns a img {
  height: 52px;
  width: auto;
  transition: opacity 0.2s, transform 0.2s;
}

.hp-hero-btns a img:hover { opacity: 0.85; transform: translateY(-2px); }

.hp-hero-img { text-align: center; }

.hp-hero-img img { max-height: 460px; width: 100%; object-fit: contain; }

/* ── WHY CARDS (image + dark label) ─────────── */
.why-card {
  border-radius: 12px;
  overflow: visible;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  background: #160f4e;
}

.why-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.why-card-img .why-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-card-img .why-overlay {
  position: absolute;
  bottom: -18px;
  right: 10px;
  height: 88px;
  width: auto;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.why-card-label {
  background: #160f4e;
  color: #fff;
  text-align: center;
  padding: 14px 12px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 0 12px 12px;
}

/* ── TITLE DICE ROW ──────────────────────────── */
.title-dice-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.title-dice { height: 44px; width: auto; flex-shrink: 0; }

.title-dice-label {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin: 0;
  flex: 1;
}

/* ── HP ABOUT ────────────────────────────────── */
.hp-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hp-about-img img {
  width: 100%;
  object-fit: contain;
  max-height: 460px;
}

.hp-about-text p {
  color: #333;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── HP VIDEO ────────────────────────────────── */
.hp-video-section { background: var(--white); }

.hp-video-title {
  text-align: center;
  margin-bottom: 36px;
}

.hp-video-title .subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 8px;
}

.hp-video-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading);
}

.hp-video-wrap {
  max-width: 800px;
  margin: 0 auto 36px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hp-video-wrap video {
  width: 100%;
  display: block;
}

/* ── HOME BANNER ─────────────────────────────── */
.home-banner {
  background: var(--cream);
  overflow: hidden;
}

.home-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 32px 20px;
  gap: 24px;
  min-height: 480px;
}

.banner-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 10px;
}

.banner-text .tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
}

.banner-text p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 500px;
}

.banner-img { text-align: center; }

.banner-img img {
  max-height: 440px;
  object-fit: contain;
  margin: 0 auto;
}

/* ── DOWNLOAD BUTTONS ────────────────────────── */
.download-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.download-buttons img {
  height: 44px;
  width: auto;
  transition: opacity 0.2s, transform 0.2s;
}

.download-buttons img:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── WHY CAROUSEL ────────────────────────────── */
.why-carousel-outer {
  position: relative;
  overflow: hidden;
}

.why-carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.why-carousel-track .why-card {
  flex: 0 0 100%;
  min-width: 100%;
}

/* Taller image for full-width single-card display */
.why-carousel-track .why-card-img {
  height: 420px;
}

.why-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.why-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.why-carousel-dots button.active {
  background: var(--heading);
  transform: scale(1.3);
}

/* ── WHY CAROUSEL CONTROLS ───────────────────── */
.why-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 0 4px;
}

.why-arrow {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.why-arrow:hover {
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ── CLOUD DIVIDER ───────────────────────────── */
.cloud-divider {
  line-height: 0;
  overflow: hidden;
  margin-top: -2px;
}

.cloud-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ── TWO-COLUMN ──────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 440px;
  object-fit: contain;
}

.two-col-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.two-col-text p {
  color: #444;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 22px 0;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
  cursor: pointer;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── ABOUT PAGE ──────────────────────────────── */
.about-intro {
  background: var(--cream);
}

.about-intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 32px;
  gap: 48px;
}

.about-intro-img img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.about-intro-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-intro-text p {
  color: #333;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

/* ── FEATURES PAGE ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── BLOG ────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-thumb {
  width: 100%;
  height: 180px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body { padding: 20px; }

.blog-card .date {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 8px;
  font-weight: 500;
}

.blog-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.45;
}

.blog-card p {
  font-size: 0.84rem;
  color: var(--muted);
}

.blog-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading);
  border-bottom: 1.5px solid var(--heading);
  padding-bottom: 1px;
}

.blog-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ── RULES PAGE ──────────────────────────────── */
.rules-hero {
  background: var(--cream);
  padding: 60px 32px;
  text-align: center;
}

.rules-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 14px;
}

.rules-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.rules-step {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.rules-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--heading);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.rules-step-content h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: 6px;
}

.rules-step-content p {
  color: #444;
  font-size: 0.93rem;
}

.rules-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
}

.rules-summary h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
}

.rules-summary ul {
  padding-left: 20px;
  color: #444;
}

.rules-summary ul li {
  margin-bottom: 8px;
  font-size: 0.93rem;
}

/* ── CONTACT PAGE ────────────────────────────── */
.contact-page-hero {
  background: var(--cream);
  padding: 60px 32px;
  text-align: center;
}

.contact-page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 12px;
}

.contact-page-hero p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.contact-info-item h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #e0d9cc;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  margin-bottom: 18px;
  background: #fafaf8;
  color: var(--body);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--nav-active);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

/* ── LEGAL PAGES ─────────────────────────────── */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 32px;
}

.legal-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 6px;
}

.legal-content .effective-date {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 40px;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin: 36px 0 10px;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  margin: 22px 0 8px;
}

.legal-content p {
  color: #444;
  margin-bottom: 12px;
  font-size: 0.93rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 14px;
  color: #444;
  font-size: 0.93rem;
}

.legal-content ul li, .legal-content ol li {
  margin-bottom: 6px;
}

/* ── PAGE HERO ───────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 60px 32px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--cream);
  padding: 60px 32px 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: var(--heading);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 0.8; }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--heading); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: #888;
}

.footer-bottom a:hover { color: var(--heading); }

.footer-bottom-links { display: flex; gap: 16px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 599px) {
  .why-carousel-track .why-card-img { height: 280px; }
}

/* ── BLOG POST ───────────────────────────────── */
.post-hero {
  background: var(--cream);
  padding: 48px 32px 0;
}

.post-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.post-meta .post-date { font-weight: 500; }
.post-meta .post-author { color: var(--heading); font-weight: 600; }

.post-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 32px;
}

.post-featured-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
}

.post-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 32px 72px;
}

.post-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading);
  margin: 40px 0 12px;
}

.post-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  margin: 28px 0 10px;
}

.post-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 20px 0 8px;
}

.post-body p {
  color: #333;
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.post-body ul, .post-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: #333;
  font-size: 0.97rem;
  line-height: 1.75;
}

.post-body ul li, .post-body ol li { margin-bottom: 6px; }

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 32px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.post-back:hover { border-color: var(--heading); }

/* ── BURGER BUTTON ───────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ───────────────────────── */
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 8px 0 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  padding: 0 24px;
}

.nav-mobile ul li a {
  display: block;
  padding: 13px 0;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}

.nav-mobile ul li:last-child a { border-bottom: none; }

.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { color: var(--nav-active); }

.nav-mobile-social {
  display: flex;
  gap: 14px;
  padding: 16px 24px 0;
}

.nav-mobile-social a {
  color: #444;
  font-size: 1.05rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.nav-mobile-social a:hover {
  background: var(--heading);
  color: var(--white);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-burger { display: flex; }
  .nav-wrapper { padding: 0 20px; }
  .carousel-slide-inner { grid-template-columns: 1fr; min-height: auto; padding: 32px 20px 16px; }
  .carousel-slide-inner.reverse { direction: ltr; }
  .carousel-img { order: -1; }
  .carousel-text h1, .carousel-text h2 { font-size: 1.7rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.1rem; }
  .hp-hero-inner { grid-template-columns: 1fr; padding: 32px 20px; }
  .hp-hero-img { order: -1; }
  .hp-hero-text h1 { font-size: 1.9rem; }
  .hp-about { grid-template-columns: 1fr; gap: 32px; }
  .title-dice-label { font-size: 1.2rem; }

  .home-banner-inner,
  .about-intro-inner,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .two-col.reverse { direction: ltr; }

  .banner-img { order: -1; }

  .why-grid,
  .features-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .banner-text h1,
  .about-intro-text h1 { font-size: 1.9rem; }

  .section-heading h2,
  .page-hero h1,
  .rules-hero h1,
  .contact-page-hero h1 { font-size: 1.8rem; }

  .section-pad { padding: 48px 20px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}
