@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
:root {
    --bg-very-dark: #000006;
    --bg-dark: #010018;
    --grid: rgba(0, 246, 255, 0.06);
    --neon-cyan: #00f6ff;
    --neon-blue: #00bfff;
    --neon-magenta: #ff2ee6;
    --muted: rgba(255, 255, 255, 0.55);
    --glass: rgba(255, 255, 255, 0.03);
    --accent-glow: 0 0 18px rgba(0, 246, 255, 0.12), 0 0 40px rgba(0, 191, 255, 0.06);
    --transition: 200ms cubic-bezier(.2, .9, .3, 1);
}

#linktoother {
    position: fixed;
    /* keeps it fixed on the screen */
    top: 20px;
    /* distance from the top of the viewport */
    right: 20px;
    /* distance from the right edge */
    z-index: 1000;
    color: white;
}


/* Page baseline */

html,
body {
    height: 100%;
}

body {
    text-align: center;
    margin: 0;
    font-family: 'Orbitron', system-ui, -apple-system, "Segoe UI", Roboto, 'Helvetica Neue', Arial;
    background: radial-gradient(ellipse at 50% 10%, rgba(0, 191, 255, 0.03) 0%, transparent 25%), linear-gradient(180deg, rgba(0, 0, 10, 0.6), rgba(0, 0, 0, 0.9)), var(--bg-very-dark);
    color: #dffaff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}


/* Subtle moving grid background */

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px;
    animation: gridPan 60s linear infinite;
}

@keyframes gridPan {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: -400px 0, 0 -400px;
    }
}


/* Layout helpers */

.container {
    width: min(1200px, 94%);
    margin: 2.25rem auto;
}

.row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.col {
    flex: 1 1 0;
    min-width: 220px
}


/* Header / nav */

.header {
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: var(--neon-cyan);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 246, 255, 0.14), 0 0 28px rgba(0, 191, 255, 0.06);
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 1rem;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    transition: color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.nav a:hover,
.nav a:focus {
    color: var(--neon-cyan);
    box-shadow: 0 6px 30px rgba(0, 246, 255, 0.06), 0 0 20px rgba(0, 191, 255, 0.08);
    transform: translateY(-2px);
}

.nav a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 12px rgba(0, 246, 255, 0.18);
}


/* Neon Buttons */

.btn {
    display: inline-block;
    cursor: pointer;
    border: 0;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: box-shadow var(--transition), transform var(--transition), color var(--transition);
}

.btn-neon {
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.06), rgba(0, 191, 255, 0.04));
    color: var(--neon-cyan);
    box-shadow: 0 6px 30px rgba(0, 246, 255, 0.06), 0 0 18px rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 246, 255, 0.12);
}

.btn-neon:hover {
    box-shadow: 0 10px 48px rgba(0, 246, 255, 0.14), 0 0 40px rgba(0, 191, 255, 0.16);
    transform: translateY(-3px) scale(1.01);
}

.btn-outline {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
    color: var(--neon-magenta);
    box-shadow: 0 10px 30px rgba(255, 46, 230, 0.06);
}


/* Card / Panel */

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008));
    border-radius: 12px;
    padding: 1.15rem;
    box-shadow: 0 6px 40px rgba(2, 10, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
}

.card--accent {
    border-image: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta)) 1;
    box-shadow: 0 10px 50px rgba(0, 191, 255, 0.06), 0 0 36px rgba(255, 46, 230, 0.04);
}

.card h3 {
    margin: 0 0 0.5rem 0;
    color: #dffaff
}

.card p {
    color: var(--muted);
    margin: 0
}


/* Utilities */

.accent {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 246, 255, 0.12);
}

.muted {
    color: var(--muted);
}

.glow {
    text-shadow: 0 0 8px rgba(0, 246, 255, 0.12), 0 0 24px rgba(0, 191, 255, 0.06);
}


/* Form elements */

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: var(--glass);
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.03);
    outline: none;
    transition: box-shadow var(--transition), border-color var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 8px 40px rgba(0, 191, 255, 0.06);
    border-color: rgba(0, 246, 255, 0.18);
}


/* Small elements */

.kicker {
    color: var(--neon-magenta);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero {
    padding: 3.5rem 0 2rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 3.75rem);
    margin: 0 0 0.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 6px 40px rgba(0, 246, 255, 0.06), 0 0 40px rgba(0, 191, 255, 0.08);
}

.hero p {
    color: var(--muted);
    max-width: 760px;
    margin: 0.4rem auto 1.2rem
}


/* Footer */

.footer {
    padding: 2rem 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.9rem
}


/* small responsive tweaks */

@media (max-width:720px) {
    .header {
        padding: 0.9rem 0
    }
    .nav a {
        margin-left: 0.5rem;
        padding: 0.35rem 0.45rem
    }
    .container {
        margin: 1rem auto
    }
}


/* Decorative glow helper used for hero lines / separators */

.line-glow {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 246, 255, 0.16), transparent);
    box-shadow: 0 0 24px rgba(0, 246, 255, 0.06);
    margin: 1.25rem 0;
}


/* Small code block style (for terminal-like effects) */

pre,
code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, 'Roboto Mono', monospace;
    background: rgba(0, 0, 0, 0.45);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    color: var(--neon-blue);
    border: 1px solid rgba(0, 191, 255, 0.04);
}


/* Helper: apply a stronger neon outline */

.neon-outline {
    box-shadow: 0 0 28px rgba(0, 246, 255, 0.14), inset 0 0 18px rgba(255, 46, 230, 0.03);
}


/* End of Tron Legacy theme */