/* ============================================
   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: var(--button-text, white);
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: var(--accent-hover);
}

/* Global Link & Clickable Styling */
a,
.link,
.clickable-text {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

a:hover,
.link:hover,
.clickable-text:hover {
    color: var(--accent-light, #c0c0ff);
    filter: brightness(1.2);
}

/* Avoid gaudy underlines globally */
a:focus,
a:active {
    text-decoration: none;
}