:root {
    --background: #080b0a;
    --surface: #101513;
    --text: #f5f7f6;
    --muted: #a7b0ac;
    --emerald: #064e3b;
    --emerald-bright: #059669;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(5, 150, 105, 0.12), transparent 40%),
        var(--background);

    color: var(--text);
    font-family: "Inter", sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
}

.hero {
    text-align: center;
}

h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(4rem, 12vw, 7rem);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.croc {
    color: #ffffff;
}

.core {
    color: #0b6e4d;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

p {
    max-width: 800px;
    margin: 0 auto;

    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.discord {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;

    margin-top: 3rem;
    padding: 1rem 1.75rem;

    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 999px;

    color: #d1d5db;
    font-weight: 500;
}

.discord-icon {
    width: 32px;
    height: 32px;

    color: #2ab669;

    transform: translateX(-1px);

    filter: drop-shadow(0 0 8px rgba(34,197,94,.8));
}

.wardog-icon{ 
    height: 1em;
    width: auto;
    object-fit: contain;
}

footer {
    margin-top: 4rem;

    text-align: center;

    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.5;

    opacity: 0.8;
}