/* Cookie Consent Popup Styles */
.cookie-consent {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: rgba(12, 50, 142, 0.97);
    backdrop-filter: blur(10px);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 3px solid rgba(255,255,255,0.2);
}

.cookie-consent.show {
    bottom: 0;
    transform: translateY(0);
}

/* Ensure popup is completely hidden when not shown */
.cookie-consent:not(.show) {
    pointer-events: none;
}

.cookie-consent[style*="display: none"] {
    display: none !important;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-content {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.cookie-consent-title i {
    margin-right: 10px;
    font-size: 1.3rem;
    color: #ffd700;
}

.cookie-consent-text {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.cookie-consent-text a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-btn.accept {
    background: #ffd700;
    color: #0C328E;
}

.cookie-consent-btn.accept:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cookie-consent-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-consent-btn.decline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.cookie-consent-btn.settings {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.cookie-consent-btn.settings:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-consent-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .cookie-consent {
        padding: 20px 15px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        width: 100%;
        justify-content: center;
    }
}
