 :root {
            --primary: #22c55e;
            --primary-hover: #16a34a;
            --secondary: #f59e0b;
            --accent: #8b5cf6;
            --neutral: #1f2937;
            --base-100: #0f172a;
            --base-200: #1e293b;
            --base-300: #334155;
            --base-content: #f8fafc;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--base-100);
            color: var(--base-content);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        header {
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: var(--base-content);
        }

        .nav-menu {
            display: flex;
            gap: 1.5rem;
        }

        .nav-link {
            color: var(--base-content);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--base-content);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .breadcrumbs {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 0.875rem;
            color: var(--base-content);
            opacity: 0.7;
        }

        .breadcrumbs a {
            color: var(--base-content);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumbs a:hover {
            color: var(--primary);
        }

        .breadcrumbs .separator {
            color: var(--base-content);
            opacity: 0.5;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 2rem 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .last-update {
            text-align: center;
            font-size: 0.875rem;
            color: var(--base-content);
            opacity: 0.7;
            margin-bottom: 2rem;
        }

        .intro-text {
            max-width: 800px;
            margin: 0 auto 3rem;
            text-align: center;
            font-size: 1.125rem;
        }

        .casino-card {
            background-color: var(--base-200);
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border-color: var(--primary);
        }

        .casino-rank {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background-color: var(--primary);
            color: white;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            z-index: 10;
        }

        .casino-header {
            display: flex;
            align-items: center;
            padding: 1.5rem;
            gap: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .casino-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
            background-color: white;
            border-radius: 0.5rem;
            padding: 0.5rem;
        }

        .casino-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .casino-rating {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .star {
            color: var(--secondary);
        }

        .casino-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .casino-tag {
            background-color: rgba(34, 197, 94, 0.2);
            color: var(--primary);
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .casino-body {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            padding: 1.5rem;
        }

        .casino-description {
            color: var(--base-content);
            margin-bottom: 1.5rem;
        }

        .casino-features {
            margin-bottom: 1.5rem;
        }

        .casino-features-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary);
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .feature-icon {
            color: var(--primary);
            margin-top: 0.25rem;
        }

        .casino-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .casino-stat {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 0.5rem;
            text-align: center;
        }

        .casino-stat-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .casino-stat-label {
            font-size: 0.75rem;
            color: var(--base-content);
            opacity: 0.7;
        }

        .casino-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
        }

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

        .btn-outline:hover {
            background-color: var(--primary);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .payment-method {
            width: 2.5rem;
            height: 1.5rem;
            background-color: white;
            border-radius: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.25rem;
        }

        .payment-method img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .toc {
            background-color: var(--base-200);
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 3rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .toc-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .toc-list {
            list-style: none;
        }

        .toc-item {
            margin-bottom: 0.75rem;
        }

        .toc-link {
            color: var(--base-content);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .toc-link:hover {
            color: var(--primary);
        }

        .toc-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.5rem;
            height: 1.5rem;
            background-color: rgba(34, 197, 94, 0.2);
            color: var(--primary);
            border-radius: 50%;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin: 3rem 0 1.5rem;
            color: var(--primary);
        }

        .section-subtitle {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            color: var(--secondary);
        }

        .content {
            color: var(--base-content);
            line-height: 1.8;
        }

        .content p {
            margin-bottom: 1.5rem;
        }

        .content ul, .content ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

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

        .content a {
            color: white!important;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .content a:hover {
            text-decoration: underline;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .comparison-table th {
            background-color: var(--primary);
            color: white;
            text-align: left;
            padding: 1rem;
        }

        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .comparison-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }

        .comparison-table tr:hover {
            background-color: rgba(34, 197, 94, 0.05);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }

        .comparison-card {
            background-color: var(--base-200);
            border-radius: 1rem;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .comparison-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }

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

        .pros-cons-item {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .pros-icon {
            color: var(--primary);
        }

        .cons-icon {
            color: var(--error);
        }

        .faq-section {
            margin: 4rem 0;
        }

        .faq-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--primary);
            text-align: center;
        }

        .faq-item {
            background-color: var(--base-200);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.25rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-answer {
            padding: 0 1.25rem 1.25rem;
            color: var(--base-content);
            opacity: 0.9;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .author-box {
            display: flex;
            gap: 1.5rem;
            background-color: var(--base-200);
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 3rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .author-title {
            font-size: 0.875rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .author-bio {
            color: var(--base-content);
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .cta-section {
            background-color: var(--base-200);
            border-radius: 1rem;
            padding: 2rem;
            margin: 4rem 0;
            text-align: center;
            background-image: linear-gradient(to right, rgba(34, 197, 94, 0.1), transparent);
            border: 1px solid rgba(34, 197, 94, 0.2);
        }

        .cta-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .cta-text {
            color: var(--base-content);
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .share-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .share-title {
            font-weight: 600;
        }

        .share-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .share-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: var(--base-200);
            color: var(--base-content);
            transition: all 0.3s ease;
        }

        .share-button:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .related-posts {
            margin: 4rem 0;
        }

        .related-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--primary);
            text-align: center;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .related-card {
            background-color: var(--base-200);
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border-color: var(--primary);
        }

        .related-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .related-content {
            padding: 1.5rem;
        }

        .related-card-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .related-card-title a {
            color: var(--base-content);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .related-card-title a:hover {
            color: var(--primary);
        }

        .related-date {
            font-size: 0.75rem;
            color: var(--base-content);
            opacity: 0.7;
        }

        footer {
            background-color: var(--base-200);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            display: block;
            text-decoration: none;
        }

        .footer-description {
            color: var(--base-content);
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--base-content);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 0.75rem;
        }

        .footer-link a {
            color: var(--base-content);
            opacity: 0.7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link a:hover {
            color: var(--primary);
            opacity: 1;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: var(--base-content);
            opacity: 0.6;
            font-size: 0.875rem;
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 3rem;
            height: 3rem;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            margin-bottom:60px;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                width: 80%;
                max-width: 300px;
                background-color: var(--base-200);
                flex-direction: column;
                padding: 2rem;
                z-index: 100;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                display: flex;
                transform: translateX(0);
            }

            .mobile-menu-btn {
                display: block;
            }

            .page-title {
                font-size: 1.75rem;
            }

            .casino-body {
                grid-template-columns: 1fr;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .author-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
                .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.75rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 90;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(100%);
            transition: transform 0.3s ease;
            box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        }
        .sticky-cta.visible {
            transform: translateY(0);
        }
        .sticky-cta-text {
            font-weight: 600;
            margin-right: 1rem;
        }
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 100;
        }
        .progress-bar {
            height: 4px;
            background: var(--primary);
            width: 0%;
        }
        .casino-comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .casino-comparison-table th {
            background-color: var(--primary);
            color: white;
            text-align: left;
            padding: 1rem;
            font-weight: 600;
        }
        .casino-comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .casino-comparison-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }
        .casino-comparison-table tr:hover {
            background-color: rgba(26, 86, 219, 0.05);
        }
        .crypto-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .crypto-card {
            background-color: var(--base-200);
            border-radius: 0.5rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            text-align: center;
            padding: 1.5rem;
        }
        .crypto-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        .crypto-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .crypto-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.125rem;
        }
        .crypto-info {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
        }
        .tooltip {
            position: relative;
            display: inline-block;
            cursor: help;
        }
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 200px;
            background-color: var(--base-300);
            color: var(--base-content);
            text-align: center;
            border-radius: 6px;
            padding: 10px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -100px;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.75rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
        .floating-nav {
            display: none;
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--base-200);
            border-radius: 0.5rem;
            padding: 0.75rem;
            z-index: 80;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .floating-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .floating-nav-item {
            margin-bottom: 0.5rem;
        }
        .floating-nav-link {
            display: flex;
            align-items: center;
            color: var(--base-content);
            text-decoration: none;
            font-size: 0.875rem;
            padding: 0.5rem;
            border-radius: 0.25rem;
            transition: all 0.3s ease;
        }
        .floating-nav-link:hover, .floating-nav-link.active {
            background-color: rgba(26, 86, 219, 0.1);
            color: var(--primary);
        }
        .floating-nav-icon {
            margin-right: 0.5rem;
            font-size: 0.75rem;
        }
        .process-steps {
            margin: 2rem 0;
            counter-reset: step-counter;
        }
        .process-step {
            display: flex;
            margin-bottom: 2rem;
            position: relative;
        }
        .process-step-number {
            flex-shrink: 0;
            width: 2.5rem;
            height: 2.5rem;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 1rem;
            position: relative;
            z-index: 5;
        }
        .process-step-content {
            flex-grow: 1;
            position: relative;
            padding-bottom: 1.5rem;
        }
        .process-step:not(:last-child) .process-step-content:after {
            content: '';
            position: absolute;
            left: -1.25rem;
            top: 2.5rem;
            bottom: 0;
            width: 2px;
            background-color: rgba(255, 255, 255, 0.1);
        }
        .process-step-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        .crypto-feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        /* Graphiques */
        .chart-container {
            background-color: var(--base-200);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .chart-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
            text-align: center;
        }
        /* Tableau de comparaison */
        .comparison-table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
        }
        /* Timeline */
        .timeline {
            position: relative;
            margin: 2rem 0;
            padding: 1rem 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background-color: var(--primary);
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            width: 100%;
            display: flex;
        }
        .timeline-item:nth-child(odd) {
            justify-content: flex-start;
            padding-right: 50%;
        }
        .timeline-item:nth-child(even) {
            justify-content: flex-end;
            padding-left: 50%;
        }
        .timeline-content {
            background-color: var(--base-200);
            border-radius: 0.5rem;
            padding: 1.5rem;
            width: 90%;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background-color: var(--primary);
            border-radius: 50%;
        }
        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -60px;
        }
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -60px;
        }
        .timeline-date {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .timeline-title {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        /* Infographics */
        .infographic {
            background-color: var(--base-200);
            border-radius: 0.5rem;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .infographic-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-align: center;
        }
        .infographic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .infographic-item {
            text-align: center;
            padding: 1rem;
        }
        .infographic-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .infographic-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .infographic-label {
            font-size: 0.875rem;
            color: var(--base-content);
            opacity: 0.8;
        }
        /* Accordéon pour la FAQ */
        .accordion {
            background-color: var(--base-200);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .accordion-header {
            padding: 1.25rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .accordion-header:hover {
            background-color: rgba(34, 197, 94, 0.1);
        }
        .accordion-icon {
            transition: transform 0.3s ease;
        }
        .accordion.active .accordion-icon {
            transform: rotate(180deg);
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.25rem;
        }
        .accordion.active .accordion-content {
            max-height: 500px;
            padding-bottom: 1.25rem;
        }
        /* Responsive */
        @media (min-width: 1200px) {
            .floating-nav {
                display: block;
            }
            .content-wrapper {
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        @media (max-width: 768px) {
            .crypto-cards {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            .sticky-cta {
                flex-direction: column;
                padding: 0.5rem;
            }
            .sticky-cta-text {
                margin-right: 0;
                margin-bottom: 0.5rem;
                font-size: 0.875rem;
            }
            .sticky-cta .btn {
                width: 100%;
                font-size: 0.875rem;
                padding: 0.5rem 1rem;
            }
            .timeline::before {
                left: 30px;
            }
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-right: 0;
                padding-left: 80px;
            }
            .timeline-item:nth-child(odd) .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -50px;
            }
            .timeline-content {
                width: 100%;
            }
        }
        @media (max-width: 768px) {
    /* Pour les tableaux qui sortent de l'écran */
    .casino-comparison-table, 
    .comparison-table,
    .comparison-table-wrapper table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Réduire la taille de police dans les tableaux sur mobile */
    .casino-comparison-table th,
    .casino-comparison-table td,
    .comparison-table th,
    .comparison-table td {
        font-size: 0.8rem !important;
        padding: 0.5rem !important;
    }
    
    /* Pour les cellules qui contiennent beaucoup de texte */
    .casino-comparison-table td,
    .comparison-table td {
        max-width: 150px !important;
        white-space: normal !important;
    }
}
