#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2E2B38;
    border-top: 1px solid #782e87;
    color: #F5F7FA;
    padding: 1rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Rubik', sans-serif;
    font-size: 0.875rem;
}
.btn-accept {
    background-color: #fafa33;
    color: #000;
    border: none;
}
.btn-accept:hover {
    transform: scale(1.05);
}
.btn-decline {
    background-color: transparent;
    border: 1px solid #A0AEC0;
    color: #A0AEC0;
    margin-right: 10px;
}
.btn-decline:hover {
    border-color: #fafa33;
    color: #fafa33;
}
