/* Cookie Consent Banner - Dark Theme */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1c3b, #2e1a47);
    color: #e0e0e0;
    padding: 18px 24px;
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(110, 142, 251, 0.2);
    font-size: 0.95rem;
}

.cookie-banner p {
    margin: 0 15px 0 0;
    line-height: 1.5;
    max-width: 800px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner button {
    background: rgba(110, 142, 251, 0.9);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 0 10px rgba(110, 142, 251, 0.3);
}

.cookie-banner button:hover {
    background: #6e8efb;
    transform: translateY(-2px);
}

.cookie-banner button.cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.cookie-banner button.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cookie-banner a {
    color: #6e8efb;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #a777e3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 16px;
        text-align: center;
    }
    
    .cookie-banner p {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}