/* ===========================
   BESTCASINOROUTE – main.css
   =========================== */

/* ===== VARIABLES ===== */
:root {
  --brand-dark:      #1a1a1a;
  --brand-accent:    #d4af37;
  --brand-secondary: #2c3e50;
  --brand-light:     #f4f4f4;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white:    #ffffff;
  --font-sans: Helvetica, Arial, sans-serif;
  --font-serif: Georgia, serif;
  --shell-max: 1280px;
  --shell-px: 1.5rem;
  --ease: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--brand-dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; }
button { cursor: pointer; }

/* ===== SHELL ===== */
.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--shell-px);
  width: 100%;
}

/* ===== DECORATORS ===== */
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 0.75rem;
}
.deco-line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: var(--brand-accent);
  margin-bottom: 1rem;
}
.deco-circle {
  width: 10px;
  height: 10px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  flex-shrink: 0;
}
.deco-square {
  width: 18px;
  height: 18px;
  border: 2px solid var(--brand-secondary);
  display: inline-block;
  margin-right: 12px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ===== SITE HEADER ===== */
.site-header {
  background: var(--brand-dark);
  color: #fff;
  position: relative;
  z-index: 50;
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-accent);
  line-height: 1;
}
.brand-mark img { display: none; }

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  transition: color var(--ease);
}
.main-nav a:hover { color: var(--brand-accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #fff;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-shell { position: relative; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-secondary);
    padding: 1.5rem;
    gap: 1rem;
    z-index: 100;
  }
  .main-nav.is-open { display: flex; }
}

/* ===== BUTTONS ===== */
.lux-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--brand-accent);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow 0.3s ease, transform var(--ease);
  cursor: pointer;
  line-height: 1;
}
.lux-btn:hover {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--brand-accent);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.lux-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.lux-btn--ghost:hover {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.3);
}

.lux-btn--dark {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}
.lux-btn--dark:hover {
  background: var(--brand-accent);
  color: var(--brand-dark);
  border-color: var(--brand-accent);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.35);
}

.lux-btn--full {
  display: block;
  text-align: center;
  width: 100%;
}

/* HERO BUTTONS */
.hero-btn {
  background: var(--brand-accent);
  color: var(--brand-dark);
  border: 2px solid var(--brand-accent);
  font-weight: 700;
  padding: 1rem 3rem;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}
.hero-btn:hover {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.45);
  transform: translateY(-3px);
}

.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  padding: 1rem 3rem;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}
.hero-btn-secondary:hover {
  background: var(--brand-accent);
  color: var(--brand-dark);
  border-color: var(--brand-accent);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/img1.webp') center / cover no-repeat;
  filter: brightness(0.35);
  z-index: 0;
}
.hero .shell { position: relative; z-index: 1; }

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero-inner h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-inner p {
  font-size: 1.1rem;
  color: var(--gray-200);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-inner h1 { font-size: 4.5rem; }
}

/* ===== SECTION COMMON ===== */
.section        { padding: 5rem 0; }
.section--alt   { background: var(--brand-light); }
.section--dark  { background: var(--brand-dark); color: #fff; }
.section--secondary { background: var(--brand-secondary); color: #fff; }
.section--accent    { background: var(--brand-accent); color: var(--brand-dark); }
.section--gray  { background: var(--gray-100); }
.section--white { background: #fff; }

.section-center {
  text-align: center;
  margin-bottom: 3rem;
}
.section-center h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}
.section-center p {
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  width: 6rem;
  height: 4px;
  background: var(--brand-accent);
  margin: 1rem auto;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}
.section-head > p {
  color: var(--gray-600);
  max-width: 500px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
}

/* ===== CASINO LIST ===== */
.casino-list { display: flex; flex-direction: column; gap: 1.5rem; }
.casino-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: border-color var(--ease), box-shadow var(--ease);
  border-radius: 8px;
}
.casino-row:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}
@media (min-width: 768px) {
  .casino-row { grid-template-columns: 170px 1fr auto; align-items: center; }
}
.casino-row__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--brand-dark);
  height: 110px;
  min-width: 140px;
  border-radius: 8px;
}
.casino-row__logo img { max-height: 3.5rem; width: auto; object-fit: contain; }
.casino-row__info h2 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 0.5rem; }
.casino-row__info p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 0.75rem; }
.casino-row__info ul { list-style: none; }
.casino-row__info ul li {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.casino-row__info ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  flex-shrink: 0;
}
.casino-row__action { display: flex; align-items: center; }

/* ===== METHOD SECTION ===== */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .method-grid { grid-template-columns: 1fr 1fr; } }
.method-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.method-block p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: #fff;
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--brand-accent);
  border-radius: 8px;
}
.feature strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}
.feature p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: border-color var(--ease);
}
.faq-item:hover { border-color: var(--brand-accent); }
.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-icon {
  color: var(--brand-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform var(--ease);
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-content {
  margin-top: 1rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}
.faq-item.is-open .faq-content { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.08;
  transform: rotate(12deg) scale(1.5);
  pointer-events: none;
}
.cta-section .inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
}
.cta-section p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 2rem;
}

/* ===== CONTENT PAGE ===== */
.content-page { padding: 3rem 0 5rem; }

.rich-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
.rich-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-accent);
  margin-top: 1.5rem;
}
.rich-card h2:first-child { margin-top: 0; }
.rich-card p { color: var(--gray-600); line-height: 1.75; margin-bottom: 0.75rem; font-size: 0.95rem; }
.rich-card a { color: var(--brand-secondary); text-decoration: underline; }
.rich-card a:hover { color: var(--brand-accent); }
.rich-card ul { list-style: disc; padding-left: 1.25rem; color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.75rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--brand-dark);
  color: #fff;
  padding: 5rem 0;
}
.page-hero .eyebrow { color: var(--brand-accent); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-hero p { color: var(--gray-300); max-width: 600px; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .contact-box { grid-template-columns: 1fr 1fr; } }
.contact-method {
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 2rem;
  border-radius: 8px;
}
.contact-method h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-accent);
}
.contact-method p { color: var(--gray-600); line-height: 1.7; font-size: 0.9rem; }
.contact-method a { color: var(--brand-secondary); text-decoration: underline; }
.contact-method a:hover { color: var(--brand-accent); }

