.cookie-lock {
    overflow: hidden !important;
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
}

.cookie-overlay.show {
    display: flex;
}

.cookie-box {
    width: 100%;
    max-width: 620px;
    padding: 38px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.cookie-box h2 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.1;
    color: #0f172a;
}

.cookie-box p {
    margin: 0 0 28px;
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.cookie-button {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #059669);
    box-shadow: 0 18px 40px rgba(5, 150, 105, 0.28);
}

.cookie-links {
    margin-top: 18px;
}

.cookie-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.cookie-links a:hover {
    color: #059669;
}

@media (max-width: 640px) {
    .cookie-box {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .cookie-box h2 {
        font-size: 28px;
    }

    .cookie-box p {
        font-size: 16px;
    }
}