/* ========================================
   DataViewFrance - Peach Flat Design
   FR Gambling Portal
   ======================================== */

:root {
  --main: #e07850;
  --main-deep: #c45d3a;
  --soft: #f4a582;
  --highlight: #d4856a;
  --canvas: #fdf6f2;
  --surface: #ffffff;
  --ink: #4a3832;
  --ink-mid: #7a6058;
  --ink-pale: #a89088;
  --line: #e8d8d0;
  --line-soft: #f0e4dc;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

a {
  color: var(--main);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ========================================
   Top Bar / Menu
   ======================================== */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.brand-name:hover {
  text-decoration: none;
}

.menu {
  display: none;
}

.menu-item {
  padding: 8px 14px;
  color: var(--ink-mid);
  font-size: 0.9rem;
}

.menu-item:hover {
  color: var(--main);
  text-decoration: none;
}

.topbar-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.age-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--highlight);
  padding: 4px 10px;
  border: 1px solid var(--highlight);
  border-radius: 4px;
  display: none;
}

.toggle-btn {
  background: var(--main);
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
}

.toggle-btn:hover {
  background: var(--main-deep);
}

.mobile-menu {
  display: none;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.mobile-menu .menu-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

/* ========================================
   Banner Section
   ======================================== */
.banner {
  background: var(--surface);
  padding: 45px 0 38px;
  border-bottom: 1px solid var(--line);
}

.banner h1 {
  font-size: 1.85rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.banner h1 em {
  color: var(--main);
  font-style: normal;
}

.banner-intro {
  font-size: 1rem;
  color: var(--ink-mid);
  margin-bottom: 22px;
  line-height: 1.7;
  max-width: 680px;
}

.banner-action {
  display: inline-block;
  padding: 12px 26px;
  background: var(--main);
  color: white;
  border-radius: 6px;
  font-weight: 600;
}

.banner-action:hover {
  background: var(--main-deep);
  text-decoration: none;
}

/* ========================================
   Block Styles
   ======================================== */
.block {
  padding: 38px 0;
}

.block-light {
  background: var(--surface);
}

.block-title {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.block-title em {
  color: var(--main);
  font-style: normal;
}

.block-lead {
  color: var(--ink-mid);
  margin-bottom: 28px;
}

/* ========================================
   Platform Cards
   ======================================== */
.platform-list {
  display: grid;
  gap: 18px;
}

.platform-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}

.platform-top {
  margin-bottom: 14px;
}

.platform-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.platform-text {
  color: var(--ink-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.platform-offer {
  background: linear-gradient(135deg, #fef0e8 0%, #fdf6f2 100%);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-left: 3px solid var(--soft);
}

.offer-tag {
  font-size: 0.72rem;
  color: var(--ink-pale);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.offer-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--main);
}

.platform-points {
  list-style: none;
  margin-bottom: 16px;
}

.platform-points li {
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  color: var(--ink-mid);
  font-size: 0.9rem;
}

.platform-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--soft);
}

.platform-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease;
}

.cta-main {
  background: var(--main);
  color: white;
}

.cta-main:hover {
  background: var(--main-deep);
  text-decoration: none;
}

.cta-alt {
  background: transparent;
  color: var(--main);
  border: 1px solid var(--main);
}

.cta-alt:hover {
  background: var(--canvas);
  text-decoration: none;
}

/* ========================================
   Content Boxes
   ======================================== */
.content-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 18px;
}

.content-box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.content-box p {
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 10px;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.highlight-list {
  list-style: none;
}

.highlight-list li {
  padding: 12px 16px;
  background: var(--canvas);
  border-left: 3px solid var(--soft);
  margin-bottom: 10px;
  color: var(--ink-mid);
  font-size: 0.95rem;
}

/* ========================================
   Warning Notice
   ======================================== */
.warning-notice {
  background: linear-gradient(135deg, #fef6f0 0%, #fdf2ea 100%);
  border: 1px solid var(--soft);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
}

.warning-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--highlight);
  border-radius: 50%;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
}

.warning-notice h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.warning-notice p {
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.warning-link {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--highlight);
  border-radius: 6px;
  color: var(--main-deep);
  font-weight: 600;
}

.warning-link:hover {
  background: rgba(212, 133, 106, 0.1);
  text-decoration: none;
}

/* ========================================
   Site Footer
   ======================================== */
.site-footer {
  background: #3d2f2a;
  color: #c8b8b0;
  padding: 38px 0 28px;
}

.footer-cols {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-age-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #c8b8b0;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

.footer-end {
  border-top: 1px solid #5a4a42;
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-end a {
  color: #c8b8b0;
}

/* ========================================
   Page Header & Content
   ======================================== */
.page-top {
  background: var(--surface);
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.page-top h1 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.page-top h1 em {
  color: var(--main);
  font-style: normal;
}

.page-top p {
  color: var(--ink-mid);
}

.page-body {
  padding: 38px 0;
}

.page-inner {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.2rem;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.prose h3 {
  font-size: 1.05rem;
  margin: 18px 0 10px;
}

.prose p {
  color: var(--ink-mid);
  margin-bottom: 14px;
  line-height: 1.7;
}

.prose ul, .prose ol {
  margin: 14px 0 14px 24px;
  color: var(--ink-mid);
}

.prose li {
  margin-bottom: 8px;
}

.prose a {
  color: var(--main);
}

.action-box {
  text-align: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.action-box p {
  margin-bottom: 14px;
}

/* ========================================
   Consent Bar
   ======================================== */
.consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3d2f2a;
  color: white;
  padding: 14px 18px;
  z-index: 1000;
}

.consent-bar.hidden {
  display: none;
}

.consent-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consent-msg {
  font-size: 0.85rem;
  line-height: 1.6;
}

.consent-msg a {
  color: var(--soft);
}

.consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.consent-btn {
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.consent-yes {
  background: var(--soft);
  color: #3d2f2a;
}

.consent-no {
  background: transparent;
  color: white;
  border: 1px solid #6a5a52;
}

/* ========================================
   Responsive
   ======================================== */
@media (min-width: 768px) {
  .menu {
    display: flex;
  }
  
  .toggle-btn {
    display: none;
  }
  
  .age-tag {
    display: block;
  }
  
  .platform-list {
    grid-template-columns: 1fr;
  }
  
  .platform-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 18px;
  }
  
  .footer-cols {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .consent-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .banner h1 {
    font-size: 2.1rem;
  }
  
  .platform-item {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ========================================
   Bonus List
   ======================================== */
.promo-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.promo-list li {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 10px;
  color: var(--ink-mid);
}

.promo-list li strong {
  color: var(--ink);
}

/* ========================================
   Info Grid
   ======================================== */
.info-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.info-card p {
  color: var(--ink-mid);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ========================================
   Operator Detail Page
   ======================================== */
.detail-offer {
  background: linear-gradient(135deg, #fef0e8 0%, #fdf6f2 100%);
  border: 1px solid var(--soft);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 24px;
  text-align: center;
}

.detail-offer .offer-tag {
  display: block;
  margin-bottom: 6px;
}

.detail-offer .offer-amount {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 14px;
}

.prose ul {
  list-style: none;
  padding-left: 0;
}

.prose ul li {
  padding-left: 20px;
  position: relative;
}

.prose ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--soft);
  font-weight: bold;
}
