.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #0c0c3a;
    border-top: 2px solid #0558ff;
    padding: 20px 40px;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-banner-content p {
    font-family: var(--font-poppins);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-white);
    flex: 1;
}

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

.cookie-btn {
    font-family: var(--font-orbitron);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 32px;
    border-radius: 32px 2px 32px 2px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-btn-accept {
    background: #0558ff;
    color: var(--color-white);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid #0558ff;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px 24px;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}
