/* 
    VELOXTECH - FUTURISTIC TECH COMING SOON
    Theme: Cyber / High-Tech / Mobility
*/

:root {
    --bg-dark: #050510;
    --neon-blue: #00f3ff;
    --neon-glow: rgba(0, 243, 255, 0.4);
    --text-dim: #a0a0ff;
    --border-color: rgba(0, 243, 255, 0.2);
}

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

body {
    background: var(--bg-dark);
    font-family: 'Space Grotesk', sans-serif;
    color: var(--neon-blue);
    height: 100vh;
    overflow: hidden;
}

.tech-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Background Layers */
.grid-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform: rotateX(60deg) translateY(-200px);
    opacity: 0.3;
}

.scanlines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    z-index: 5;
    pointer-events: none;
}

/* Content Box */
.content-box {
    position: relative;
    z-index: 10;
    text-align: center;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.8);
    padding: 80px 100px;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.1);
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

header .brand {
    font-family: 'Syncopate', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 15px;
    text-shadow: 0 0 10px var(--neon-glow);
}

header .light {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 8px;
    margin-top: 10px;
    opacity: 0.7;
    color: #fff;
}

main {
    margin: 60px 0;
}

h1.glitch {
    font-size: 5rem;
    font-weight: 700;
    position: relative;
    letter-spacing: 5px;
}

h1.glitch::before, h1.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-dark);
}

h1.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

h1.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(62px, 9999px, 42px, 0); }
    40% { clip: rect(82px, 9999px, 31px, 0); }
    60% { clip: rect(10px, 9999px, 86px, 0); }
    80% { clip: rect(57px, 9999px, 63px, 0); }
    100% { clip: rect(24px, 9999px, 7px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(24px, 9999px, 7px, 0); }
    20% { clip: rect(57px, 9999px, 63px, 0); }
    40% { clip: rect(10px, 9999px, 86px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    80% { clip: rect(62px, 9999px, 42px, 0); }
    100% { clip: rect(31px, 9999px, 94px, 0); }
}

.status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    transition: opacity 0.5s ease;
}

.status-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #fff;
}

.description {
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dim);
}

footer {
    margin-top: 40px;
}

.location {
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.location i {
    margin-right: 10px;
}

.copyright {
    font-size: 0.7rem;
    opacity: 0.5;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .content-box { padding: 40px 20px; width: 95%; clip-path: none; }
    header .brand { font-size: 1.83rem; letter-spacing: 5px; }
    h1.glitch { font-size: 3rem; }
    .description { font-size: 0.9rem; }
}
