/* Cookie Consent Banner Styling */
#cookie-consent-banner {
    position: fixed;
    bottom: -200px; /* Start offscreen for animation */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    z-index: 10000; /* Above everything else */
    padding: 0;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 255, 0.2);
    border-top: 3px solid #ff00cc;
}

#cookie-consent-banner.visible {
    bottom: 0; /* Slide in from bottom */
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-consent-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #ff00cc;
    text-transform: uppercase;
}

.cookie-consent-content p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
}

.cookie-accept {
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    color: white;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.7);
}

.cookie-decline {
    background-color: rgba(60, 60, 60, 0.8);
    color: #cccccc;
    border: 1px solid #666;
}

.cookie-decline:hover {
    background-color: rgba(80, 80, 80, 0.9);
    color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 12px 15px;
    }
    
    .cookie-consent-content h3 {
        font-size: 16px;
    }
    
    .cookie-consent-content p {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
} 