/* Cookie Consent Banner Styles */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #61dafb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: none; /* Hidden by default, shown by JavaScript */
}

#cookieConsentBanner div:first-child {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.5;
}

#cookieConsentBanner a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

#cookieConsentBanner a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

#cookieConsentBanner div:last-child {
    display: flex;
    gap: 10px;
}

#cookieConsentBanner button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 80px;
}

#acceptCookies {
    background: #28a745;
    color: white;
}

#acceptCookies:hover {
    background: #218838;
    transform: translateY(-2px);
}

#rejectCookies {
    background: #6c757d;
    color: white;
}

#rejectCookies:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookieConsentBanner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    #cookieConsentBanner div:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    #cookieConsentBanner div:last-child {
        justify-content: center;
        width: 100%;
    }
    
    #cookieConsentBanner button {
        flex: 1;
        max-width: 120px;
    }
}

/* Slide-up animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookieConsentBanner.show {
    display: flex !important;
    animation: slideUp 0.5s ease-out;
}

/* Slide-down animation for hiding */
@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

#cookieConsentBanner.hide {
    animation: slideDown 0.3s ease-in;
}
