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

:root {
    /* Dark Theme Color Palette */
    --bg-primary: #121417;
    --bg-secondary: #161a1d;
    --bg-tertiary: #1a1f23;
    --bg-card: #1e2327;
    --text-primary: #e6e6e6;
    --text-secondary: #a0a0a0;
    --text-muted: #6b6b6b;
    /* Muted Olive Green Accent */
    --accent-primary: #7a8b6d;
    --accent-hover: #8a9b7d;
    --accent-light: rgba(122, 139, 109, 0.15);
    /* Soft Outlines */
    --border-subtle: rgba(230, 230, 230, 0.08);
    --border-soft: rgba(230, 230, 230, 0.12);
    --border-medium: rgba(230, 230, 230, 0.18);
    /* Subtle Glow */
    --glow-subtle: rgba(122, 139, 109, 0.2);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.85;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(22, 26, 29, 0.85);
}

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

.header-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.header-meta-item {
    letter-spacing: 0.3px;
}

.header-meta-divider {
    opacity: 0.4;
}

.logo {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
}

.header-nav {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-right: 4px;
}

.nav-value {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}


.header-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.flag-icon {
    font-size: 20px;
}

.flag-text {
    color: var(--text-muted);
}

/* Hero Editorial */
.hero-editorial {
    padding: 100px 0 120px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-meta-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.hero-meta-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.hero-meta-divider {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.4;
}

.hero-meta-date {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin: 0;
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    margin-top: 8px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    background: transparent;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: var(--transition);
    border-radius: 0;
}

.btn-outline:hover {
    background: var(--accent-light);
    border-color: var(--accent-hover);
    color: var(--accent-hover);
    box-shadow: 0 0 12px var(--glow-subtle);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    color: var(--accent-sage);
    opacity: 0.4;
}

/* Comparison Section */
.comparison-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.section-header {
    margin-bottom: 64px;
    max-width: 700px;
}

.section-meta {
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    line-height: 1.3;
}

.section-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}

.casino-panel {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.casino-panel:hover {
    border-color: var(--border-soft);
}

.panel-tall {
    min-height: 420px;
}

.panel-meta {
    padding: 16px 24px 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.meta-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.casino-logo-container {
    flex: 1;
}

.casino-logo-img {
    max-width: 140px;
    height: auto;
    filter: brightness(1.1) contrast(1.05);
    opacity: 0.9;
}

.casino-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.rating-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    margin-bottom: 2px;
}

.rating-score {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.3px;
}

.panel-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: 24px;
}

.panel-divider {
    width: 100%;
    height: 1px;
    background: var(--border-subtle);
    margin: 20px 0;
}

.casino-bonus-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}

.bonus-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.bonus-amount {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.5;
}

.casino-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.casino-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 0;
    line-height: 1.7;
}

.casino-features-list li::before {
    content: '—';
    color: var(--text-muted);
    flex-shrink: 0;
    opacity: 0.5;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.7;
}

.casino-features-list li span {
    flex: 1;
    position: relative;
}

.feature-check {
    display: none;
}

.panel-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--border-subtle);
}

.panel-cta-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: var(--transition);
    display: inline-block;
    letter-spacing: 0.2px;
}

.panel-cta-link:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

.panel-cta-link::after {
    content: '';
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.panel-cta-link:hover::after {
    transform: translateX(2px);
}

/* Explanation Section */
.explanation-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.explanation-block {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    position: relative;
}

.explanation-block::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-subtle);
    opacity: 0.5;
}

.explanation-icon {
    flex-shrink: 0;
    color: var(--accent-primary);
    opacity: 0.5;
}

.explanation-content {
    flex: 1;
}

.explanation-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    line-height: 1.3;
}

.explanation-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 48px;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    padding: 0;
    position: relative;
}

.criteria-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--accent-primary);
    opacity: 0.3;
}

.criterion-item {
    padding: 32px 32px 32px 48px;
    position: relative;
    border-left: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s ease;
}

.criterion-item:last-child {
    border-bottom: none;
}

.criterion-item:hover {
    background: var(--bg-card);
}

.criterion-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.criterion-number {
    font-size: 12px;
    color: var(--text-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    min-width: 24px;
}

.criterion-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.criterion-item h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    line-height: 1.4;
    padding-right: 0;
}

