.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8), rgba(76, 175, 80, 0.8));
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(5px);
}

.age-verification-popup {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-verification-header {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.age-verification-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.age-verification-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.age-verification-body {
    padding: 40px 30px 30px 30px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.age-verification-logo {
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 15px;
    display: inline-block;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.age-verification-logo img {
    max-height: 60px;
    max-width: 200px;
    height: auto;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.age-verification-content {
    font-size: 14px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 0;
    text-align: left;
}

.age-verification-content p {
    margin: 0 0 15px 0;
    padding: 15px;
    background: rgba(76, 175, 80, 0.05);
    border-left: 4px solid #4CAF50;
    border-radius: 0 10px 10px 0;
}

.age-verification-content p:last-child {
    margin-bottom: 0;
    background: rgba(33, 150, 243, 0.05);
    border-left-color: #2196F3;
}

.age-verification-footer {
    padding: 0 30px 30px 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-verification-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.age-verification-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;
}

.age-verification-btn:hover::before {
    left: 100%;
}

.age-verification-btn.yes {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.age-verification-btn.yes:hover {
    background: linear-gradient(135deg, #45a049, #255e24);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.age-verification-btn.no {
    background: linear-gradient(135deg, #90A4AE, #607D8B);
    color: white;
    box-shadow: 0 4px 15px rgba(144, 164, 174, 0.3);
}

.age-verification-btn.no:hover {
    background: linear-gradient(135deg, #78909C, #546E7A);
    box-shadow: 0 8px 25px rgba(144, 164, 174, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .age-verification-popup {
        width: 95%;
        max-width: 95vw;
        border-radius: 15px;
        margin: 10px;
    }
    
    .age-verification-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .age-verification-body {
        padding: 25px 20px 20px 20px;
    }
    
    .age-verification-logo {
        padding: 10px;
        border-radius: 10px;
    }
    
    .age-verification-logo img {
        max-height: 50px;
        max-width: 150px;
    }
    
    .age-verification-content {
        font-size: 13px;
        text-align: center;
    }
    
    .age-verification-content p {
        padding: 12px;
        border-radius: 0 8px 8px 0;
    }
    
    .age-verification-footer {
        padding: 0 20px 25px 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .age-verification-btn {
        width: 100%;
        font-size: 13px;
        padding: 12px 20px;
        min-width: unset;
        border-radius: 20px;
    }
} 