@font-face {
    font-family: "MinecraftTen";
    src: url("/fonts/MinecraftTen.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Monocraft";
    src: url("/fonts/Monocraft.woff2") format("woff2");
    font-display: swap;
}

:root {
    --accent: #83ED06;
    --accent-hover: #A6FF4D;

    --bg: #0E1110;
    --surface: #171C1A;
    --surface-2: #202623;
    --border: #2C3430;

    --text: #EDEFEA;
    --text-muted: #B3BBB6;
    --text-disabled: #6E7A73;

    --cyan: #3ED8FF;
    --purple: #8A5CFF;

    --success: #83ED06;
    --warning: #FF9F1C;
    --danger: #FF4D4D;

    --glow: rgba(166, 255, 77, 0.35);
}

body {
    background: var(--bg);
    color: var(--text);
    margin: 0 auto;
    font-family: "Monocraft";
}

a {
    text-decoration: none;
}

.hero {
    background-image: url("/images/backgrounds/mangrove.png");
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero:before {
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--bg);
	opacity: .6; 
}

.hero h1 {
    font-size: 6rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: "MinecraftTen";
    z-index: 1;
}

.hero p {
    max-width: 600px;
    color: var(--text-muted);
    margin: 0 auto;
    z-index: 1;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: "MinecraftTen";
    color: var(--accent);
    font-size: 1.4rem;
}

.nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: "Monocraft";
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.2s;
    font-size: 0.9rem;
}

.nav a:hover {
    background: var(--surface-2);
    color: var(--text);
}

.nav a.active {
    color: var(--text);
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 0 10px var(--glow);
}