.criterion-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin: 0;
    padding-right: 0;
}

/* Credibility Section */
.credibility-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.credibility-content {
    display: block;
}

.credibility-full {
    max-width: 800px;
    margin: 0 auto;
}

.credibility-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.credibility-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    line-height: 1.3;
    margin: 0;
}

.credibility-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.credibility-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.credibility-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.block-number {
    font-size: 12px;
    color: var(--text-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    min-width: 24px;
}

.block-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    line-height: 1.4;
    margin: 0;
}

.credibility-divider {
    width: 100%;
    height: 1px;
    background: var(--border-subtle);
    margin: 16px 0;
}

.block-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin: 0;
}


/* Age Notice */
.age-notice-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.age-notice {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-left: 2px solid var(--accent-primary);
    position: relative;
}

.notice-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    line-height: 1.4;
}

.notice-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro-block {
    margin-bottom: 56px;
}

.contact-intro {
    font-size: 17px;
    color: var(--text-secondary);
    margin-top: 24px;
    line-height: 1.85;
    max-width: 700px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.form-input,
.form-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-primary);
    background: transparent;
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
    border: 1px solid var(--border-subtle);
    border-top: none;
    border-left: none;
    border-right: none;
    padding-top: 12px;
}

.form-submit {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    width: fit-content;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--accent-light);
    border-color: var(--accent-hover);
    color: var(--accent-hover);
    box-shadow: 0 0 12px var(--glow-subtle);
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-editorial {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-meta {
    margin-bottom: 4px;
}

.footer-meta-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.footer-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    margin: 0;
    line-height: 1.3;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin: 0;
}

.footer-compliance {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.compliance-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compliance-heading {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-primary);
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    margin: 0;
    line-height: 1.4;
}

.compliance-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin: 0;
}

.compliance-text strong {
    color: var(--text-primary);
    font-weight: 400;
}

.footer-resources {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resources-heading {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-primary);
    font-family: 'Charter', 'Georgia', 'Times New Roman', serif;
    margin: 0;
    line-height: 1.4;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition);
}

.resource-link:hover {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--border-subtle);
    margin: 48px 0 32px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.age-indicator {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 4px 10px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
}

.legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-consent.show {
    transform: translateY(0);
}

.btn-cookie-accept {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    flex-shrink: 0;
}

