
:root {
    --primary: #00ff00; /* Neon Green */
    --secondary: #00ffff; /* Cyan */
    --bg: #000000;
    --card-bg: rgba(10, 10, 10, 0.85);
    --text-muted: #4a5568;
}

body {
    background: var(--bg);
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
#binary-canvas { opacity: 0.2; z-index: 1; }
#web-canvas { opacity: 0.5; z-index: 2; }

.main-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 3rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.1);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: var(--primary);
    font-size: 1.5rem;
}

.site-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.company-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.status-text {
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    animation: pulse 2s infinite;
}

.status-subtext {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-block {
    display: flex;
    flex-direction: column;
}

.time-block span:first-child {
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: var(--primary);
}

.time-block .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.1em;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.contact-item {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item .icon {
    color: var(--secondary);
}

.footer-credit {
    margin-top: 3rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #444;
    letter-spacing: 0.2em;
}

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

@media (max-width: 768px) {
    .company-name { font-size: 2rem; }
    .countdown-container { gap: 1rem; }
    .time-block span:first-child { font-size: 1.5rem; }
    .card { padding: 1.5rem; }
}
