        :root {
            --deep-red: #4a0404;
            --gold: #d4af37;
            --moncash: #cf2027;
            --glass: rgba(255, 255, 255, 0.1);
        }

        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background: radial-gradient(circle at center, #8b0000 0%, #2a0202 100%);
            background-attachment: fixed;
            color: white;
            overflow-x: hidden;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }

        header { text-align: center; padding: 40px 0; }
        h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 8vw, 4rem); font-style: italic; margin: 0; line-height: 1; }
        .brand-name { letter-spacing: 5px; font-weight: 300; font-size: 1rem; color: var(--gold); margin-bottom: 10px; display: block; }

        /* --- SECTION JEU --- */
        .game-banner {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0,0,0,0.6));
            border: 1px solid var(--gold);
            border-radius: 20px;
            padding: 30px;
            margin: 30px auto;
            max-width: 900px;
            backdrop-filter: blur(10px);
            text-align: center;
        }
        .kb-highlight { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 2.2rem; font-weight: bold; margin-bottom: 10px; }

        /* --- NAVIGATION --- */
        .tabs { display: flex; justify-content: center; gap: 10px; margin: 40px 0; }
        .tab-btn {
            background: transparent; border: 1px solid white; color: white;
            padding: 12px 25px; border-radius: 50px; cursor: pointer;
            transition: 0.3s; font-weight: 600; text-transform: uppercase; font-size: 0.85rem;
        }
        .tab-btn.active { background: white; color: var(--deep-red); border-color: transparent; box-shadow: 0 0 20px rgba(255,255,255,0.2); }

        /* --- GRID --- */
        .package-grid { display: none; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
        .package-grid.active { display: grid; animation: fadeInUp 0.8s ease; }

        /* --- CARD --- */
        .card {
            background: var(--glass);
            border-radius: 25px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            transition: 0.4s;
            display: flex;
            flex-direction: column;
        }
        .card:hover { transform: translateY(-10px); border-color: var(--gold); }

        .img-container { width: 100%; height: 250px; background: #222; overflow: hidden; position: relative; }
        .img-container img { width: 100%; height: 100%; object-fit: cover; }
        
        .promo-badge {
            position: absolute; top: 15px; right: 15px;
            background: var(--gold); color: black; font-weight: 800;
            padding: 5px 12px; border-radius: 8px; font-size: 0.9rem; z-index: 2;
        }

        .card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
        .card-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 0; color: #fff; }

        .price-tag { margin: 15px 0; border-left: 3px solid var(--gold); padding-left: 15px; }
        .old-price { text-decoration: line-through; color: #aaa; font-size: 0.9rem; display: block; }
        .new-price { font-size: 1.8rem; font-weight: bold; color: var(--gold); }

        .items-list { list-style: none; padding: 0; margin: 0 0 20px 0; flex-grow: 1; }
        .items-list li { margin-bottom: 6px; font-size: 0.85rem; display: flex; align-items: center; color: #ddd; }
        .items-list li i { color: var(--gold); margin-right: 10px; font-size: 0.7rem; }

        /* --- BUTTON MONCASH --- */
        .moncash-btn {
            background: var(--moncash);
            color: white;
            text-decoration: none;
            padding: 14px;
            border-radius: 12px;
            text-align: center;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }
        .moncash-btn:hover { background: #e62229; transform: scale(1.02); }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        .heart { position: fixed; color: rgba(255, 77, 109, 0.15); pointer-events: none; z-index: -1; animation: floatUp 8s infinite linear; }
        @keyframes floatUp { 0% { transform: translateY(110vh) rotate(0); opacity: 0; } 50% { opacity: 0.5; } 100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; } }
        
        
          /* Styles pour la Modal */
        .modal { display: none; position: fixed; z-index: 999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); }
        .modal-content { background: #fff; color: #333; margin: 15% auto; padding: 30px; border-radius: 20px; width: 90%; max-width: 400px; text-align: center; }
        .btn-play { background: #d4af37; color: #fff; padding: 10px 20px; border-radius: 50px; text-decoration: none; display: inline-block; margin-top: 15px; font-weight: bold; }
        .btn-normal { background: #4a0404; color: #fff; padding: 10px 20px; border-radius: 50px; cursor: pointer; border: none; margin-top: 10px; width: 100%; }
        .close-modal { float: right; cursor: pointer; font-size: 20px; color: #999; }

        /* Style pour le logo image */
        .logo-img { max-width: 180px; height: auto; margin-bottom: 15px; }

        /* FOOTER COMPACT */
        footer {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            margin-top: 50px;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .footer-logo { max-width: 100px; opacity: 0.8; }
        .footer-socials { display: flex; gap: 15px; font-size: 1.2rem; }
        .footer-socials a { color: #d4af37; transition: 0.3s; }
        .footer-socials a:hover { color: #fff; transform: translateY(-3px); }
        .copyright { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; }
   