/* ============================================================
   LineUp Magic — Shared Base Stylesheet
   style.css
   Linked from all pages via <link rel="stylesheet" href="/style.css">
   Page-specific styles remain in each page's inline <style> block.
   ============================================================ */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* SCROLL */
html {
    scroll-behavior: smooth;
}

/* BODY BASE
   Note: padding is set per-page in each page's inline <style>
   because it varies (20px on index.html, 30px 20px on content pages) */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a4d2e 0%, #0f3320 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
