:root {
    /* Renk Paleti */
    --bg-main: #052e16;
    --card-bg: linear-gradient(145deg, #fffef8 0%, #fff9e6 100%);
    --card-text: #1b4332;
    --header-bg: rgba(5, 46, 22, 0.98);
    --accent: #ffe066;
}

body.night-mode {
    --bg-main: #000000;
    --card-bg: #121212;
    --card-text: #e0e0e0;
    --header-bg: #000000;
}

html,
body {
    /* Zoom Engeli */
    touch-action: manipulation;
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--bg-main);
    margin: 0;
    height: 100vh;
    overflow: hidden;
    /* Metin seçimi engeli */
    -webkit-user-select: none;
    user-select: none;
}

/* Header Ayarları */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    background-color: var(--header-bg);
    border-bottom: 2px solid var(--accent);
    z-index: 1000;
    box-sizing: border-box;
}

.header-title {
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 40px;
    width: auto;
}

.font-btn {
    background: #1b4332;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
}

/* Menü Grid Düzeni */
.main-container {
    position: absolute;
    top: 60px;
    bottom: 85px;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.menu-card {
    background: var(--card-bg);
    color: var(--card-text);
    text-decoration: none;
    height: 135px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.15s ease;
}

.menu-card:active {
    transform: scale(0.95);
}

.menu-icon {
    font-size: 38px;
    margin-bottom: 8px;
}

.menu-text {
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    padding: 0 5px;
}

.menu-card.disabled {
    opacity: 0.5;
    filter: grayscale(1);
    pointer-events: none;
}

/* Footer Söz Alanı */
.footer-quote {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: var(--header-bg);
    border-top: 2px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
    box-sizing: border-box;
}

.quote-label {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.quote-text {
    color: #fefae0;
    font-size: 12px;
    font-style: italic;
    line-height: 1.4;
    font-weight: 500;
}

/* Küçük Ekranlar İçin Optimize */
@media (max-height: 600px) {
    .menu-card {
        height: 110px;
    }

    .menu-icon {
        font-size: 30px;
    }

    .footer-quote {
        height: 75px;
    }
}