        /* Import design system buttons */
        @import url('buttons.css');

        .age-verification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 11, 11, 0.98);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(10px);
        }

        .age-verification-overlay.hidden {
            display: none;
        }

        .age-verification-modal {
            text-align: center;
            padding: 60px var(--page-side-padding);
            background: linear-gradient(135deg, rgba(255, 62, 181, 0.1), rgba(227, 0, 73, 0.1));
            border: 2px solid var(--rose-fuchsia);
            border-radius: 20px;
            max-width: 500px;
            animation: modalFadeIn 0.5s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .age-verification-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .age-verification-text {
            color: var(--gris-perle);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .age-verification-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }

        /* Boutons gérés par /static/css/general/buttons.css */
