/* ====== Base / Reset ====== */
*,
*::before,
*::after { 
  box-sizing: border-box; 
}

html, body { 
  height: 100%; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans, "Apple Color Emoji","Segoe UI Emoji";
  color: #e7d8c3;
  background: #180a05;
  line-height: 1.45;
}

/* ====== Mobile First Layout ====== */
.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0e0a06;
  border-bottom: 1px solid #3a2d20;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #f6f7f7;
  color: black;
  border-right: 1px solid #3a2d20;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: left 0.3s ease;
  z-index: 200;
  overflow-y: auto;
}

.sidebar.sidebar--open {
  left: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 150;
}

.sidebar-overlay.sidebar-overlay--open {
  opacity: 1;
  visibility: visible;
}

.content {
  flex: 1;
  background: #180a05;
}

/* ====== Burger Menu ====== */
.burger-menu {
  display: flex;
  flex-direction: column;
  width: 34px;
  height: 24px;
  cursor: pointer;
  justify-content: space-between;
  background: #1f1209;
}

.burger-line {
  width: 100%;
  height: 2px;
  background: #e7d8c3;
  transition: all 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transform-origin: center;
}

.burger-menu.burger-menu--open .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.burger-menu--open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.burger-menu--open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ====== Helpers ====== */
.container { 
  width: calc(100% - 32px); 
  margin: 0 auto; 
  max-width: 1200px;
}

.section-title { 
  margin: 0 0 16px; 
  font-size: 24px; 
  font-weight: 700; 
  color: #f1e5d2; 
  text-align: center; 
  text-transform: uppercase; 
  letter-spacing: 0.02em; 
}

.page-content { 
  margin: 24px auto 0; 
  width: 100%; 
  color: #ead9c4; 
  font-size: 16px; 
}

.page-content h2, 
.page-content h3 { 
  color: #f1e5d2; 
}

.page-content a { 
  color: #e2b057; 
}

/* ====== Logo / Auth ====== */
.logo__img { 
  display: flex; 
  align-items: center; 
  min-height: 100px;
  gap: 8px; 
  text-decoration: none; 

  color: #fff; 
}

.logo__title { 
  display: none;
  font-weight: 800; 
  letter-spacing: 0.5px; 
  font-size: 16px;
}

.auth { 
  display: inline-flex;
  gap: 5px;
}

/* ====== Buttons ====== */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 6px; 
  padding: 8px 12px; 
  border-radius: 6px; 
  text-decoration: none; 
  font-weight: 700; 
  font-size: 14px;
  cursor: pointer; 
  transition: all 0.2s ease; 
  position: relative; 
  overflow: hidden; 
  transform: translateY(0); 
  border: none;
}

.btn--outline { 
  border: 2px solid #d8a657; 
  color: #d8a657; 
  background: transparent; 
}

.btn--outline:hover { 
  background: #1f1209; 
}

.btn--primary { 
  background: #c64824; 
  color: #fff; 
  border: 2px solid transparent; 
}

.btn--primary:hover { 
  background: #d7603d; 
}

.btn--hero { 
  background: #c64824; 
  color: #fff; 
  padding: 12px 18px; 
  border-radius: 8px; 
  font-size: 16px;
}

.btn:hover:not(:disabled) { 
  transform: translateY(-1px); 
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
}

.btn:active:not(:disabled) { 
  transform: translateY(1px); 
  box-shadow: 0 1px 2px rgba(0,0,0,0.2); 
}

.btn::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: -100%; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); 
  transition: left 0.5s; 
}

.btn:hover::before { 
  left: 100%; 
}

/* ====== Sidebar Nav ====== */
.side-nav__list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.side-nav__link { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 12px; 
  color: #e7d8c3; 
  text-decoration: none; 
  border-radius: 8px; 
  transition: 0.2s ease; 
}

.side-nav__link:hover { 
  background: #9c795f; 
}

.side-nav__icon { 
  width: 24px; 
  height: 24px; 
  object-fit: contain; 
  filter: drop-shadow(0 0 0 rgba(0,0,0,0)); 
}

.side-nav__text { 
  font-weight: 600; 
  font-size: 14px;
  color: black;
}

.side-nav__app { 
  margin-top: auto; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 12px; 
  border-top: 1px solid #3a2d20; 
  color: #e7d8c3; 
  text-decoration: none; 
  border-radius: 8px;
  transition: 0.2s ease;
}

.side-nav__app:hover { 
  background: #1a120c; 
}

/* ====== Hero ====== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 400px; /* или фиксированная высота, если нужен экранный баннер */
  max-width: 1200px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.8;
      width: auto !important;

}


.hero__inner { 
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px; 
  width: 100%; 
  margin: 0 auto;
  z-index: 0;
}

.hero__panel { 
  background: #d3b183; 
  color: #5a250c; 
  border-radius: 16px; 
  border: 3px solid #9c5b30; 
  padding: 20px; 
  box-shadow: 0 8px 20px rgba(0,0,0,.35); 
  text-align: center;
  width: 100%;
  max-width: 400px;
  order: 1;
  position: relative;
  z-index: 2;
}

.hero__badge { 
  display: block; 
  margin: 0 auto 8px; 
  width: 48px;
  height: 48px;
}

.hero__title { 
  margin: 4px 0 6px; 
  font-family: "Cormorant SC", serif; 
  font-weight: 700; 
  font-size: 24px; 
  text-align: center; 
}

.hero__subtitle { 
  margin: 0 0 16px; 
  text-align: center; 
  font-size: 14px; 
}

.hero__image { 
  display: none; /* Скрываем на мобильных, используем как фон */
}

/* ====== Hero Nav Row ====== */
.hero-nav { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 12px; 
  padding: 16px; 
  list-style: none; 
  margin: 0; 
  backdrop-filter: blur(2px);

  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.8)); 
  z-index: 2 !important;
}

.hero-nav__link { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 6px; 
  color: #e8e0d2; 
  text-decoration: none; 
  padding: 8px 10px; 
  border-radius: 10px; 
  transition: 0.2s ease; 
  min-width: 60px;
 z-index: 2 !important;
}

.hero-nav__link:hover { 
  background: #20140d; 
   z-index: 2 !important;
}

.hero-nav__icon { 
  width: 28px; 
  height: 28px; 
  object-fit: contain; 
   z-index: 2 !important;
     box-shadow: 2px 2px 23px 11px#19130e;
}

.hero-nav__text { 
  font-size: 12px; 
  font-weight: 600; 
  text-align: center;
   z-index: 2 !important;
}

/* ====== Games Grid ====== */
.games { 
  background: #f6f7f7; 
  color: #19130e; 
  padding: 24px 0; 
  border-top-left-radius: 20px; 
  border-top-right-radius: 20px; 
}

.games .section-title { 
  color: #1b130e; 
  margin-bottom: 20px;
}

.games-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 12px; 
}

.game-card { 
  background: #ffffff; 
  border-radius: 12px; 
  overflow: hidden; 
  box-shadow: 0 6px 12px rgba(0,0,0,.15); 
  display: flex; 
  flex-direction: column; 
  transition: transform 0.2s ease;
}

.game-card:hover {
  transform: translateY(-2px);
}

.game-card__image { 
  position: relative; 
  aspect-ratio: 16/19; 
  background: #ddd; 
  overflow: hidden;
}

.game-card__image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  transition: all 0.3s ease;
}

.game-card__label { 
  position: absolute; 
  top: 8px; 
  left: 8px; 
  background: #d9402c; 
  color: #fff; 
  font-weight: 800; 
  font-size: 10px; 
  padding: 4px 6px; 
  border-radius: 4px; 
  text-transform: uppercase; 
  letter-spacing: 0.04em; 
  z-index: 2;
}

