/* casinia-smash.com — Main Stylesheet */

* { padding: 0; box-sizing: border-box; margin: 0; }
html { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #fafefd;
  display: flex; flex-direction: column;
  min-height: 100vh; line-height: 1.6; color: #111928; height: 100%;
}
body.no-scroll { overflow: hidden; height: 100vh; }

a { color: inherit; }

/* ── Header ── */
.site-header { background: #131928; position: sticky; top: 0; z-index: 1000; }
.header-inner { padding: 12px 20px; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 36px; display: block; width: auto; }

.desktop-nav { display: none; }
@media (min-width: 768px) { .desktop-nav { display: block; } .menu-toggle { display: none !important; } }
.desktop-nav ul { list-style: none; display: flex; gap: 24px; }
.desktop-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: #fff; }
.desktop-nav a:hover { color: #9aa4b0; }

.menu-toggle { border: none; background: transparent; display: flex; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; background: #1a2035; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 16px 20px; }
.mobile-menu a { text-decoration: none; font-size: 16px; color: #fff; display: block; padding: 10px 0; border-bottom: 1px solid #2a3050; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, #131928, #1e2a45); color: #fff; padding: 48px 20px; text-align: center; }
.hero h1 { font-size: clamp(22px, 4vw, 34px); margin-bottom: 14px; line-height: 1.3; }
.hero p { max-width: 700px; margin: 0 auto; font-size: 16px; color: #b0bac8; line-height: 1.7; }

/* ── Offers ── */
.offers { padding: 32px 20px 48px; max-width: 900px; margin: 0 auto; width: 100%; }
.offer-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px;
  margin-bottom: 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: box-shadow 0.2s;
}
.offer-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.offer-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; color: #fff; width: 100%; }
.badge-top { background: #2563eb; }
.badge-popular { background: #7c3aed; }
.badge-exclusive { background: #dc2626; }
.badge-best { background: #059669; }

.offer-logo img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; border: 1px solid #e5e7eb; }

.offer-info { flex: 1; min-width: 200px; }
.offer-tag { font-size: 11px; font-weight: 600; color: #6b7280; text-transform: uppercase; margin-bottom: 4px; }
.offer-title { font-size: 16px; font-weight: 700; color: #111928; line-height: 1.35; margin-bottom: 4px; }
.offer-tc { font-size: 11px; color: #9ca3af; line-height: 1.5; }

.offer-rating { text-align: center; min-width: 80px; }
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.rating-num { font-size: 20px; font-weight: 800; color: #111928; margin-left: 6px; }
.review-count { font-size: 11px; color: #9ca3af; margin-top: 2px; }

.offer-licence { font-size: 11px; color: #6b7280; margin-top: 4px; }
.offer-licence a { color: #2563eb; text-decoration: underline; }

.offer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #2563eb; color: #fff; text-decoration: none;
  padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: background 0.2s; white-space: nowrap;
}
.offer-cta:hover { background: #1d4ed8; }

/* ── Content Sections ── */
.content-section { padding: 36px 20px; max-width: 800px; margin: 0 auto; }
.content-section h2 { font-size: 22px; margin-bottom: 12px; color: #131928; }
.content-section p { font-size: 15px; color: #374151; margin-bottom: 16px; line-height: 1.7; }

/* ── Disclaimer Banner ── */
.disclaimer-bar { background: #f3f4f6; border-top: 1px solid #e5e7eb; padding: 20px; text-align: center; font-size: 12px; color: #6b7280; line-height: 1.7; }
.disclaimer-bar strong { color: #374151; }

/* ── Footer ── */
.site-footer { background: #131928; color: #b0bac8; padding: 40px 20px; margin-top: auto; }
.footer-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer-logo img { height: 32px; margin-bottom: 20px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 20px; }
.footer-nav a { color: #b0bac8; text-decoration: none; font-size: 13px; }
.footer-nav a:hover { color: #fff; }

.footer-company { font-size: 12px; color: #6b7b8d; margin-bottom: 16px; line-height: 1.7; }
.footer-contact { font-size: 13px; margin-bottom: 20px; }
.footer-contact a { color: #60a5fa; text-decoration: none; }

.footer-badges { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; margin-bottom: 20px; }
.footer-badges img { height: 40px; width: auto; opacity: 0.85; }
.footer-badges .age-badge { height: 44px; }

.footer-legal { font-size: 11px; color: #4b5563; line-height: 1.7; max-width: 700px; margin: 0 auto; }

/* ── Age Modal ── */
.age-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 9999; align-items: center; justify-content: center; }
.age-modal.active { display: flex; }
.age-modal-box { background: #fff; border-radius: 16px; padding: 40px 32px; max-width: 420px; width: 90%; text-align: center; }
.age-modal-box p { font-size: 16px; color: #374151; margin-bottom: 24px; line-height: 1.6; }
.age-modal-box .age-icon { font-size: 48px; margin-bottom: 12px; display: block; }
.btn-age-confirm { background: #2563eb; color: #fff; border: none; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; width: 100%; margin-bottom: 10px; }
.btn-age-confirm:hover { background: #1d4ed8; }
.btn-age-exit { background: transparent; color: #6b7280; border: 1px solid #d1d5db; padding: 12px 32px; border-radius: 8px; font-size: 14px; cursor: pointer; width: 100%; }
.btn-age-exit:hover { background: #f3f4f6; }

/* ── Cookie Banner ── */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: #1a2035; color: #d1d5db; padding: 16px 20px; z-index: 8000; }
.cookie-banner.active { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; }
.cookie-banner p { font-size: 13px; flex: 1; min-width: 200px; }
.cookie-banner p a { color: #60a5fa; text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.btn-cookie-reject { background: transparent; color: #9ca3af; border: 1px solid #4b5563; padding: 8px 20px; border-radius: 6px; cursor: pointer; font-size: 13px; }
.btn-cookie-accept { background: #2563eb; color: #fff; border: none; padding: 8px 20px; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; }

/* ── Inner Pages ── */
.page-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }
.page-content h1 { font-size: 28px; margin-bottom: 20px; color: #131928; }
.page-content h2 { font-size: 20px; margin: 28px 0 10px; color: #1e293b; }
.page-content p { font-size: 15px; color: #374151; margin-bottom: 14px; line-height: 1.7; }
.page-content ul { margin: 0 0 14px 24px; }
.page-content li { font-size: 15px; color: #374151; margin-bottom: 6px; line-height: 1.6; }
.page-content a { color: #2563eb; }
