/* Welcome / Access Terminal Styles */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800&family=JetBrains+Mono:wght@500;800&display=swap');

:root {
    --silph-red: #cc0000;
    --silph-dark: #090b0d;
    --silph-cyan: #00f2ff;
    --tech-glass: rgba(255, 255, 255, 0.03);
    --pro-easing: cubic-bezier(0.16, 1, 0.3, 1);
}

.silph-terminal-container {
    background-color: var(--silph-dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    background-image:
        radial-gradient(circle at 50% 50%, #1a1c23 0%, #000 100%);
}

/* Grid & Scanlines */
.silph-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.silph-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

/* Hero Mascot */
.hero-aura-container {
    position: relative;
    display: inline-block;
}

.hero-mascot {
    max-height: 280px;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 30px rgba(255, 255, 0, 0.2));
}

.floating-hero {
    animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.tech-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(0, 242, 255, 0.2);
    border-radius: 50%;
}

.ring-1 {
    animation: rotate 10s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-style: dotted;
    animation: rotate-rev 15s linear infinite;
}

.ring-3 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-style: solid;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-rev {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Terminal UI */
.terminal-header-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #000;
    border-bottom: 4px solid var(--silph-cyan);
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.terminal-title {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 4px;
}

.text-cyan {
    color: var(--silph-cyan);
}

.neon-text {
    text-shadow: 0 0 10px var(--silph-cyan);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
}

.hero-lead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Command Modules */
.command-module {
    background: rgba(40, 44, 52, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--accent);
    border-radius: 8px;
    transition: all 0.4s var(--pro-easing);
    position: relative;
}

.command-module:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(50, 54, 62, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent);
}

.module-header {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    opacity: 0.8;
}

.module-id {
    color: #fff;
}

.module-icon-hub {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    box-shadow: inset 0 0 15px var(--accent);
    color: var(--accent);
}

.terminal-footer-stats {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.05) !important;
}

@media (max-width: 768px) {
    .terminal-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .hero-mascot {
        max-height: 180px;
    }

    .tech-rings {
        width: 250px;
        height: 250px;
    }
}