/* ====== Game Card Overlay ====== */
.game-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card:hover .game-card__image img {
  filter: blur(2px);
  transform: scale(1.05);
}

.game-card__overlay .btn {
  font-size: 12px;
  padding: 6px 12px;
  min-width: 80px;
}

.game-card__info { 
  padding: 8px 10px 12px; 
  background: fff; 
}

.game-card__title { 
  margin: 0 0 4px; 
  font-size: 14px; 
  font-weight: 800; 
  color: #23160d; 
  line-height: 1.2;
}

.game-card__provider { 
  margin: 0; 
  color: #6d5d49; 
  font-size: 11px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.04em; 
}

/* ====== FOOTER STYLES ====== */

.footer {
  background: #f6f7f7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  background-color: #f6f7f7;
}

/* Провайдеры игр */
.footer__providers {
  text-align: center;
}

.footer__providers::before {
  content: "";
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Способы оплаты */
.footer__payments {
  text-align: center;
}

.footer__payments::before {
  content: "";
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ответственная игра */
.footer__responsible {
  text-align: center;
}

.footer__responsible::before {
  content: "";
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Общие стили для списков */
.footer-logo,
.footer-caution {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-width: 100px !important;
}

.footer-logo li,
.footer-caution li {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);

}

.footer-logo li:hover,
.footer-caution li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Изображения в футере */
.footer-logo img,
.footer-caution img {
  max-width: 60px;
  max-height: 40px;
  width: auto;
  height: auto;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  transition: filter 0.3s ease;
}

.footer-logo li:hover img,
.footer-caution li:hover img {
  filter: brightness(1.1) contrast(1.2);
}

/* Специальные стили для responsible gaming */
.footer-caution img {
  max-width: 80px;
  max-height: 80px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 15px;
    margin-top: 40px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .footer__providers::before,
  .footer__payments::before,
  .footer__responsible::before {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .footer-logo,
  .footer-caution {
    gap: 10px;
  }
  
  .footer-logo li,
  .footer-caution li {
    padding: 10px;
  }
  
  .footer-logo img,
  .footer-caution img {
    max-width: 50px;
    max-height: 35px;
  }
  
  .footer-caution img {
    max-width: 45px;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .footer-logo,
  .footer-caution {
    gap: 8px;
  }
  
  .footer-logo li,
  .footer-caution li {
    padding: 8px;
  }
  
  .footer-logo img,
  .footer-caution img {
    max-width: 40px;
    max-height: 30px;
  }
  
  .footer-caution img {
    max-width: 35px;
    max-height: 35px;
  }
}

/* Дополнительные эффекты */
.footer-logo li,
.footer-caution li {
  position: relative;
  overflow: hidden;
}

.footer-logo li::before,
.footer-caution li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-logo li:hover::before,
.footer-caution li:hover::before {
  left: 100%;
}



/* ====== Skeleton Loading ====== */
.image--loading { 
  background: linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%); 
  background-size: 200% 100%; 
  animation: skeleton 1.5s infinite; 
}

@keyframes skeleton { 
  0% { background-position: 200% 0; } 
  100% { background-position: -200% 0; } 
}

/* ====== Accessibility ====== */
@media (prefers-contrast: high) {
  .btn-primary { border: 2px solid #fff; }
  .btn-secondary { border: 2px solid #000; }
  .text-color-gold, .text-color-yellow { color: #000 !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { 
    animation-duration: 0.01ms !important; 
    animation-iteration-count: 1 !important; 
    transition-duration: 0.01ms !important; 
  }
  .btn::before { display: none; }
}

/* ====== Print ====== */
@media print {
  .header, .footer, .btn, .sidebar, .sidebar-overlay { display: none !important; }
  .layout { display: block; }
  .games { background: #fff !important; color: #000 !important; }
}

/* ====== Tablet ====== */
@media (min-width: 768px) {
  .container {
    width: calc(100% - 64px);
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  
  .hero__inner {
    width: calc(100% - 64px);
    gap: 20px;
    position: relative;
    z-index: 0; /* поверх фона */
  }

  .hero__panel {
    max-width: 500px;
    padding: 24px;
    position: relative;
    z-index: 3; /* надпись с предложением поверх меню */
  }

  .hero__title {
    font-size: 28px;
    position: relative;
    z-index: 3;
  }

  .hero__subtitle {
    font-size: 16px;
    position: relative;
    z-index: 3;
  }

  .hero__image {
    max-width: 400px;
    display: none; /* фон заменяет изображение */
  }

  .hero-nav {
    gap: 16px 20px;
    padding: 18px;
    position: relative;
    z-index: 4; /* кнопки меню выше картинки, ниже панели */
  }

  .hero-nav__icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
  }

  .hero-nav__text {
    font-size: 13px;
    position: relative;
    z-index: 2;
  }

  
  .game-card__title {
    font-size: 15px;
  }
  
  .game-card__provider {
    font-size: 12px;
  }
  
  .auth {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  
  .auth .btn {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* ====== Desktop ====== */
@media (min-width: 1024px) {
  .hero::before {

    background-size: contain;
    background-position: center right;
  }
  
  .layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-areas: "sidebar content";
  }
  
  .header {
    display: none;
  }
  
  .sidebar {
    position: static;
    grid-area: sidebar;
    left: 0;
    width: auto;
    height: auto;
    z-index: auto;
  }
  
  .sidebar-overlay {
    display: none;
  }
  
  .content {
    grid-area: content;
  }
  
  .container {
    width: min(1200px, 100% - 40px);
  }
  
  .section-title {
    font-size: 40px;
    margin-bottom: 18px;
  }
  
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .hero {
    padding: 28px 0 12px;
  }
  
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: stretch;
    gap: 24px;
    width: min(1250px, 100% - 40px);
    z-index: 0;
  }
  
  .hero__panel {
    align-self: center;
    max-width: none;
    padding: 28px 26px;
    border-radius: 18px;
    border: 4px solid #9c5b30;
    order: unset;
  }
  
  .hero__title {
    font-size: 36px;
    margin: 6px 0 8px;
  }
  
  .hero__subtitle {
    font-size: 18px;
    margin: 0 0 18px;
  }
  
  .hero__image {
    align-self: end;
    max-width: none;
    order: unset;
  }
  
  .hero__badge {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }
  
  .hero-nav {
    gap: 18px 24px;
    padding: 18px 16px 8px;
  }
  
  .hero-nav__icon {
    width: 36px;
    height: 36px;
  }
  
  .hero-nav__text {
    font-size: 14px;
  }
  
  .logo__title {
    font-size: 18px;
  }
  
  .logo {
    gap: 12px;
  }
  
  .auth {
    flex-direction: column;
    gap: 12px;
  }
  
  .auth .btn {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .btn {
    padding: 10px 14px;
    font-size: 14px;
    gap: 8px;
  }
  
  .btn--hero {
    padding: 14px 22px;
    border-radius: 10px;
  }
  
  .side-nav__icon {
    width: 28px;
    height: 28px;
  }
  
  .side-nav__text {
    font-size: 16px;
  }
  
  .side-nav__link {
    padding: 10px;
  }
  
  .side-nav__app {
    padding: 12px 10px;
  }
  
  .game-card__title {
    font-size: 16px;
  }
  
  .game-card__provider {
    font-size: 12px;
  }
  
  .game-card__label {
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 6px;
  }
  
  .game-card__overlay .btn {
    font-size: 14px;
    padding: 8px 14px;
    min-width: 100px;
  }
  
  .game-card__overlay {
    flex-direction: column;
    gap: 8px;
  }
  
  .game-card__info {
    padding: 10px 12px 14px;
  }
  
  .footer-logo img, 
  .footer-caution img {
    height: 26px;
  }
  
  .footer-logo, 
  .footer-caution {
    gap: 18px 26px;
    justify-content: flex-start;
  }
}

/* ====== Large Desktop ====== */
@media (min-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1400px) {
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
}


/* ====== Content Block (SCOPED) ====== */
.page-content {
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #19130e;
  background-color: #fffae3;
}

/* Заголовки */
.page-content h1, .page-content h2, .page-content h3,
.page-content h4, .page-content h5, .page-content h6 {
  font-weight: 800;
  line-height: 1.25;
  margin: 5px;
  padding-top: 5px;
  color: #23160d;
}
.page-content h1 { font-size: 1.6rem; }
.page-content h2 { font-size: 1.4rem; }
.page-content h3 { font-size: 1.2rem; }
.page-content h4 { font-size: 1.05rem; }
.page-content h5 { font-size: 0.95rem; }
.page-content h6 { font-size: 0.85rem; }

/* Текст */
.page-content p { margin: 5px; padding-top: 5px; }
.page-content strong { font-weight: 700; }
.page-content em { font-style: italic; }

/* Ссылки */
.page-content a { color: #d9402c; text-decoration: none; transition: color .2s ease; }
.page-content a:hover { color: #b22f1f; }

/* Списки */
.page-content ul, .page-content ol {
  padding-left: 20px;
  margin: 5px 5px 10px 20px;
}
.page-content ul li, .page-content ol li { margin: 0.4em 0; line-height: 1.5; }
.page-content ul li::marker { color: #d9402c; }

/* Таблицы */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff2e3;
  box-shadow: #f9ffe3;
  border-radius: 8px;
  display: block;
  overflow-x: auto;

}
.page-content thead { background: #19130e; color: #fff; }
.page-content thead th { text-align: left; font-weight: 700; padding: 10px 12px; font-size: 0.9rem; }
.page-content tbody tr:nth-child(even) { background: #f6f7f7; }
.page-content td { padding: 10px 12px; border-top: 1px solid #e2e2e2; }

/* Картинки */
.page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin: 1em 0;
}

/* Цитаты */
.page-content blockquote {
  border-left: 4px solid #d9402c;
  padding: 0.5em 1em;
  margin: 1em 0;
  color: #6d5d49;
  background: #fff;
  border-radius: 6px;
  font-style: italic;
}

/* Адаптив для контента */
@media (min-width: 600px) {
  .page-content { font-size: 16px; }
  .page-content h1 { font-size: 2rem; }
  .page-content h2 { font-size: 1.6rem; }
  .page-content h3 { font-size: 1.3rem; }
  .page-content h4 { font-size: 1.1rem; }
  .page-content h5 { font-size: 1rem; }
  .page-content h6 { font-size: 0.9rem; }
}
@media (min-width: 992px) {
  .page-content { font-size: 17px; }
  .page-content h1 { font-size: 2.4rem; }
  .page-content h2 { font-size: 1.9rem; }
  .page-content h3 { font-size: 1.5rem; }
  .page-content h4 { font-size: 1.2rem; }
}


/* ========== FAQ BLOCK ========== */
.faq-block {
  background-color: #fffae3;
  padding: 3rem 2rem;
  margin: 4rem 0;
  border-radius: 1rem;
  border: 1px solid #e0e0e0;
}

.faq-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 2.5rem;
  text-align: center;
}

.faq-item {
  background-color: #370d0d;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  color: #333333;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-item h3 {
  font-size: 1.35rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-item div {
  line-height: 1.7;
  color: #e8eaed;
}

.faq-item:hover {
  background-color: #523d12;
  transform: translateY(-3px);
  border-color: #ffd700;
  box-shadow: 0 8px 20px rgba(78, 165, 34, 0.15);
}

@media (max-width: 768px) {
  .faq-block {
    padding: 2rem 1rem;
  }
  
  .faq-heading {
    font-size: 1.75rem;
  }
  
  .faq-item {
    padding: 1.25rem;
  }
  
  .faq-item h3 {
    font-size: 1.2rem;
  }
} 