/* --- TEMEL AYARLAR --- */
#page, #content, #primary, #main {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.site-main { padding: 0 !important; }

/* --- LANDING PAGE TASARIMI --- */
.umay-landing-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f7f6 100%);
    z-index: 9999;
}

.umay-content {
    position: relative;
    z-index: 10000; /* Butonun konteynırdan üstte olması şart */
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.umay-logo img {
    height: 170px !important;
    width: auto;
    margin-bottom: 30px;
}

.umay-title {
    font-size: 2.3rem;
    color: #1d1d1f;
    font-weight: 700;
    margin-bottom: 20px;
}

.umay-get-info-btn {
    background: #E78325;
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 131, 37, 0.3);
    position: relative;
    z-index: 10001 !important;
    pointer-events: auto !important;
    touch-action: manipulation;
}

/* --- FORM ALANI (Sadece Tetiklendiğinde Görünmeli) --- */
#umay-form-area {
    display: none; /* JS ile açılması için varsayılan gizli kalsın */
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20000;
    pointer-events: auto !important;
}

/* --- MOBİL İÇİN TIKLAMA KATMANI DÜZELTME --- */
@media (max-width: 768px) {
    .umay-landing-container {
        /* Arka planın tıklamayı yutmasını önlemek için */
        pointer-events: none;
    }
    .umay-content, .umay-get-info-btn {
        pointer-events: auto !important;
    }
}