/* ===== SIMPLE CENTRE (tak) ===== */
.simple-center { max-width: 600px; margin: 0 auto; }

/* ===== SITE FOOTER ===== */
.site-footer {
  background: var(--brand-dark);
  color: var(--gray-400);
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid #2a2a2a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 0.35rem; }
.footer-brand .age-note { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.5rem; }
.footer-brand .addr-block { font-size: 0.8rem; margin-top: 1rem; line-height: 1.9; }
.site-footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}
.site-footer .footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  transition: color var(--ease);
}
.site-footer .footer-col a:hover { color: var(--brand-accent); }

/* FOOTER LOGOS - IMPROVED */
.resp-logos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.resp-logos a {
  display: inline-block;
  opacity: 0.8;
  transition: opacity var(--ease), transform var(--ease), border-color var(--ease), background var(--ease);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem;
  border-radius: 6px;
}
.resp-logos a:hover {
  opacity: 1;
  transform: scale(1.05);
  border-color: var(--brand-accent);
  background: rgba(212, 175, 55, 0.08);
}
.resp-logos img {
  height: 2.2rem;
  width: auto;
  object-fit: contain;
  display: block;
}
.resp-note { font-size: 0.72rem; color: var(--gray-500); margin-top: 0.75rem; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  border-top: 1px solid #2a2a2a;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: var(--gray-500);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===== COOKIE PANEL ===== */
.cookie-panel {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--brand-dark);
  color: #fff;
  padding: 1.5rem;
  z-index: 9999;
  border-top: 2px solid var(--brand-accent);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-panel[hidden] { display: none; }
.cookie-panel-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cookie-panel-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-panel strong {
  display: block;
  color: var(--brand-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.cookie-panel p { font-size: 0.85rem; color: var(--gray-300); }
.cookie-panel a { color: var(--brand-accent); text-decoration: underline; }
.cookie-panel .cookie-actions { flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-actions { flex-direction: column; }
  .hero-btn, .hero-btn-secondary { width: 100%; }
  .editorial-grid { grid-template-columns: 1fr; }
  .two-col-section { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
}

/* ===== EDITORIAL SECTION ===== */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .editorial-grid { grid-template-columns: 0.92fr 1.08fr; }
}
.editorial-copy {
  display: grid;
  gap: 1.5rem;
}
.editorial-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ===== GAMES SECTION ===== */
.games-content {
  max-width: 900px;
  margin: 0 auto;
}
.games-content p {
  color: var(--brand-dark);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.games-content .lux-btn {
  margin-top: 1.5rem;
}

/* ===== TWO COLUMN SECTION ===== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .two-col-section { grid-template-columns: 1fr 1fr; }
}
.two-col-text-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.two-col-text-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}
.two-col-text-block p {
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.text-link-gold {
  color: var(--brand-accent);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--ease);
}
.text-link-gold:hover {
  color: var(--brand-dark);
}

/* ===== BONUS SECTION ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .bonus-grid { grid-template-columns: 1fr 1fr; }
}
.bonus-block, .responsible-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem;
  border-radius: 8px;
}
.bonus-block h2, .responsible-card h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.bonus-block p, .responsible-card p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.bonus-block .lux-btn--ghost {
  margin-top: 1.5rem;
}
.bg-label {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 0.4rem 1rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-radius: 3px;
  text-transform: uppercase;
}
.responsible-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.responsible-links a {
  color: var(--brand-accent);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--ease);
}
.responsible-links a:hover {
  color: #fff;
}

/* ===== LEGAL FRAMEWORK ===== */
.legal-text {
  margin-bottom: 2rem;
}
.legal-text p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* ===== TIPS BOX ===== */
.tips-box {
  background: var(--gray-100);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--brand-accent);
}
.tips-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .tips-grid { grid-template-columns: repeat(3, 1fr); }
}
.tips-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tip-bar {
  width: 4px;
  height: 40px;
  background: var(--brand-accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.tips-item p {
  color: var(--gray-700);
  line-height: 1.65;
  font-size: 0.9rem;
}

/* ===== AGE RESTRICTION MODAL ===== */
html.kp-age-lock {
  overflow: hidden;
}

.kp-age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  font-family: var(--font-sans);
}

.kp-age-modal {
  position: relative;
  max-width: 480px;
  width: 90%;
  animation: kp-age-slideIn 0.4s ease-out;
}

@keyframes kp-age-slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.kp-age-content {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.kp-age-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: var(--brand-accent);
  color: var(--brand-dark);
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  line-height: 80px;
}

.kp-age-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.kp-age-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.kp-age-content p:last-of-type {
  margin-bottom: 2rem;
}

.kp-age-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 479px) {
  .kp-age-actions {
    grid-template-columns: 1fr;
  }
  .kp-age-content {
    padding: 2.5rem 1.5rem;
  }
  .kp-age-content h2 {
    font-size: 1.5rem;
  }
}

.kp-age-btn {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.kp-age-btn-yes {
  background: var(--brand-accent);
  color: var(--brand-dark);
}

.kp-age-btn-yes:hover {
  background: #fff;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.kp-age-btn-no {
  background: var(--gray-200);
  color: var(--brand-dark);
}

.kp-age-btn-no:hover {
  background: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

