:root {
    --main-color: #3366ff;
    --main-color-dark: #003399;
    --accent-color: #e0f7fa;
    --glow: #3366ff80;
    --hover-glow: var(--main-color-dark);
    --text-color: #e2e8f0;
    --heading-color: #ffffff;
    --bg-color: #050510;
}

* {
    box-sizing: border-box;
}

:focus-visible {
    outline: 2px solid var(--main-color);
    box-shadow: 0 0 15px var(--glow);
    border-radius: 4px;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.loaded {
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

label,
.label,
.text-uppercase {
    letter-spacing: 0.05em;
}

/* Cursor Effect */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    box-shadow: 0 0 15px 5px var(--glow);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
    mix-blend-mode: screen;
    will-change: transform;
    transition: opacity 0.3s;
}

body.no-cursor .cursor-glow {
    opacity: 0;
}

p {
    color: var(--text-color);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

section>h1,
section>h2,
section>h3,
section>p {
    text-align: center;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   MOBILE RESPONSIVE DESIGN - Globals
   ======================================== */

@media (max-width: 768px) {

    /* Typography */
    h2 {
        text-align: center;
    }

    h3 {
        text-align: center;
    }

    /* Content wrapper padding */
    .content-wrapper {
        padding: 10px;
    }
}