* { box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body {
    margin: 0;
    padding: 10px;
    background: linear-gradient(to bottom, #87CEEB, #FAD02E); /* Gökyüzünden kuma geçiş */
    background-attachment: fixed;
    min-height: 100vh;
}

.menu-container {
    max-width: 500px;
    margin: auto;
    background: rgba(255, 255, 255, 0.85); /* Hafif şeffaf beyaz */
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

header { text-align: center; color: #E67E22; margin-bottom: 20px; }
header h1 { margin: 0; font-size: 2.5rem; letter-spacing: 2px; }

/* Akordeon Butonları */
.accordion {
    background-color: #ffffff;
    color: #2C3E50;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.4s;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
}

.active, .accordion:hover { background-color: #E67E22; color: white; }

/* İçerik Paneli */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-radius: 0 0 12px 12px;
}

.item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dotted #ccc;
    color: #555;
}

footer { text-align: center; margin-top: 30px; color: #E67E22; font-weight: bold; }