/* Base Styles - Reset, Typography, Container */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.max-width-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Glass utility class */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    margin-top: 4rem;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer .handle {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.footer .handle strong {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}