.cookie-container {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #f5f6fa;
    padding: 1rem 2rem;
    box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
    transition: 400ms all ease;
    z-index: 100000;
    overflow: hidden;
}

.cookie-container.active {
    bottom: 0;
}

.cookie-container a {
    color: #ff2994;
    text-decoration: underline;
}

.cookie-btn {
    background: #ff0062;
    display: block;
    border: none;
    color: #f5f6fa;
    padding: 12px 48px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 200ms ease;
}

.cookie-btn:hover {
    background: #12c430;
}

@media screen and (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
    }
    .cookie-btn {
        margin-top: 2rem;
    }
}