/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 2rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent-banner.show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-consent-banner p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-consent-banner a {
    color: #4f9cf9;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
}

.cookie-btn-accept {
    background: #4f9cf9;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #3d8bd9;
}

.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #666;
}

.cookie-btn-decline:hover {
    background: #333;
}

@media (max-width: 600px) {
    .cookie-consent-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}