/**
 * Styly pro věkovou kontrolu (Age Gate)
 */

.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.age-verification-content {
    background: linear-gradient(135deg, rgba(25, 25, 42, 0.98) 0%, rgba(30, 30, 46, 0.98) 100%);
    border: 2px solid rgba(250, 180, 39, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
}

.age-verification-header {
    margin-bottom: 25px;
}

.age-verification-header h2 {
    color: var(--accent-color, #fab427);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.age-warning-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.age-verification-body {
    color: var(--text-color, #ffffff);
}

.age-verification-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.age-verification-legal {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(250, 180, 39, 0.1);
    border-left: 3px solid var(--accent-color, #fab427);
    border-radius: 8px;
    text-align: left;
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.age-btn-confirm {
    background: var(--accent-color, #fab427);
    color: var(--primary-color, #19192a);
}

.age-btn-confirm:hover {
    background: #ffc045;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 180, 39, 0.3);
}

.age-btn-deny {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn-deny:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responzivní design */
@media (max-width: 768px) {
    .age-verification-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-verification-header h2 {
        font-size: 24px;
    }
    
    .age-verification-text {
        font-size: 14px;
    }
    
    .age-verification-legal {
        font-size: 12px;
    }
    
    .age-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

