* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overscroll-behavior: none;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom right, #16a34a, #dc2626);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y;
}

.app {
    width: 100%;
    min-height: 100vh;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.card {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.header {
    padding: 32px 24px 24px;
}

.header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.content {
    padding: 0 24px 32px;
}

.menu-section {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 24px;
}

.menu-section h2 {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.menu-section p {
    margin: 0;
    color: #666;
}

/* Touch-friendly interactive elements */
button, a, .interactive {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent text selection on interactive elements */
button, .interactive {
    -webkit-user-select: none;
    user-select: none;
}
