/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #111;
    border-top: 2px solid var(--primary-color);
    padding: 16px;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(176, 38, 255, 0.4);
    transition: bottom 0.5s ease;
    opacity: 0;
}

.cookie-banner-active {
    bottom: 0;
    opacity: 1;
}

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

.cookie-content p {
    color: #ccc;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: var(--link-color);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px var(--primary-color);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.3);
}

.cookie-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(210, 79, 255, 0.5);
}

.accept-btn {
    border: 1px solid #fff;
}

/* Responsive adjustments for cookie banner */
@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}