#halkoci-age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.halkoci-age-modal {
    background: #fff;
    border: 3px solid #2d6a2e;
    border-radius: 8px;
    padding: 50px 60px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.halkoci-age-heading {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.2;
}

.halkoci-age-text {
    font-size: 16px;
    color: #333;
    margin: 0 0 32px;
    line-height: 1.5;
}

.halkoci-age-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.halkoci-age-btn {
    font-size: 20px;
    font-weight: 700;
    color: #2d6a2e;
    background: #fff;
    border: 2px solid #2d6a2e;
    padding: 12px 48px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
}

.halkoci-age-btn:hover {
    background: #2d6a2e;
    color: #fff;
}

@media (max-width: 480px) {
    .halkoci-age-modal {
        padding: 32px 24px;
    }

    .halkoci-age-heading {
        font-size: 22px;
    }

    .halkoci-age-btn {
        padding: 10px 32px;
        font-size: 16px;
    }
}
