#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 1rem 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5);
    font-family: 'Inter', system-ui, sans-serif
}

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

@media (min-width:768px) {
    .cookie-content {
        flex-direction: row;
        text-align: left
    }
}

.cookie-text {
    flex: 1;
    color: #e2e8f0;
    font-size: .9rem;
    line-height: 1.5
}

.cookie-text a {
    color: #8b5cf6;
    text-decoration: underline;
    transition: color .2s
}

.cookie-text a:hover {
    color: #a78bfa
}

.cookie-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center
}

.cookie-btn {
    padding: .5rem 1rem;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
    border: 1px solid transparent
}

.cookie-allow-all {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1
}

.cookie-allow-all:hover {
    background: #4f46e5
}

.cookie-necessary {
    background: 0 0;
    border-color: #475569;
    color: #cbd5e1
}

.cookie-necessary:hover {
    border-color: #94a3b8;
    color: #fff
}

.cookie-deny {
    background: 0 0;
    color: #94a3b8;
    text-decoration: underline;
    border: none;
    padding: .5rem
}

.cookie-deny:hover {
    color: #cbd5e1
}