/* ============================ */
/*        COOKIE BANNER         */
/* ============================ */

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;

    z-index: 9998;

    display: flex;
    justify-content: center;

    animation: cookieFade .4s ease;
}

.cookie-content {
    width: 100%;
    max-width: 900px;

    background: rgba(17, 24, 39, 0.96);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 16px;

    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.20),
        0 4px 12px rgba(0,0,0,0.15);
}

.cookie-content p {
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #7DE87D;
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-content button {
    flex-shrink: 0;

    background: linear-gradient(135deg, #1B9849 0%, #15793A 100%);
    color: white;

    border: none;
    border-radius: 10px;

    padding: 12px 22px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.cookie-content button:hover {
    opacity: .92;
    transform: translateY(-1px);
}

.cookie-content button:active {
    transform: translateY(0);
}

@keyframes cookieFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 700px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content button {
        width: 100%;
    }
}