@import url('https://fonts.googleapis.com/css?family=Montserrat:600,400&display=swap');

#cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    background: rgba(34, 40, 49, 0.97);
    color: #eeeeee;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(34, 40, 49, 0.25);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    z-index: 1000;
    padding: 24px 28px 20px 28px;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(.57, 1.73, .81, .67) 0.3s forwards;
    border: 1.5px solid #393e46;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

#cookie-banner h4 {
    margin: 0 0 8px 0;
    color: #00adb5;
    font-size: 1.17rem;
    font-weight: 600;
    letter-spacing: 1px;
}

#cookie-banner p {
    margin: 0 0 22px 0;
    font-size: 0.98rem;
    color: #eeeeee;
    line-height: 1.5;
}

.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 10px 24px;
    margin: 0 8px;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0, 173, 181, 0.09);
}

#cookie-accept {
    background: linear-gradient(90deg, #00adb5 0%, #43e97b 100%);
    color: #222831;
}

#cookie-accept:hover {
    background: linear-gradient(90deg, #43e97b 0%, #00adb5 100%);
    transform: scale(1.07);
}

#cookie-reject {
    background: #393e46;
    color: #eeeeee;
    border: 1px solid #00adb5;
}

#cookie-reject:hover {
    background: #23272e;
    color: #00adb5;
    transform: scale(1.07);
}

@media (max-width: 400px) {
    #cookie-banner {
        width: 92%;
        padding: 15px 6px 10px 6px;
    }
}