#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f0f12;
    border-top: 1px solid rgba(255, 61, 61, 0.25);
    padding: 1rem 2rem;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

#cookie-banner.cb-visible {
    transform: translateY(0);
}

#cookie-banner .cb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

#cookie-banner .cb-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 240px;
}

#cookie-banner .cb-icon {
    width: 22px;
    height: 22px;
    color: #ff3d3d;
    flex-shrink: 0;
}

#cookie-banner .cb-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

#cookie-banner .cb-text a {
    color: #ff3d3d;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#cookie-banner .cb-text a:hover {
    color: #ff6060;
}

#cookie-banner .cb-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    align-items: center;
}

#cookie-banner .cb-decline {
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

#cookie-banner .cb-decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

#cookie-banner .cb-accept {
    padding: 0.55rem 1.25rem;
    background: #ff3d3d;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

#cookie-banner .cb-accept:hover {
    background: #e03030;
}

#cookie-banner .cb-accept:active {
    transform: scale(0.97);
}

@media (max-width: 640px) {
    #cookie-banner {
        padding: 1rem 1.25rem;
    }

    #cookie-banner .cb-inner {
        gap: 0.875rem;
    }

    #cookie-banner .cb-actions {
        width: 100%;
    }

    #cookie-banner .cb-accept,
    #cookie-banner .cb-decline {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}
