.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 650px;
    margin: 0 auto;
    z-index: 1000;
    background: rgba(18, 18, 24, 0.85);
    /* Slightly darker for readability */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent-violet);
    /* Accent on left */
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.cookie-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    white-space: nowrap;
}

.btn-accept {
    background: var(--accent-violet);
    border: 1px solid var(--accent-violet);
    color: white;
}

.btn-accept:hover {
    background: #9d4edd;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.btn-decline {
    background: transparent;
    border: 1px solid #555;
    color: #ddd;
}

.btn-decline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 700px) {
    .cookie-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        margin-top: 10px;
        justify-content: flex-end;
    }
}