.btn-cookie-accept:hover {
    background: var(--accent-light);
    border-color: var(--accent-hover);
    color: var(--accent-hover);
    box-shadow: 0 0 12px var(--glow-subtle);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.btn-cookie {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    flex-shrink: 0;
}

.btn-cookie:hover {
    background: var(--accent-light);
    border-color: var(--accent-hover);
    color: var(--accent-hover);
    box-shadow: 0 0 12px var(--glow-subtle);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-visual {
        max-width: 100%;
    }
    
    .hero-visual svg {
        width: 100%;
        height: auto;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .panel-tall {
        min-height: auto;
    }
    
    .explanation-block::before {
        display: none;
    }
    
    .split-content::before {
        display: none;
    }
    
    .explanation-block {
        flex-direction: column;
        gap: 32px;
    }
    
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .criteria-list {
        padding: 4px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-location {
        gap: 6px;
    }
    
    .flag-france {
        width: 20px;
        height: 15px;
    }
    
    .flag-text {
        font-size: 13px;
    }
    
    .hero-editorial {
        padding: 60px 0 80px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-meta {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-lead {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-intro {
        font-size: 16px;
    }
    
    .comparison-section {
        padding: 80px 0;
    }
    
    .casino-panel {
        padding: 20px;
    }
    
    .panel-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 20px;
    }
    
    .panel-meta {
        padding: 14px 20px 10px;
    }
    
    .panel-body {
        padding: 20px;
    }
    
    .panel-footer {
        padding: 18px 20px 20px;
    }
    
    .casino-rating-badge {
        align-items: flex-start;
        text-align: left;
    }
    
    .casino-logo-img {
        max-width: 140px;
    }
    
    .casino-rating-badge {
        align-items: flex-start;
        width: 100%;
    }
    
    .rating-bar {
        width: 100%;
        max-width: 120px;
    }
    
    .panel-body {
        gap: 16px;
    }
    
    .casino-bonus-info {
        gap: 6px;
    }
    
    .bonus-amount {
        font-size: 16px;
    }
    
    .casino-features-list {
        gap: 12px;
    }
    
    .casino-features-list li {
        font-size: 14px;
    }
    
    .panel-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-top: 20px;
    }
    
    .btn-outline-primary {
        width: 100%;
        justify-content: center;
    }
    
    .payment-info {
        max-width: 100%;
        align-self: center;
    }
    
    .explanation-section {
        padding: 80px 0;
    }
    
    .explanation-title {
        font-size: 28px;
    }
    
    .explanation-text {
        font-size: 17px;
    }
    
    .criteria-list {
        padding: 4px 0;
    }
    
    .criterion-item {
        padding: 24px 20px 24px 36px;
    }
    
    .criterion-meta {
        gap: 10px;
    }
    
    .criterion-item h3 {
        font-size: 17px;
    }
    
    .criterion-item p {
        font-size: 15px;
    }
    
    .split-section {
        padding: 80px 0;
    }
    
    .split-title {
        font-size: 28px;
    }
    
    .split-paragraph {
        font-size: 16px;
    }
    
    .visual-box svg {
        width: 100%;
        height: auto;
        max-width: 280px;
    }
    
    .age-notice-section {
        padding: 80px 0;
    }
    
    .age-notice {
        padding: 32px 24px;
    }
    
    .notice-title {
        font-size: 22px;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .btn-cookie {
        width: 100%;
    }
    
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-logos {
        gap: 24px;
        padding-bottom: 40px;
    }
    
    .footer-logo-img {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 14px 0;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .flag-france {
        width: 18px;
        height: 13px;
    }
    
    .flag-text {
        font-size: 12px;
    }
    
    .hero-editorial {
        padding: 50px 0 60px;
    }
    
    .hero-content {
        gap: 32px;
    }
    
    .hero-meta {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.25;
    }
    
    .hero-lead {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .btn-outline {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .comparison-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .section-intro {
        font-size: 15px;
    }
    
    .casino-panel {
        padding: 16px;
    }
    
    .panel-header {
        padding-bottom: 16px;
    }
    
    .casino-logo-img {
        max-width: 120px;
    }
    
    .rating-score {
        font-size: 22px;
    }
    
    .rating-bar {
        max-width: 100px;
    }
    
    .bonus-amount {
        font-size: 15px;
    }
    
    .casino-features-list li {
        font-size: 13px;
        gap: 12px;
    }
    
    .casino-features-list li::before {
        width: 5px;
        height: 5px;
    }
    
    .explanation-section {
        padding: 60px 0;
    }
    
    .explanation-icon {
        width: 40px;
        height: 40px;
    }
    
    .explanation-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .explanation-title {
        font-size: 24px;
    }
    
    .explanation-text {
        font-size: 16px;
    }
    
    .criterion-item {
        padding: 16px 16px 16px 24px;
    }
    
    .criterion-item::before {
        left: 8px;
        top: 20px;
        width: 6px;
        height: 6px;
    }
    
    .criterion-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .criterion-item p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .split-section {
        padding: 60px 0;
    }
    
    .split-title {
        font-size: 24px;
    }
    
    .split-paragraph {
        font-size: 15px;
    }
    
    .visual-box svg {
        max-width: 240px;
    }
    
    .age-notice-section {
        padding: 60px 0;
    }
    
    .age-notice {
        padding: 24px 20px;
    }
    
    .notice-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .notice-text {
        font-size: 15px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-intro {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 12px 24px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logos {
        gap: 20px;
        padding-bottom: 32px;
    }
    
    .footer-logo-img {
        height: 32px;
    }
    
    .footer-content {
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .footer-heading {
        font-size: 14px;
    }
    
    .footer-text {
        font-size: 13px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .age-indicator {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .cookie-notice,
    .cookie-consent {
        padding: 16px;
    }
    
    .cookie-text {
        font-size: 13px;
    }
    
    .btn-cookie,
    .btn-cookie-accept {
        padding: 10px 20px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .btn-outline,
    .btn-outline-primary,
    .btn-submit {
        min-height: 44px;
    }
    
    /* Prevent text overflow */
    .hero-title,
    .section-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure proper spacing for touch targets */
    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 4px 8px;
    }
}

