/* ========================================
   VisionPlayZone - Simple Flat Design
   French Gambling Portal Style
   ======================================== */

:root {
  --primary: #e77b6a;
  --primary-dark: #d96858;
  --secondary: #f2b2a6;
  --accent: #8b6a52;
  --bg-light: #fff6f1;
  --bg-white: #ffffff;
  --text-dark: #3b2f2a;
  --text-medium: #6a5448;
  --text-light: #8f786c;
  --border: #efd6cd;
  --border-light: #f5e6df;
  --shadow-sm: 0 6px 16px rgba(59, 47, 42, 0.08);
  --shadow-md: 0 12px 30px rgba(59, 47, 42, 0.12);
  --ring: 0 0 0 4px rgba(231, 123, 106, 0.18);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
}

*, *::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:
    radial-gradient(900px 520px at 12% -10%, rgba(231, 123, 106, 0.20), transparent 60%),
    radial-gradient(700px 460px at 90% 10%, rgba(242, 178, 166, 0.26), transparent 55%),
    radial-gradient(650px 520px at 85% 120%, rgba(139, 106, 82, 0.12), transparent 60%),
    var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

*:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 8px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Header / Navigation
   ======================================== */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.82);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(231, 123, 106, 0.22);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-text:hover {
  text-decoration: none;
}

.site-nav {
  display: none;
}

.site-nav-link {
  padding: 8px 12px;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.site-nav-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.age-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  display: none;
}

.menu-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 12px;
  padding: 8px 12px;
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 10px 18px rgba(231, 123, 106, 0.22);
}

.mobile-nav {
  display: none;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav .site-nav-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 241, 0.50));
  padding: 56px 0 42px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  left: -200px;
  top: -240px;
  background: radial-gradient(circle at 35% 35%, rgba(231, 123, 106, 0.32), transparent 62%);
  filter: blur(2px);
  transform: rotate(14deg);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -260px;
  background: radial-gradient(circle at 40% 40%, rgba(242, 178, 166, 0.40), transparent 62%);
  filter: blur(2px);
  transform: rotate(-10deg);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--primary);
}

.hero-text {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 25px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(231, 123, 106, 0.26);
}

.hero-cta:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
  list-style: none;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.hero-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: bold;
}

/* ========================================
   Section Styles
   ======================================== */
.section {
  padding: 40px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(239, 214, 205, 0.7);
  border-bottom: 1px solid rgba(239, 214, 205, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 30px;
}

.section-divider {
  display: block;
  width: 100%;
  height: 42px;
  margin-top: -1px;
}

.section-divider path {
  fill: rgba(255, 255, 255, 0.75);
}

.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ========================================
   Operator Cards
   ======================================== */
.operator-grid {
  display: grid;
  gap: 20px;
}

.operator-tile {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.operator-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(231, 123, 106, 0.35);
}

.operator-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.operator-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.operator-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
}

.score {
  font-weight: 700;
  color: var(--text-dark);
}

.operator-copy {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.operator-offer {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid var(--border-light);
}

.operator-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.operator-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.5;
}

.operator-features li::before {
  content: '';
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 6px 10px rgba(231, 123, 106, 0.18);
  flex: 0 0 10px;
}

.bonus-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bonus-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.operator-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 12px 22px rgba(231, 123, 106, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--bg-light);
  text-decoration: none;
}

/* ========================================
   Info Blocks
   ======================================== */
.info-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.info-block p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 10px;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.info-list {
  list-style: none;
}

.info-list li {
  padding: 12px 15px;
  background: var(--bg-light);
  border-left: 3px solid var(--secondary);
  margin-bottom: 10px;
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ========================================
   Prevention Section
   ======================================== */
.prevention {
  background: #fff1e8;
  border: 1px solid #f2b2a6;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.prevention-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 15px;
}

.prevention-badge span {
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
}

.prevention h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.prevention p {
  color: var(--text-medium);
  margin-bottom: 15px;
}

.prevention-link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  font-weight: 600;
}

.prevention-link:hover {
  background: rgba(139, 106, 82, 0.10);
  text-decoration: none;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--text-dark);
  color: #e7d9d2;
  padding: 40px 0 30px;
}

.site-footer-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

.site-footer h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 15px;
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.site-footer-nav li {
  margin-bottom: 8px;
}

.site-footer-nav a {
  color: #e7d9d2;
  font-size: 0.9rem;
}

.site-footer-nav a:hover {
  color: white;
}

.site-footer-bottom {
  border-top: 1px solid #5b4840;
  padding-top: 25px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
}

.site-footer-bottom a {
  color: #e7d9d2;
}

/* ========================================
   Page Content
   ======================================== */
.page-hero {
  background: rgba(255, 255, 255, 0.78);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-hero h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero p {
  color: var(--text-medium);
}

.page-content {
  padding: 40px 0;
}

.content-box {
  max-width: 800px;
  margin: 0 auto;
}

.article h2 {
  font-size: 1.25rem;
  margin: 30px 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.article h3 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
}

.article p {
  color: var(--text-medium);
  margin-bottom: 15px;
  line-height: 1.7;
}

.article ul, .article ol {
  margin: 15px 0 15px 25px;
  color: var(--text-medium);
}

.article li {
  margin-bottom: 8px;
}

.article a {
  color: var(--primary);
}

.cta-block {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.bonus-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bonus-list li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-medium);
  box-shadow: 0 8px 18px rgba(59, 47, 42, 0.07);
}

.cta-block p {
  margin-bottom: 15px;
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: white;
  padding: 15px 20px;
  z-index: 1000;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--secondary);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.cookie-btn-accept {
  background: var(--secondary);
  color: white;
}

.cookie-btn-decline {
  background: transparent;
  color: white;
  border: 1px solid #5a6c7d;
}

/* ========================================
   Responsive
   ======================================== */
@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
  
  .menu-btn {
    display: none;
  }
  
  .age-badge {
    display: block;
  }
  
  .operator-grid {
    grid-template-columns: 1fr;
  }
  
  .operator-tile {
    display: grid;
    grid-template-columns: 1fr 180px 150px;
    align-items: center;
    gap: 20px;
  }
  
  .operator-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
  
  .operator-copy {
    margin-bottom: 0;
  }
  
  .operator-offer {
    margin-bottom: 0;
  }
  
  .operator-cta {
    flex-direction: column;
  }
  
  .site-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
