/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}



/* Mobil ana yapı */
.mobile-wrapper {

    position: relative;
    height: 100vh;
    width: 100%;
    background: url("background.jpg") center / cover no-repeat;
}

/* Arka plan karartma */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
}

/* İçerik */
.content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo */
.logo img {
    width: 180px;
    margin-bottom: 60px;
}

/* Butonlar */
.menu-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.menu-btn {
    text-decoration: none;
    background: #2f3b4a;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.menu-btn:active {
    transform: scale(0.97);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

