body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    min-height: 100vh;
    -webkit-animation: fadeInUp 0.75s ease both;
    animation: fadeInUp 0.75s ease both;
}

h1, h2, h3, th, .oswald {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

#appContainer {
    display: none;
}

/* NAVIGATION */
nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(6, 6, 6, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    flex-wrap: nowrap;
    white-space: nowrap;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e5e5e5"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z"/></svg>') no-repeat center;
}

/* LAYOUT CONTAINER */
.container {
    max-width: 1500px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.section-header h2 {
    font-size: 3rem;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--gold-glow);
}

.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto 30px auto;
}

.red-line {
    height: 2px;
    background: linear-gradient(90deg, #ef4444, transparent);
    margin: 10px 0 20px 0;
    width: 60px;
}

.reticle-box {
    background: var(--bg-panel);
    border: 1px solid #1a1a1a;
    padding: 2rem;
    position: relative;
    min-height: auto;
    -webkit-transition: transform 0.25s ease, box-shadow 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reticle-box::before,
.reticle-box::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: var(--gold);
    border-style: solid;
}

.reticle-box::before {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
}

.reticle-box::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
}

.reticle-box:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    box-shadow: 0 18px 65px rgba(0, 0, 0, 0.4), 0 0 25px rgba(142, 4, 255, 0.15);
}