/* Startseiten-Popup – zentriert, Box mit Hintergrundbild */
.mhc-startpopup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mhc-startpopup-overlay.mhc-startpopup-visible {
    opacity: 1;
    visibility: visible;
}

.mhc-startpopup-box {
    position: relative;
    max-width: 560px;
    width: 100%;
    min-height: 560px;
    background: #fff;
    background-image: url('https://mhcmobility.zold.at/wp-content/uploads/2026/03/popup-osteraction.png');
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    overflow: hidden;
}

.mhc-startpopup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    background: #e60000;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}

.mhc-startpopup-close:hover {
    background: #c40000;
    color: #fff;
}

.mhc-startpopup-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px 24px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 240px;
}

.mhc-startpopup-content h2 {
    margin: 0 0 4px 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.mhc-startpopup-subtitle {
    margin: 0 0 16px 0;
    font-style: italic;
    color: #fff;
    opacity: 0.85;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mhc-startpopup-text {
    margin: 0 0 24px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fff;
}

.mhc-startpopup-btn {
    display: inline-block;
    margin-top: auto;
    padding: 12px 24px;
    background: #e60000;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 26px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.mhc-startpopup-btn:hover {
    background: #c40000;
    color: #fff;
}