.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 90%;
    z-index: 9999;
}

.cookie-banner p {
    font-size: 0.85rem;
    color: #cbd5f5;
}

.cookie-banner button {
    background: #7c4dff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}