:root {
    --primary-color: #00ff88;
    --secondary-color: #00ccff;
    --accent-color: #ff00ff;
    --bg-dark: #0a0a0a;
    --bg-medium: #1a1a1a;
    --text-light: #ffffff;
    --text-dim: #888888;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

#particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 800px;
}

.logo-container {
    margin-bottom: 50px;
    position: relative;
}

.circuit-board {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 150px;
    z-index: -1;
}

.trace {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 2px;
    animation: trace-glow 3s ease-in-out infinite;
}

.trace-1 {
    width: 100px;
    top: 30%;
    left: 20%;
    transform: rotate(-15deg);
}

.trace-2 {
    width: 120px;
    top: 50%;
    right: 15%;
    transform: rotate(25deg);
}

.trace-3 {
    width: 80px;
    bottom: 25%;
    left: 35%;
    transform: rotate(10deg);
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: node-pulse 2s ease-in-out infinite;
}

.node-1 { top: 20%; left: 25%; }
.node-2 { top: 60%; right: 20%; }
.node-3 { bottom: 30%; left: 50%; }

@keyframes trace-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
}

.company-name {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.asylum {
    display: block;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.electronics {
    display: block;
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.7em;
    letter-spacing: 0.3em;
    margin-top: -0.2em;
}

.llc {
    font-weight: 400;
    font-size: 0.3em;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    vertical-align: super;
}

@keyframes glow {
    from { filter: brightness(1) drop-shadow(0 0 20px rgba(0, 255, 136, 0.5)); }
    to { filter: brightness(1.2) drop-shadow(0 0 30px rgba(0, 255, 136, 0.8)); }
}

.status-container {
    margin: 40px auto;
    max-width: 400px;
}

.status-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.status-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    animation: loading 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 80%; }
    100% { width: 100%; }
}

.status-text {
    margin-top: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.message {
    margin: 50px 0;
}

.coming-soon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text-light);
}

.sub-message {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 10px;
}

.check-back {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.pulse-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 40px auto 0;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.pulse-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .circuit-board {
        width: 250px;
        height: 125px;
    }
    
    .message {
        padding: 0 20px;
    }
}