* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ff8c00;
            --secondary: #ff6b00;
            --dark: #0a0a0a;
            --darker: #000000;
            --accent: #ffa500;
            --text: #ffffff;
            --text-dim: #a0a0a0;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--darker);
            color: var(--text);
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        header {
            padding: 3rem 0;
            text-align: center;
            animation: fadeInDown 0.8s ease;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .logo-img {
            width: 150px;
            height: 150px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            letter-spacing: 0.3rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 60px rgba(255, 140, 0, 0.3);
            margin-bottom: 0.5rem;
        }

        .tagline {
            font-size: 1.2rem;
            color: var(--text-dim);
            font-weight: 300;
        }

        .top-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin: 3rem 0;
            flex-wrap: wrap;
            animation: fadeIn 1s ease 0.2s backwards;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-discord {
            background: linear-gradient(135deg, #5865F2, #4752C4);
            color: white;
            box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
        }

        .btn-discord:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(88, 101, 242, 0.6);
        }

        .btn-ip {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
        }

        .btn-ip:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 140, 0, 0.6);
        }

        .btn-donate {
            background: linear-gradient(135deg, #0070ba, #005ea6);
            color: white;
            box-shadow: 0 8px 30px rgba(0, 112, 186, 0.4);
        }

        .btn-donate:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 112, 186, 0.6);
        }

        .section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 3rem;
            margin: 2rem 0;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease backwards;
        }

        .section:nth-child(2) { animation-delay: 0.1s; }
        .section:nth-child(3) { animation-delay: 0.2s; }
        .section:nth-child(4) { animation-delay: 0.3s; }
        .section:nth-child(5) { animation-delay: 0.4s; }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            letter-spacing: 0.1rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .section-title::before {
            content: '';
            width: 6px;
            height: 40px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 3px;
        }

        .weekly-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 40px rgba(46, 204, 113, 0.2);
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card.clickable {
            cursor: pointer;
        }

        .info-card.clickable:active {
            transform: translateY(-3px) scale(0.98);
        }

        .info-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--primary);
            font-weight: 600;
        }

        .info-card p {
            color: var(--text-dim);
            line-height: 1.6;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .social-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            transition: height 0.4s ease;
            opacity: 0.1;
        }

        .social-card.youtube::after { background: #FF0000; }
        .social-card.tiktok::after { background: #000000; }
        .social-card.instagram::after { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .social-card.twitch::after { background: #9146FF; }

        .social-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .social-card:hover::after {
            height: 100%;
        }

        .social-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .social-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            position: relative;
            z-index: 1;
        }

        .social-card p {
            color: var(--text-dim);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: scale(1.05);
        }

        .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-dim);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
        }

        /* Règles */
        .rules-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .rules-list li {
            padding: 1.2rem;
            margin: 0.8rem 0;
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .rules-list li:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateX(10px);
        }

        .rules-list li::before {
            content: '▸';
            color: var(--primary);
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        footer {
            text-align: center;
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-dim);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 3rem;
            }

            .section {
                padding: 2rem 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .top-actions {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }