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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4ade80;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.3rem;
    z-index: 1001;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Selector */
.language-selector {
    position: relative;
    flex-shrink: 0;
}

.language-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 2.5rem 0.5rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    transition: all 0.3s;
    min-width: 120px;
    width: 100%;
}

.language-select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-select:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.language-select option {
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="40">🥕</text></svg>') repeat;
    opacity: 0.05;
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-text h1 .emoji {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-text .highlight {
    color: #fbbf24;
    font-weight: 900;
}

.hero-text p {
    font-size: 1.3rem;
    color: #f0fdf4;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fbbf24;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #d1fae5;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: 3px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #fff;
    color: #10b981;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    text-align: center;
}

.game-preview {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.game-screen {
    background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
    border-radius: 15px;
    padding: 0;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

.game-screen::after {
    display: none;
}

@keyframes carrot-fall {
    0% { top: -50px; left: 20%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; left: 30%; opacity: 0; }
}

.play-demo-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.play-demo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

/* Trust Badges */
.trust-badges {
    background: #f9fafb;
    padding: 2rem;
    text-align: center;
}

.badges-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #059669;
}

.badge-icon {
    font-size: 1.5rem;
}

/* Game Specs */
.game-specs {
    padding: 3rem 2rem;
    background: #fff;
}

.specs-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
}

.spec-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.spec-title {
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 0.3rem;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

/* Content Sections */
.content-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section:nth-child(even) {
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin: 2rem 0 1rem;
}

.content-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.content-image {
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}

/* Casino List */
.casino-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
}

.casino-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.casino-card h3 {
    color: #fbbf24;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.casino-pros {
    list-style: none;
    margin-top: 1rem;
}

.casino-pros li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.casino-pros li:before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 2rem;
    border-radius: 15px;
}

.pros {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.cons {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
}

.pros h3, .cons h3 {
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.pros li:before {
    content: '✅';
    position: absolute;
    left: 0;
}

.cons li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.cons li:before {
    content: '❌';
    position: absolute;
    left: 0;
}

/* RTP Table */
.rtp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rtp-table th {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 1rem;
    text-align: left;
}

.rtp-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.rtp-table tr:last-child td {
    border-bottom: none;
}

/* Risk Levels */
.risk-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.risk-card {
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid;
}

.risk-easy {
    background: #d1fae5;
    border-color: #10b981;
}

.risk-medium {
    background: #fef3c7;
    border-color: #fbbf24;
}

.risk-hard {
    background: #fed7aa;
    border-color: #f97316;
}

.risk-hardcore {
    background: #fecaca;
    border-color: #ef4444;
}

/* CTA Buttons in content */
.content-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s;
}

.content-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
}

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-mega {
    background: #fff;
    color: #dc2626;
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-mega:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #94a3b8;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
}

.responsible-gaming {
    background: #fef3c7;
    padding: 1rem;
    text-align: center;
    color: #92400e;
    font-size: 0.9rem;
    border-top: 3px solid #fbbf24;
}

/* Responsive - iPad (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    header {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        height: 45px;
    }
    
    .logo-img {
        max-height: 45px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .content-grid {
        gap: 2rem;
    }
    
    .casino-section {
        padding: 4rem 1.5rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .casino-card h3 {
        font-size: 1.6rem;
    }
    
    .specs-grid {
        gap: 1.5rem;
    }
    
    .final-cta {
        padding: 4rem 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
    
    .cta-mega {
        padding: 1.2rem 3rem;
        font-size: 1.3rem;
    }
}

/* Responsive - Mobile Large (481px - 768px) */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .language-selector {
        order: 2;
    }
    
    .language-select {
        font-size: 0.85rem;
        padding: 0.45rem 2.2rem 0.45rem 0.7rem;
        min-width: 110px;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
    }
    
    /* Mobile menu - shown when active */
    .nav-links.mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        gap: 0;
        display: flex;
    }
    
    .nav-links.mobile-menu.active {
        transform: translateX(0);
    }
    
    .nav-links.mobile-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links.mobile-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-links.mobile-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .hero {
        margin-top: 60px;
        padding: 2.5rem 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stats {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        justify-content: space-around;
        flex-wrap: nowrap;
    }
    
    .stat {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .cta-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .game-preview {
        padding: 1.5rem;
    }
    
    .game-screen {
        padding: 2rem;
        font-size: 3rem;
        min-height: 150px;
    }
    
    .play-demo-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .trust-badges {
        padding: 1.5rem 1rem;
    }
    
    .badges-container {
        gap: 1.5rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
    }
    
    .badge {
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .game-specs {
        padding: 2rem 1rem;
    }
    
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .spec-card {
        padding: 1rem;
    }
    
    .spec-title {
        font-size: 0.85rem;
    }
    
    .spec-value {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .content-text h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    .casino-section {
        padding: 3rem 1rem;
    }
    
    .casino-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .casino-card h3 {
        font-size: 1.4rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pros,
    .cons {
        padding: 1.5rem;
    }
    
    .rtp-table {
        font-size: 0.9rem;
        width: 100%;
        table-layout: fixed;
    }
    
    .rtp-table th,
    .rtp-table td {
        padding: 0.8rem 0.5rem;
        word-wrap: break-word;
    }
    
    .rtp-table th {
        width: 50%;
    }
    
    .risk-levels {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .risk-card {
        padding: 1.2rem;
    }
    
    .content-cta {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .final-cta {
        padding: 3rem 1rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .cta-mega {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }
    
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .responsible-gaming {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Responsive - Mobile Small (jusqu'à 480px) */
@media (max-width: 480px) {
    header {
        padding: 0.7rem 0.8rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo-img {
        max-height: 35px;
    }
    
    .nav-right {
        gap: 0.8rem;
    }
    
    .language-selector {
        order: 2;
    }
    
    .language-select {
        font-size: 0.8rem;
        padding: 0.4rem 1.8rem 0.4rem 0.6rem;
        min-width: 95px;
    }
    
    .menu-toggle {
        order: 3;
    }
    
    .nav-links.mobile-menu {
        top: 55px;
        padding: 1.5rem 0.8rem;
    }
    
    .nav-links.mobile-menu a {
        padding: 0.9rem;
        font-size: 1rem;
    }
    
    .hero {
        margin-top: 55px;
        padding: 2rem 0.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .stats {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: space-around;
        flex-wrap: nowrap;
    }
    
    .stat {
        flex: 1;
        min-width: 0;
        max-width: none;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .game-preview {
        padding: 1rem;
    }
    
    .game-screen {
        padding: 1.5rem;
        font-size: 2.5rem;
        min-height: 120px;
    }
    
    .play-demo-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .trust-badges {
        padding: 1.2rem 0.8rem;
    }
    
    .badges-container {
        gap: 1rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
    }
    
    .badge {
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .game-specs {
        padding: 1.5rem 0.8rem;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .spec-card {
        padding: 0.8rem;
    }
    
    .spec-title {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 2rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .content-text {
        font-size: 0.95rem;
    }
    
    .content-text h3 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.6rem;
    }
    
    .content-text ul {
        margin-left: 1.2rem;
    }
    
    .casino-section {
        padding: 2rem 0.8rem;
    }
    
    .casino-card {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .casino-card h3 {
        font-size: 1.2rem;
    }
    
    .casino-pros li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
    
    .pros,
    .cons {
        padding: 1.2rem;
    }
    
    .pros h3,
    .cons h3 {
        font-size: 1.1rem;
    }
    
    .pros li,
    .cons li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
    
    .rtp-table {
        font-size: 0.8rem;
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    
    .rtp-table thead {
        display: table-header-group;
    }
    
    .rtp-table tbody {
        display: table-row-group;
    }
    
    .rtp-table th,
    .rtp-table td {
        padding: 0.6rem 0.4rem;
        white-space: normal;
        word-wrap: break-word;
        display: table-cell;
    }
    
    .rtp-table th {
        width: 50%;
    }
    
    .risk-levels {
        gap: 0.8rem;
    }
    
    .risk-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .content-cta {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        margin: 1.5rem 0;
    }
    
    .final-cta {
        padding: 2.5rem 0.8rem;
    }
    
    .final-cta h2 {
        font-size: 1.7rem;
    }
    
    .final-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-mega {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    footer {
        padding: 1.5rem 0.8rem 0.8rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section ul li {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
    
    .responsible-gaming {
        padding: 0.7rem;
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    /* Amélioration des formulaires sur mobile */
    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 16px !important; /* Évite le zoom automatique sur iOS */
    }
}

/* Sticky Marketing Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
    color: #fff;
    padding: 1rem 2rem;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #fbbf24;
}

.sticky-bar.show {
    transform: translateY(0);
}

.sticky-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.sticky-bar-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.sticky-bar-icon {
    font-size: 2.5rem;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.sticky-bar-message {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
}

.sticky-bar-message strong {
    font-size: 1.2rem;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
}

.sticky-bar-message span {
    font-size: 0.9rem;
    opacity: 0.95;
    color: #fff;
}

.sticky-bar-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    transition: all 0.3s;
    white-space: nowrap;
    animation: pulse-btn 2s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-btn {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(251, 191, 36, 0.7);
    }
}

.sticky-bar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.sticky-bar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.8);
}

.sticky-bar-btn:hover::before {
    left: 100%;
}

.sticky-bar-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.sticky-bar-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Responsive Sticky Bar - iPad */
@media (max-width: 1024px) and (min-width: 769px) {
    .sticky-bar {
        padding: 0.9rem 1.5rem;
    }
    
    .sticky-bar-content {
        gap: 1.5rem;
    }
    
    .sticky-bar-message strong {
        font-size: 1.1rem;
    }
    
    .sticky-bar-message span {
        font-size: 0.95rem;
    }
    
    .sticky-bar-btn {
        padding: 0.95rem 2rem;
        font-size: 1.05rem;
    }
}

/* Responsive Sticky Bar - Mobile Large */
@media (max-width: 768px) {
    .sticky-bar {
        padding: 0.8rem 1rem;
    }
    
    .sticky-bar-content {
        gap: 0.8rem;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .sticky-bar-text {
        flex: 1;
        min-width: 0;
        gap: 0.8rem;
    }
    
    .sticky-bar-icon {
        font-size: 1.8rem;
        flex-shrink: 0;
    }
    
    .sticky-bar-message {
        min-width: 0;
        flex: 1;
    }
    
    .sticky-bar-message strong {
        font-size: 0.95rem;
        line-height: 1.2;
        display: block;
    }
    
    .sticky-bar-message span {
        font-size: 0.8rem;
        line-height: 1.2;
        display: block;
    }
    
    .sticky-bar-btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: auto;
    }
    
    .sticky-bar-close {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
}

/* Responsive Sticky Bar - Mobile Small */
@media (max-width: 480px) {
    .sticky-bar {
        padding: 0.7rem 0.8rem;
    }
    
    .sticky-bar-content {
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    
    .sticky-bar-text {
        flex: 1 1 100%;
        order: 1;
        gap: 0.6rem;
    }
    
    .sticky-bar-icon {
        font-size: 1.6rem;
    }
    
    .sticky-bar-message strong {
        font-size: 0.9rem;
    }
    
    .sticky-bar-message span {
        font-size: 0.75rem;
    }
    
    .sticky-bar-btn {
        flex: 1 1 auto;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        order: 2;
        min-width: 0;
        text-align: center;
    }
    
    .sticky-bar-close {
        order: 3;
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
        margin-left: 0;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .sticky-bar {
        padding: 0.6rem 0.6rem;
    }
    
    .sticky-bar-content {
        gap: 0.5rem;
    }
    
    .sticky-bar-icon {
        font-size: 1.4rem;
    }
    
    .sticky-bar-message strong {
        font-size: 0.85rem;
    }
    
    .sticky-bar-message span {
        font-size: 0.7rem;
    }
    
    .sticky-bar-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .sticky-bar-close {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
}

