body {
    background-color: #ffebd2;
    font-family: "Inter", sans-serif;
}

.section-background {
    background-image: repeating-linear-gradient(
        -45deg,
        #ffebd2,
        #ffebd2 10px,
        #fff3e0 10px,
        #fff3e0 20px
    );
}

.neon-text {
    text-shadow:
        0 0 10px #ffebd2,
        0 0 20px #ffebd2,
        0 0 30px #e84a5f;
    letter-spacing: 0.15em;
}

.menu-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow:
        12px 12px 0 -2px rgba(16, 66, 52, 0.6),
        12px 12px #e84a5f;
}

.button-retro {
    transition: all 0.15s ease-in-out;
    border: 4px solid #104234;
}

.button-retro:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 -2px rgba(16, 66, 52, 0.4);
}

.icon-shadow {
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}
