/* Popup 18+ */
#age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

#age-verification-popup.hidden {
    display: none;
}

.age-popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.age-popup-content img {
    max-width: 150px;
    margin-bottom: 20px;
}

.age-popup-content h2 {
    color: #d32f2f;
    margin-bottom: 20px;
    font-size: 28px;
}

.age-popup-content p {
    color: #333;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-popup-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-popup-btn-yes {
    background: #4caf50;
    color: white;
}

.age-popup-btn-yes:hover {
    background: #45a049;
}

.age-popup-btn-no {
    background: #f44336;
    color: white;
}

.age-popup-btn-no:hover {
    background: #da190b;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 999998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

#cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: #4caf50;
    color: white;
}

.cookie-btn-accept:hover {
    background: #45a049;
}

.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .age-popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
    }
}

