@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Work+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@400,0..1&display=swap');

:root {
  --bg-cream: #F9F6E5;
  --bg-white: #ffffff;
  --text-main: #0f1d28;
  --text-muted: #43474c;
  --text-light: #94a9bd;
  --primary: #132838;
  --primary-container: #2a3e4f;
  --accent-teal: #0d9488;
  --accent-teal-hover: #0f766e;
  --border-color: #e2e8f0;
  --surface-container: #e1efff;
  --surface-container-low: #ecf4ff;
  --star-yellow: #eab308;
  
  --shadow-editorial: 0 4px 12px rgba(42, 62, 79, 0.06);
  --shadow-hover: 0 10px 25px rgba(42, 62, 79, 0.1);
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --container-max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-main);
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Manrope', sans-serif;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-teal {
  background-color: var(--accent-teal);
  color: var(--bg-white);
  padding: 10px 24px;
}

.btn-teal:hover {
  background-color: var(--accent-teal-hover);
  box-shadow: 0 4px 6px rgba(13, 148, 136, 0.2);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-primary:hover {
  background-color: #0f1d28;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 24px;
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* Header */
.site-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 50;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-teal);
}

.nav-links a.active {
  color: var(--accent-teal);
  border-bottom: 2px solid var(--accent-teal);
  padding-bottom: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-box {
  position: relative;
}

.search-box .material-symbols-outlined {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.search-box input {
  padding: 8px 16px 8px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background-color: #f8fafc;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus {
  border-color: var(--accent-teal);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #132838 0%, #2a3e4f 100%);
  color: var(--bg-white);
  height: 358px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
 
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #7eb0ab;
  display: block;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 1.125rem;
  color: #94a9bd;
  opacity: 0.9;
}

/* Warning Ribbon */
.warning-ribbon {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 8px 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
}

/* Main Area */
.main-area {
  margin-top: -48px;
  position: relative;
  z-index: 20;
  padding-bottom: 80px;
}

/* Casino Cards */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.operator-card {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-editorial);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.operator-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.seal-approval {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(45deg, #7eb0ab, #0a4440);
  color: var(--bg-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-bottom-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-xl);
}

.card-logo-box {
  width: 128px;
  height: 128px;
  background-color: var(--surface-container);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
}

.card-logo-box img {
  width: 100%;
  object-fit: cover;
  
  transition: filter 0.3s;
}

.operator-card:hover .card-logo-box img {
  filter: grayscale(0%);
}

.card-info {
  flex-grow: 1;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.stars {
  color: var(--star-yellow);
  display: flex;
}

.card-desc {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: var(--surface-container-low);
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-bonus-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-left: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  min-width: 180px;
}

.bonus-label {
  font-size: 0.75rem;
  color: #64748b;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 4px;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-teal);
  line-height: 1;
}

.bonus-sub {
  font-size: 0.75rem;
  color: #94a3b8;
}

.card-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 192px;
  flex-shrink: 0;
}

.btn-card {
  width: 100%;
  padding: 12px;
}

.link-review {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a9bd;
  text-decoration: none;
}

.link-review:hover {
  text-decoration: underline;
  color: var(--primary);
}

/* Secondary Cards Grid */
.secondary-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.operator-card-small {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-editorial);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.small-card-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.small-logo-box {
  width: 64px;
  height: 64px;
  background-color: var(--surface-container);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.small-logo-box img {
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.operator-card-small:hover .small-logo-box img {
  filter: grayscale(0%);
}

.small-card-info h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.small-card-info p {
  color: var(--accent-teal);
  font-weight: 700;
}

/* Detailed Analysis Grid */
.analysis-section {
    margin-top: 80px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.title-bar {
  width: 48px;
  height: 4px;
  background-color: var(--accent-teal);
  display: block;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
}

.analysis-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.articles-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-box {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.article-box h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.article-box p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-box ul {
  list-style: none;
}

.article-box li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.article-box li .material-symbols-outlined {
  color: var(--accent-teal);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-box {
  background-color: var(--primary-container);
  padding: 24px;
  border-radius: var(--radius-xl);
  color: #94a9bd;
}

.trust-box h4 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.trust-box p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7eb0ab;
}

.trust-badge span:last-child {
  font-weight: 700;
  font-size: 0.75rem;
}

.payment-box {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.payment-box img.hero-img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.payment-box h4 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.payment-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.payment-method {
  background-color: var(--surface-container);
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-method img {
  height: 16px;
}

/* Choice Criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.criteria-card {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  text-align: center;
}

.criteria-card .material-symbols-outlined {
  color: var(--accent-teal);
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.criteria-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.criteria-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Educational Content */
.edu-section {
  margin-top: 80px;
  background-color: var(--bg-white);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.edu-content {
  padding: 48px;
}

.edu-content h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.edu-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edu-box {
  padding: 24px;
  background-color: var(--surface-container-low);
  border-radius: var(--radius-lg);
}

.edu-box h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.edu-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.edu-image {
  background-color: #f1f5f9;
  position: relative;
  min-height: 300px;
}

.edu-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fiscalité */
.fiscal-section {
  margin-top: 80px;
  background-color: #e6e3d2;
  padding: 48px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 48px;
}

.fiscal-left {
  flex: 1;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-circle .material-symbols-outlined {
  color: #605f52;
  font-size: 2rem;
}

.fiscal-right {
  flex: 2;
}

.fiscal-right p.lead {
  font-size: 1.125rem;
  color: #605f52;
  margin-bottom: 16px;
}

.fiscal-right p.small {
  font-size: 0.875rem;
  color: #48473b;
}

/* FAQ */
.faq-section {
  margin-top: 80px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary .material-symbols-outlined {
  transform: rotate(180deg);
}

.details-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsible Banner */
.responsible-banner {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 48px 0;
  margin-top: 80px;
}

.resp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: center;
}

.resp-left h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.resp-left p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.resp-center {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
}

.resp-center img {
  height: 64px;
  object-fit: contain;
  opacity: 0.8;
  filter: invert(1) grayscale(100%);
}

.phone-block {
  text-align: center;
}

.phone-block span {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
}

.phone-block p {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.resp-right {
  text-align: right;
}

/* Footer */
.site-footer {
  background-color: #fff7ed;
  border-top: 1px solid var(--border-color);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  font-size: 0.875rem;
  color: #475569;
}

.footer-left .footer-logo img {
  width: 90px
}

.footer-left p {
  max-width: 400px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-left p.copyright {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
}

.footer-right a {
  color: #64748b;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right a.anj-link {
  color: #0f766e;
  font-weight: 700;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .analysis-grid, .edu-section {
    grid-template-columns: 1fr;
  }
  .card-bonus-info {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-nav {
    height: 56px;
  }
  .header-logo img {
    height: 36px;
  }
  .header-nav .nav-links, .header-nav .search-box {
    display: none;
  }
  .hero-section {
    height: auto;
    min-height: 0;
    padding: 24px 0;
  }
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
  .hero-desc {
    font-size: 0.875rem;
  }
  .hero-label {
    font-size: 0.625rem;
    margin-bottom: 4px;
  }
  .warning-ribbon {
    padding: 4px 0;
    font-size: 0.625rem;
  }
  .main-area {
    margin-top: 0;
    padding-bottom: 48px;
  }
  .operator-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 16px;
  }
  .card-logo-box {
    width: 80px;
    height: 80px;
    padding: 10px;
  }
  .seal-approval {
    position: static;
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
  }
  .card-header {
    justify-content: center;
  }
  .card-header h3 {
    font-size: 1.25rem;
  }
  .card-tags {
    justify-content: center;
  }
  .card-cta {
    width: 100%;
  }
  .secondary-cards {
    grid-template-columns: 1fr;
  }
  .criteria-grid {
    grid-template-columns: 1fr;
  }
  .fiscal-section {
    flex-direction: column;
    text-align: center;
  }
  .resp-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .resp-center {
    flex-direction: column;
    gap: 24px;
  }
  .resp-right {
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-right {
    justify-content: center;
  }
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 29, 40, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.age-gate-modal {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.age-gate-modal .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 24px;
}

.age-gate-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.age-gate-modal p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.age-gate-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-yes, .btn-no {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-no {
    background-color: var(--surface-container);
    color: var(--primary);
    border: none;
}

.btn-no:hover {
    background-color: var(--border-color);
}

@media (max-width: 768px) {
  .age-gate-actions {
    flex-direction: column;
  }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9998; /* Just below age gate */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid var(--border-color);
}

.cookie-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-teal);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        padding: 24px;
    }
	.main-area {
  margin-top: 8px;
  
}

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-actions .btn {
        width: 100%;
    }
}
