/* Cookie Consent Banner Styles */

#cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.cookie-consent-modal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.4s ease-out;
}

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

.cookie-consent-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-family: 'PT Sans Narrow', sans-serif;
    text-align: center;
}

.cookie-consent-content {
    padding: 30px;
    color: #ffffff;
}

.cookie-consent-content p {
    line-height: 1.6;
    margin: 10px 0;
    font-size: 16px;
}

.consent-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #ffd700;
}

.consent-section h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #ffd700;
    font-family: 'PT Sans Narrow', sans-serif;
}

.consent-section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.consent-section li {
    margin: 8px 0;
    line-height: 1.5;
}

.privacy-section {
    border-left-color: #4ade80;
}

.privacy-section h3 {
    color: #4ade80;
}

.cookie-consent-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.consent-button {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'PT Sans Narrow', sans-serif;
}

.consent-button.accept {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.consent-button.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.6);
}

.consent-button.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.consent-button.decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-modal {
        width: 95%;
        max-height: 95vh;
    }

    .cookie-consent-header h2 {
        font-size: 24px;
    }

    .cookie-consent-content {
        padding: 20px;
    }

    .cookie-consent-content p,
    .consent-section li {
        font-size: 14px;
    }

    .consent-button {
        font-size: 16px;
        padding: 12px 20px;
    }
}
