/* ============================================
   BASE STYLES
   Reset, typography, and fundamental styles
   ============================================ */

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 16px;
    font-size: 2.5em;
    text-shadow: 0 0 40px var(--accent-glow);
}

/* Default button styling */
button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background: var(--accent-color);
    color: black;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #b1b1ff;
}