.cookie-overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    padding: 0 16px;
}

.hidden {
    display: none !important;
}

.cookie-card {
    position: relative;
    width: 1200px;
    max-width: 90%;
    background: linear-gradient(135deg, #222c44f2, #070b14f2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    pointer-events: auto;
    margin: 0 auto;
}

.cookie-text p {
    color: rgb(172, 171, 171);
}


/* Buttons */
.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.btn.accept {
    background: #22c55e;
    color: black;
}

.btn.reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}


@media (max-width: 768px) {
    .cookie-overlay {
        left: 16px;
        right: 32px;
        bottom: 16px;
    } 

    .cookie-card {
        width: 100%;
        max-width: 100%;
    }

    .cookie-text h3 {
        font-size: 1.2rem;
    }

    .cookie-text p {
        font-size: 0.8rem;
    }

    .btn.accept,
    .btn.reject {
        font-size: 0.8rem;
    }

    .cookie-buttons {
       justify-content: center;
    }

}