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

:root {
    --bg-primary: #000000;
    --text-gold: #ffaa00;
    --text-orange: #ff6600;
    --text-red: #cc3300;
}

body {
    font-family: 'Arial Black', 'Impact', 'Helvetica', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    position: relative;
    height: 100vh;
    width: 100vw;
    perspective: 3000px;
}

/* TV Scan Lines Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 100;
    opacity: 0.3;
}

/* Aurora Borealis Background */
.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Starfield - Slow cruising stars */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    transform-style: preserve-3d;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Main Text Container */
.main-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    perspective: 3000px;
}

.text-container {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    animation: zoomIn 3s ease-out forwards;
}

.techfocus-text {
    font-size: clamp(1.67rem, 6vw, 4.67rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Impact', 'Helvetica', sans-serif;
    
    /* Gold/Orange gradient */
    background: linear-gradient(
        135deg,
        #ffd700 0%,
        #ffaa00 25%,
        #ff8800 50%,
        #ff6600 75%,
        #cc4400 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Strong glow effect */
    text-shadow: 
        0 0 20px rgba(255, 170, 0, 0.8),
        0 0 40px rgba(255, 136, 0, 0.6),
        0 0 60px rgba(255, 102, 0, 0.4);
    filter: drop-shadow(0 0 30px rgba(255, 170, 0, 0.6));
    
    transform-style: preserve-3d;
    will-change: transform;
    animation: holdAndPulse 2s ease-in-out 3s infinite;
}

/* 70s TV Zoom-In Animation */
@keyframes zoomIn {
    0% {
        transform: translateZ(-2000px) scale(0.1);
        opacity: 0;
    }
    60% {
        transform: translateZ(0px) scale(1.05);
        opacity: 1;
    }
    80% {
        transform: translateZ(0px) scale(0.98);
    }
    100% {
        transform: translateZ(0px) scale(1);
        opacity: 1;
    }
}

/* Subtle pulse after zoom */
@keyframes holdAndPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 170, 0, 0.6));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 40px rgba(255, 170, 0, 0.8));
    }
}

/* Trailing copies effect - created via JavaScript */
.text-trail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        #ffd700 0%,
        #ffaa00 25%,
        #ff8800 50%,
        #ff6600 75%,
        #cc4400 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform-style: preserve-3d;
}

/* Selection */
::selection {
    background: var(--text-gold);
    color: var(--bg-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .techfocus-text {
        font-size: clamp(1rem, 6.67vw, 3.33rem);
        letter-spacing: 0.05em;
    }
}
