@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600&display=swap');

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

        :root {
            --gold: #c8a951;
            --gold-bright: #f0cc6a;
            --blue-dark: #0a0e1a;
            --blue-mid: #0d1b2e;
            --blue-glow: #1a4a7a;
            --text-dim: #7a8fa8;
            --text-light: #c5d4e8;
        }

        body {
            background-color: var(--blue-dark);
            color: var(--text-light);
            font-family: 'Exo 2', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        /* Starfield */
        .stars {
            position: fixed;
            inset: 0;
            z-index: 0;
        }

        .stars canvas {
            display: block;
            width: 100%;
            height: 100%;
        }

        /* Nebula glow */
        body::before {
            content: '';
            position: fixed;
            width: 800px;
            height: 800px;
            background: radial-gradient(ellipse, rgba(26,74,122,0.18) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -55%);
            pointer-events: none;
            z-index: 0;
        }

        body::after {
            content: '';
            position: fixed;
            width: 500px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(200,169,81,0.06) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -40%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 2rem;
            max-width: 800px;
            width: 100%;
        }

        /* Corp logo/emblem area */
        .emblem {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }

        .emblem img {
            width: 90px;
            height: 90px;
            object-fit: contain;
            filter: drop-shadow(0 0 18px rgba(200,169,81,0.5));
        }

        /* Corp tag */
        .corp-tag {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.35em;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 0.75rem;
            opacity: 0.85;
        }

        /* Main title */
        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.08em;
            color: #fff;
            text-shadow:
                0 0 40px rgba(200,169,81,0.4),
                0 0 80px rgba(26,74,122,0.4);
            margin-bottom: 0.4rem;
        }

        h1 span {
            color: var(--gold-bright);
        }

        /* Full name subtitle */
        .full-name {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(0.6rem, 2vw, 0.85rem);
            font-weight: 400;
            letter-spacing: 0.25em;
            color: var(--text-dim);
            text-transform: uppercase;
            margin-bottom: 3rem;
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 0 auto 2.5rem;
            max-width: 400px;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold));
        }

        .divider::after {
            background: linear-gradient(to left, transparent, var(--gold));
        }

        .divider-diamond {
            width: 8px;
            height: 8px;
            background: var(--gold);
            transform: rotate(45deg);
            flex-shrink: 0;
        }

        /* Coming soon text */
        .coming-soon {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(0.9rem, 3vw, 1.2rem);
            font-weight: 700;
            letter-spacing: 0.5em;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .tagline {
            font-size: 1rem;
            font-weight: 300;
            color: var(--text-dim);
            line-height: 1.7;
            max-width: 440px;
            margin: 0 auto 3rem;
            letter-spacing: 0.02em;
        }

        /* Status bar */
        .status-row {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.78rem;
            letter-spacing: 0.08em;
            color: var(--text-dim);
            text-transform: uppercase;
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #2ecc71;
            box-shadow: 0 0 8px #2ecc71;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* Auth button */
        .auth-actions {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .auth-link {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem 2rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .auth-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold);
            transform: translateX(-100%);
            transition: transform 0.25s ease;
            z-index: -1;
        }

        .auth-link:hover {
            color: var(--blue-dark);
        }

        .auth-link:hover::before {
            transform: translateX(0);
        }

        .discord-link {
            border-color: #7289da;
            color: #aebcff;
        }

        .discord-link::before {
            background: #7289da;
        }

        /* Footer */
        footer {
            position: fixed;
            bottom: 1.5rem;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            color: rgba(122,143,168,0.4);
            z-index: 1;
        }

        /* Scan line effect */
        .scanline {
            position: fixed;
            inset: 0;
            background: repeating-linear-gradient(
                to bottom,
                transparent 0px,
                transparent 3px,
                rgba(0,0,0,0.03) 3px,
                rgba(0,0,0,0.03) 4px
            );
            pointer-events: none;
            z-index: 2;
        }

