        :root {
            --primary-blue: #007BFF;
            --hover-blue: #0056b3;
            --bg-overlay: #000000;
            --text-dark: #333;
        }

        /* Full-screen overlay */
        .age-gate-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-overlay);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999999;
            backdrop-filter: blur(5px);
        }

        /* The Card */
        .age-gate-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        h2 {
            margin-top: 0;
            color: var(--text-dark);
            font-size: 1.5rem;
        }

        p {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .button-group {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
            flex: 1;
        }

        /* Under 18 - White Button */
        .btn-under {
            background: #e20c0c;
            color: white;
            border: 2px solid #ffffff;
        }

        .btn-under:hover {
            background: #ef0e0e;
            border-color: #ffffff;
        }

        /* Over 18 - Blue Button */
        .btn-over {
            background: var(--primary-blue);
            color: white;
            border: 2px solid #ffffff;
        }

        .btn-over:hover {
            background: var(--hover-blue);
            border-color: #ffffff;
        }


.btn {
    /* 1. The "Nuclear" centering fix */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* 2. Reset inherited typography */
    line-height: 1 !important; 
    vertical-align: middle;
    
    /* 3. Ensure padding doesn't explode the button size */
    box-sizing: border-box;
    
    /* 4. Use a fixed height for total consistency */
    height: 45px; 
    padding: 0 24px;
    
    /* Remaining styles... */
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}