:root {
            --fdj-blue: #0066CC;
            --fdj-blue-dark: #004C99;
            --fdj-blue-light: #E8F4FF;
            --fdj-green: #00A651;
            --fdj-green-dark: #008C44;
            --fdj-red: #E30613;
            
            --loto-red: #E30613;
            --loto-blue: #5B7BC0;
            --euro-blue: #003399;
            --euro-yellow: #FFD700;
            --dreams-purple: #9B6DD0;
            --dreams-purple-dark: #6B3FA0;
            --keno-orange: #FF9500;
            --keno-blue: #0099CC;
            --crescendo-orange: #FF6B00;
            --pmu-green: #00594C;
            
            --white: #FFFFFF;
            --bg-light: #F5F7FA;
            --bg-section: #FAFBFC;
            --text-dark: #1A1A2E;
            --text-medium: #4A5568;
            --text-light: #718096;
            --border-light: #E2E8F0;
            
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
        }

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

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        main {
            overflow-x: hidden;
            position: relative;
            z-index: 1;
        }

        /* ==================== HEADER ==================== */
        header {
            position: sticky;
            top: 0;
            z-index: 9999;
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .header-top {
            background: var(--fdj-blue);
            padding: 0.5rem 2rem;
        }

        .header-top-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: flex-end;
            gap: 1.5rem;
        }

        .header-top a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .header-top a:hover {
            color: white;
        }

        .header-main {
            padding: 0.75rem 2rem;
            border-bottom: 1px solid var(--border-light);
            background: var(--white);
        }

        .header-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* Hamburger Menu Button */
        .hamburger-btn {
            display: none;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background: var(--fdj-blue);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            gap: 10px;
            transition: all 0.3s;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            font-family: 'Nunito', sans-serif;
        }

        .hamburger-btn:hover {
            background: var(--fdj-blue-dark);
        }

        .hamburger-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger-line {
            width: 18px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger-btn.active .hamburger-icon .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .hamburger-btn.active .hamburger-icon .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger-btn.active .hamburger-icon .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            width: 100%;
            background: var(--white);
            border-top: 1px solid var(--border-light);
            margin-top: 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .mobile-menu.active {
            max-height: 100vh;
            overflow-y: auto;
        }

        /* Section titles (JEUX DE TIRAGE, PARIS SPORTIFS, etc.) */
        .mobile-section-title {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.75rem 1.5rem;
            margin: 0;
            color: white;
            background: var(--fdj-blue);
        }

        .mobile-section-title a {
            color: white;
            text-decoration: none;
            display: block;
        }

        .mobile-section-title a:hover {
            text-decoration: underline;
        }

        .mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-item {
            border-bottom: 1px solid var(--border-light);
            background: white;
        }

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

        /* Container for link + arrow */
        .mobile-menu-row {
            display: flex;
            align-items: center;
            min-height: 48px;
        }

        /* Main clickable link (goes to page) */
        .mobile-menu-link {
            flex: 1;
            padding: 0.85rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .mobile-menu-link:hover {
            color: var(--fdj-blue);
        }

        /* Arrow button to expand submenu */
        .mobile-menu-arrow {
            width: 50px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            border-left: 1px solid var(--border-light);
            cursor: pointer;
            color: var(--fdj-blue);
            font-size: 0.7rem;
            transition: all 0.3s;
        }

        .mobile-menu-arrow:hover {
            background: var(--bg-light);
        }

        .mobile-menu-item.open .mobile-menu-arrow {
            transform: rotate(180deg);
        }

        /* Submenu */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8f9fa;
        }

        .mobile-menu-item.open .mobile-submenu {
            max-height: 800px;
        }

        .mobile-submenu-list {
            list-style: none;
            padding: 0.5rem 0;
            margin: 0;
        }

        .mobile-submenu-link {
            display: block;
            padding: 0.65rem 2rem;
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .mobile-submenu-link:hover {
            background: #e9ecef;
            color: var(--fdj-blue);
        }

        /* Category titles in submenu (for Grattage) - NOT clickable */
        .mobile-submenu-category {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--fdj-blue);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 1rem 2rem 0.5rem;
            margin-top: 0.5rem;
            border-top: 1px solid var(--border-light);
        }

        .mobile-submenu-category:first-child {
            border-top: none;
            margin-top: 0;
        }

        .mobile-menu-cta {
            display: block;
            margin: 1rem 1.5rem;
            padding: 1rem;
            background: var(--fdj-green);
            color: white;
            text-align: center;
            text-decoration: none;
            font-weight: 700;
            border-radius: 10px;
        }

        .mobile-menu-cta:hover {
            background: var(--fdj-green-dark);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
        }

        /* Logo avec emplacement pour image */
	.logo-image {
	    height: 46px;
	    width: auto;
	    object-fit: contain;
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--fdj-blue);
        }

        .logo-text span {
            color: var(--fdj-green);
        }

        /* Navigation */
        .main-nav {
            display: flex;
            gap: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.75rem 1rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s;
            border-radius: 8px;
        }

        .nav-link:hover {
            background: var(--fdj-blue-light);
            color: var(--fdj-blue);
        }

        .nav-link .arrow {
            font-size: 0.6rem;
            transition: transform 0.2s;
        }

        .nav-item:hover .arrow {
            transform: rotate(180deg);
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            padding: 1.5rem;
            min-width: 700px;
            display: none;
            z-index: 9999;
            border: 1px solid var(--border-light);
        }

        /* Align right-side menus to the right edge */
        .nav-item:last-of-type .mega-menu,
        .nav-item:nth-last-of-type(2) .mega-menu {
            left: auto;
            right: 0;
        }

        .nav-item:hover .mega-menu {
            display: block;
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .mega-menu-column h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--fdj-blue);
            margin-bottom: 0.75rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--fdj-blue);
        }

        .mega-menu-column h4 a {
            color: inherit;
            text-decoration: none;
            display: block;
            padding: 0;
            font-size: inherit;
        }

        .mega-menu-column h4 a:hover {
            color: var(--fdj-blue-dark);
            text-decoration: underline;
        }

        .mega-menu-column ul {
            list-style: none;
        }

        .mega-menu-column li {
            margin-bottom: 0.4rem;
        }

        .mega-menu-column a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.85rem;
            display: block;
            padding: 0.3rem 0;
            transition: color 0.2s;
        }

        .mega-menu-column a:hover {
            color: var(--fdj-blue);
        }

        /* 5-column mega menu for Jeux de tirage */
        .mega-menu-5col {
            min-width: 900px;
        }

        .mega-menu-5col .mega-menu-grid {
            grid-template-columns: repeat(5, 1fr);
        }

        /* 3-column mega menu for Grattage */
        .mega-menu-grattage {
            min-width: 650px;
        }

        .mega-menu-grattage .mega-menu-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        /* Promo mega menu */
        .mega-menu-promo {
            min-width: 700px;
        }

        .promo-links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem 1.5rem;
        }

        .promo-links-grid a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.85rem;
            padding: 0.5rem 0;
            transition: color 0.2s;
        }

        .promo-links-grid a:hover {
            color: var(--fdj-blue);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow-lg);
            padding: 0.75rem 0;
            min-width: 220px;
            display: none;
            z-index: 1000;
            border: 1px solid var(--border-light);
        }

        /* Ensure dropdowns don't overflow viewport */
        .nav-item:nth-child(n+4) .dropdown {
            left: auto;
            right: 0;
        }

        .nav-item:hover .dropdown {
            display: block;
        }

        .dropdown a {
            display: block;
            padding: 0.6rem 1.25rem;
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .dropdown a:hover {
            background: var(--fdj-blue-light);
            color: var(--fdj-blue);
        }

        .nav-cta {
            background: var(--fdj-green);
            color: white !important;
            border-radius: 8px;
            margin-left: 0.5rem;
        }

        .nav-cta:hover {
            background: var(--fdj-green-dark) !important;
        }

        /* ==================== HERO CAROUSEL ==================== */
        .hero-carousel {
            background: var(--bg-light);
            padding: 1.5rem 2rem;
            position: relative;
        }

        .carousel-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
        }

        .carousel-wrapper {
            border-radius: 16px;
            overflow: hidden;
            padding-bottom: 10px;
            margin-bottom: -10px;
        }

        .carousel-track {
            display: flex;
            gap: 1rem;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            flex: 0 0 calc(33.333% - 0.67rem);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            color: white;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .carousel-slide:hover {
            transform: scale(1.02);
        }

        .carousel-slide.loto { background: linear-gradient(135deg, #E30613 0%, #FF4D4D 100%); }
        .carousel-slide.euro { background: linear-gradient(135deg, #003399 0%, #0055CC 100%); }
        .carousel-slide.dreams { background: linear-gradient(135deg, var(--dreams-purple) 0%, #B88BE5 100%); }
        .carousel-slide.keno { background: linear-gradient(135deg, #FF9500 0%, #FFB347 100%); }
        .carousel-slide.pmu { background: linear-gradient(135deg, #00594C 0%, #007A66 100%); }
        .carousel-slide.crescendo { background: linear-gradient(135deg, #FF6B00 0%, #FF9500 100%); }

        /* Emplacement logo dans carousel */
        .carousel-slide-logo {
            width: 120px;
            height: 50px;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Placeholder text si pas d'image */
        .carousel-slide-logo-text {
            font-size: 1.3rem;
            font-weight: 800;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .carousel-slide-date {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .carousel-slide-amount {
            font-family: 'Space Mono', monospace;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .carousel-slide-btn {
            display: inline-block;
            background: rgba(255,255,255,0.25);
            border: 2px solid white;
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .carousel-slide-btn:hover {
            background: white;
            color: var(--text-dark);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-dark);
            transition: all 0.2s;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: var(--fdj-blue);
            color: white;
        }

        .carousel-nav.prev { left: -20px; }
        .carousel-nav.next { right: -20px; }

        /* ==================== RESULTS SECTION ==================== */
        .results-section {
            padding: 3rem 2rem 3.5rem 2rem;
            overflow-x: clip;
            overflow-y: visible;
        }

        .results-section .results-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .results-section.alt-bg {
            background: var(--bg-section);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-title-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .section-title-icon.crescendo { background: linear-gradient(135deg, #FF6B00, #FF9500); }
        .section-title-icon.euro { background: linear-gradient(135deg, #003399, #0055CC); }
        .section-title-icon.loto { background: linear-gradient(135deg, #E30613, #FF4D4D); }
        .section-title-icon.dreams { background: linear-gradient(135deg, #6B3FA0, #9B6DD0); }
        .section-title-icon.keno { background: linear-gradient(135deg, #0099CC, #00BFFF); }

        /* Results Carousel */
        .results-carousel {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
            margin: -10px 0;
        }

        .results-carousel-track {
            display: flex;
            gap: 1.25rem;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Result Card */
        .result-card-new {
            flex: 0 0 340px;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.3s ease;
            position: relative;
        }

        .result-card-new:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .result-card-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
            border-radius: 20px 20px 0 0;
            z-index: 10;
        }

        .result-card-new.crescendo { --accent-color: #FF6B00; --accent-light: #FFB347; }
        .result-card-new.euro { --accent-color: #003399; --accent-light: #0077FF; }
        .result-card-new.loto { --accent-color: #E30613; --accent-light: #FF6B6B; }
        .result-card-new.dreams { --accent-color: #6B3FA0; --accent-light: #B88BE5; }
        .result-card-new.keno { --accent-color: #0099CC; --accent-light: #00BFFF; }

        .result-card-header {
            padding: 1.25rem 1.5rem;
            padding-top: calc(1.25rem + 4px);
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
            border-bottom: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .result-card-date {
            display: flex;
            flex-direction: column;
        }

        .result-card-day {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .result-card-time {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-dark);
        }

        .result-card-jackpot {
            text-align: right;
        }

        .result-card-jackpot-label {
            font-size: 0.7rem;
            color: var(--text-light);
            text-transform: uppercase;
        }

        .result-card-jackpot-amount {
            font-family: 'Space Mono', monospace;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .result-card-new.crescendo .result-card-jackpot-amount { color: var(--crescendo-orange); }
        .result-card-new.euro .result-card-jackpot-amount { color: var(--euro-blue); }
        .result-card-new.loto .result-card-jackpot-amount { color: var(--loto-red); }
        .result-card-new.dreams .result-card-jackpot-amount { color: var(--dreams-purple-dark); }
        .result-card-new.keno .result-card-jackpot-amount { color: var(--keno-blue); }

        .result-card-body {
            padding: 1.5rem;
        }

        /* Balls Grid */
        .balls-hex-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 0.75rem;
        }

        .balls-hex-grid.main-numbers {
            margin-bottom: 0.5rem;
        }

        /* Label pour Second Tirage */
        .tirage-label {
            font-size: 0.7rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .ball-hex {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.95rem;
            color: white;
            transition: transform 0.2s;
        }

        .ball-hex:hover {
            transform: scale(1.15);
        }

        .ball-hex.orange { background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%); }
        .ball-hex.red { background: linear-gradient(135deg, #FF4D4D 0%, #E30613 100%); }
        .ball-hex.blue { background: linear-gradient(135deg, #0066CC 0%, #003399 100%); }
        .ball-hex.purple { background: linear-gradient(135deg, #B88BE5 0%, #6B3FA0 100%); }
        .ball-hex.cyan { background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%); }
        .ball-hex.yellow { 
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); 
            color: #5C4800;
        }
        .ball-hex.white { 
            background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%); 
            color: var(--text-dark);
            border: 2px solid #E0E0E0;
        }
        /* Loto: num?ros bleus pour le second tirage */
        .ball-hex.loto-blue {
            background: linear-gradient(135deg, #7B9BD4 0%, #5B7BC0 100%);
        }
        .ball-hex.special {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* Etoiles pour EuroMillions - HOME */
        .stars-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .ball-star {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #1E3A8A;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
            /* Forme etoile avec clip-path */
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            transition: transform 0.2s;
        }

        .ball-star:hover {
            transform: scale(1.15);
        }

        /* Etoiles pour page prochain-tirage-euromillions */
        .pronostic-ball.euro-star {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #1E3A8A;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.15rem;
            margin: 5px 8px;
            border-radius: 0;
            /* Forme etoile avec clip-path */
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            transition: transform 0.2s;
        }

        .pronostic-ball.euro-star:hover {
            transform: scale(1.1);
        }

        .etoiles-row,
        .numbers-row.etoiles-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
        }

        /* Code section */
        .result-card-code {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: var(--bg-light);
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .result-card-code-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .result-card-code-icon.mymillion { background: var(--fdj-blue-light); }
        .result-card-code-icon.joker { background: rgba(227,6,19,0.1); }

        .result-card-code-text {
            flex: 1;
        }

        .result-card-code-label {
            font-size: 0.7rem;
            color: var(--text-light);
            text-transform: uppercase;
        }

        .result-card-code-value {
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* Actions */
        .result-card-actions {
            display: flex;
            gap: 0.75rem;
        }

        .btn-result {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-result.outline {
            background: transparent;
            border: 2px solid var(--border-light);
            color: var(--text-medium);
        }

        .btn-result.outline:hover {
            border-color: var(--fdj-blue);
            color: var(--fdj-blue);
        }

        .btn-result.primary {
            border: none;
            color: white;
        }

        .btn-result.primary.crescendo { background: linear-gradient(135deg, #FF6B00, #FF9500); }
        .btn-result.primary.euro { background: linear-gradient(135deg, #003399, #0055CC); }
        .btn-result.primary.loto { background: linear-gradient(135deg, #E30613, #FF4D4D); }
        .btn-result.primary.dreams { background: linear-gradient(135deg, #6B3FA0, #9B6DD0); }
        .btn-result.primary.keno { background: linear-gradient(135deg, #0099CC, #00BFFF); }

        .btn-result.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* Carousel Navigation */
        .results-nav {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .results-nav-btn {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 2px solid var(--border-light);
            background: var(--white);
            color: var(--text-medium);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.2s;
        }

        .results-nav-btn:hover:not(:disabled) {
            border-color: var(--fdj-blue);
            color: var(--fdj-blue);
            background: var(--fdj-blue-light);
        }

        .results-nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .results-nav-dots {
            display: flex;
            gap: 6px;
            margin: 0 0.75rem;
        }

        .results-nav-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border-light);
            cursor: pointer;
            transition: all 0.2s;
        }

        .results-nav-dot.active {
            width: 24px;
            border-radius: 4px;
        }

        .results-nav-dot.active.crescendo { background: var(--crescendo-orange); }
        .results-nav-dot.active.euro { background: var(--euro-blue); }
        .results-nav-dot.active.loto { background: var(--loto-red); }
        .results-nav-dot.active.dreams { background: var(--dreams-purple-dark); }
        .results-nav-dot.active.keno { background: var(--keno-blue); }

        .results-view-all {
            margin-left: auto;
            color: var(--fdj-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: gap 0.2s;
        }

        .results-view-all:hover {
            gap: 0.5rem;
        }

        /* ==================== PROMO SECTION ==================== */
        .promo-section {
            padding: 3rem 2rem;
            background: var(--bg-section);
            overflow-x: hidden;
        }

        .promo-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .promo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .promo-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            border: 2px dashed var(--border-light);
            transition: all 0.3s;
            cursor: pointer;
        }

        .promo-card:hover {
            border-color: var(--fdj-green);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        /* Emplacement logo promo */
        .promo-logo-container {
            width: 100px;
            height: 50px;
            margin: 0 auto 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .promo-logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Placeholder si pas d'image */
        .promo-logo-placeholder {
            font-size: 1.2rem;
            font-weight: 800;
        }

        .promo-card.fdj .promo-logo-placeholder { color: var(--fdj-blue); }
        .promo-card.betclic .promo-logo-placeholder { color: #FF6B00; }
        .promo-card.winamax .promo-logo-placeholder { color: #E30613; }
        .promo-card.unibet .promo-logo-placeholder { color: #14805E; }

        .promo-offer {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--fdj-green);
            margin-bottom: 0.5rem;
        }

        .promo-desc {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .promo-btn {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background: var(--fdj-green);
            color: white;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .promo-btn:hover {
            background: var(--fdj-green-dark);
        }

        /* ==================== GRATTAGE SECTION ==================== */
        .grattage-section {
            padding: 3rem 2rem 3.5rem 2rem;
            background: var(--white);
            overflow-x: clip;
            overflow-y: visible;
        }

        .grattage-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-medium);
            margin-top: 0.25rem;
        }

        .grattage-carousel {
            margin-top: 1.5rem;
            overflow: hidden;
            padding: 10px 0;
            margin-bottom: -10px;
        }

        .grattage-track {
            display: flex;
            gap: 1rem;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .grattage-card {
            flex: 0 0 180px;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .grattage-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .grattage-card-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px 16px 0 0;
        }

        .grattage-card-placeholder {
            font-size: 4rem;
            opacity: 0.9;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
        }

        .grattage-card-price {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--fdj-blue);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 800;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .grattage-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--fdj-green);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .grattage-card-badge.new {
            background: linear-gradient(135deg, #FF6B00, #FF9500);
        }

        .grattage-card-content {
            padding: 1rem;
            background: white;
        }

        .grattage-card-title {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .grattage-card-jackpot {
            font-size: 0.8rem;
            color: var(--text-medium);
        }

        .grattage-card-jackpot strong {
            color: var(--fdj-green);
            font-weight: 800;
        }

        .grattage-nav {
            background: var(--bg-light);
        }

        .grattage-nav:hover:not(:disabled) {
            background: var(--fdj-blue);
            color: white;
            border-color: var(--fdj-blue);
        }

        /* ==================== TURF SECTION ==================== */
        .turf-section {
            padding: 3rem 2rem;
            overflow-x: hidden;
        }

        .turf-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .turf-card {
            background: linear-gradient(135deg, var(--pmu-green) 0%, #007A66 100%);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .turf-brand {
            text-align: center;
        }

        /* Emplacement logo PMU */
        .turf-logo-container {
            width: 140px;
            height: 60px;
            margin: 0 auto 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .turf-logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .turf-logo-placeholder {
            font-size: 2rem;
            font-weight: 900;
        }

        .turf-brand-sub {
            font-size: 0.9rem;
            opacity: 0.85;
        }

        .turf-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .turf-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
        }

        .turf-item-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .turf-item-value {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .turf-cta {
            text-align: center;
        }

        .turf-bonus {
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .turf-bonus-amount {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .turf-btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: white;
            color: var(--pmu-green);
            border-radius: 25px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }

        .turf-btn:hover {
            transform: scale(1.05);
        }

        /* ==================== GAMES SECTION ==================== */
        .games-section {
            padding: 3rem 2rem;
            background: var(--bg-section);
            overflow-x: hidden;
        }

        .games-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .games-grid-half {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .game-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all 0.3s;
        }

        .game-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .game-card-header {
            padding: 2rem;
            text-align: center;
            color: white;
        }

        .game-card-header.grattage { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); color: #5C4800; }
        .game-card-header.poker { background: linear-gradient(135deg, #1A1A2E 0%, #2D3748 100%); }
        .game-card-header.casino { background: linear-gradient(135deg, #9B2335 0%, #C41E3A 100%); }

        .game-card-icon {
            font-size: 3rem;
            margin-bottom: 0.75rem;
        }

        .game-card-title {
            font-size: 1.4rem;
            font-weight: 800;
        }

        .game-card-body {
            padding: 1.5rem;
        }

        .game-card-desc {
            font-size: 0.9rem;
            color: var(--text-medium);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .game-card-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .game-card-link {
            padding: 0.4rem 0.8rem;
            background: var(--bg-light);
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--text-medium);
            text-decoration: none;
            transition: all 0.2s;
        }

        .game-card-link:hover {
            background: var(--fdj-blue-light);
            color: var(--fdj-blue);
        }

        .game-card-btn {
            display: block;
            margin-top: 1rem;
            padding: 0.75rem;
            text-align: center;
            background: var(--fdj-blue);
            color: white;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }

        .game-card-btn:hover {
            background: var(--fdj-blue-dark);
        }

        /* ==================== NEWS SECTION ==================== */
        .news-section {
            padding: 3rem 2rem;
            overflow-x: hidden;
        }

        .news-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .news-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all 0.3s;
        }

        .news-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .news-image {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .news-image.euro { background: linear-gradient(135deg, #003399 0%, #0055CC 100%); }
        .news-image.loto { background: linear-gradient(135deg, #E30613 0%, #FF4D4D 100%); }
        .news-image.crescendo { background: linear-gradient(135deg, #FF6B00 0%, #FF9500 100%); }
        .news-image.dreams { background: linear-gradient(135deg, var(--dreams-purple) 0%, #B88BE5 100%); }

        .news-content {
            padding: 1rem;
        }

        .news-tag {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            background: var(--fdj-blue-light);
            color: var(--fdj-blue);
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .news-title {
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-excerpt {
            font-size: 0.8rem;
            color: var(--text-medium);
            line-height: 1.5;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-date {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        /* ==================== WARNING BANNER ==================== */
        .warning-banner {
            background: #2D3748;
            padding: 1rem 2rem;
        }

        .warning-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .warning-badge {
            width: 44px;
            height: 44px;
            background: var(--fdj-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            color: white;
        }

        .warning-text {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.85);
            max-width: 650px;
        }

        .warning-text a {
            color: #68D391;
        }

        .warning-logos {
            display: flex;
            gap: 0.5rem;
        }

        .warning-logo {
            padding: 0.3rem 0.6rem;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            color: white;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--bg-section);
            padding: 3rem 2rem 1.5rem;
            border-top: 1px solid var(--border-light);
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-brand p {
            color: var(--text-medium);
            font-size: 0.85rem;
            margin-top: 1rem;
            max-width: 250px;
        }

        .footer-column h5 {
            font-weight: 700;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }

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

        .footer-column li {
            margin-bottom: 0.4rem;
        }

        .footer-column a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.8rem;
        }

        .footer-column a:hover {
            color: var(--fdj-blue);
        }

        .footer-bottom {
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        .footer-social {
            display: flex;
            gap: 0.5rem;
        }

        .footer-social a {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: white;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-medium);
            font-weight: 700;
            font-size: 0.8rem;
            transition: all 0.2s;
        }

        .footer-social a:hover {
            background: var(--fdj-blue);
            color: white;
            border-color: var(--fdj-blue);
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .mega-menu { min-width: 500px; }
            .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
            .carousel-slide { flex: 0 0 calc(50% - 0.5rem); }
            .result-card-new { flex: 0 0 300px; }
            .promo-grid { grid-template-columns: repeat(2, 1fr); }
            .turf-card { grid-template-columns: 1fr; text-align: center; }
            .games-grid { grid-template-columns: 1fr; }
            .games-grid-half { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
            .grattage-card { flex: 0 0 160px; }
        }

        @media (max-width: 992px) {
            .main-nav { display: none; }
            .hamburger-btn { 
                display: flex;
                order: 3;
            }
            .mobile-menu { 
                display: block;
                order: 4;
            }
            
            .header-content {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }
            
            .header-main {
                padding: 0.75rem 1rem;
            }
            
            .logo {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .header-top { display: none; }
            .carousel-slide { flex: 0 0 100%; }
            .result-card-new { flex: 0 0 280px; }
            .promo-grid { grid-template-columns: 1fr; }
            .turf-info { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .section-header { flex-wrap: wrap; gap: 1rem; }
            .grattage-card { flex: 0 0 150px; }
            .grattage-card-image { height: 160px; }
            
            .hero-carousel { padding: 1rem; }
            .results-section { padding: 2rem 1rem 3rem 1rem; }
            .results-section.alt-bg { padding-left: 1rem; padding-right: 1rem; }
            .promo-section { padding: 2rem 1rem; }
            .grattage-section { padding: 2rem 1rem 3rem 1rem; }
            .turf-section { padding: 2rem 1rem; }
            .games-section { padding: 2rem 1rem; }
            .news-section { padding: 2rem 1rem; }
            
            .section-title { font-size: 1.2rem; }
            .logo-text { font-size: 1.2rem; }
            
            /* Etoiles responsive */
            .ball-star {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }
            .pronostic-ball.euro-star {
                width: 48px;
                height: 48px;
                font-size: 1.05rem;
            }
        }