.main-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #ffe9cc;
    padding: 2rem;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(300px, 90vw);
}

.game-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #474b44;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-btn {
    font-family: 'Noto Sans SC', sans-serif;
    margin: 5px;
    padding: 5px;
    background: #393d37;
    box-shadow: 2px 2px 2px #cdcad6;
    border: 1px solid #684b33;
    color: #fff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.menu-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.3);
}

.menu-btn:active {
    transform: translateY(1px);
    box-shadow: 0px 2px 5px;
}

.menu-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.delete-save {
    cursor: pointer;
}