@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&family=Courier+Prime&family=Space+Mono&family=VT323&display=swap');

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

body {
    background: #0a0a0a;
    color: #C0C0C0;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Glitchy Name */
.name-container {
    position: absolute;
    top: 15%;
    left: 8%;
    z-index: 10;
    transform: rotate(-2deg);
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: #FF6B35;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: glitch-skew 3s infinite;
}

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

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

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

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 80px, 0); }
    10% { clip: rect(90px, 9999px, 30px, 0); }
    20% { clip: rect(50px, 9999px, 100px, 0); }
    30% { clip: rect(20px, 9999px, 60px, 0); }
    40% { clip: rect(70px, 9999px, 40px, 0); }
    50% { clip: rect(30px, 9999px, 90px, 0); }
    60% { clip: rect(80px, 9999px, 20px, 0); }
    70% { clip: rect(40px, 9999px, 70px, 0); }
    80% { clip: rect(60px, 9999px, 50px, 0); }
    90% { clip: rect(100px, 9999px, 10px, 0); }
    100% { clip: rect(25px, 9999px, 85px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    10% { clip: rect(30px, 9999px, 90px, 0); }
    20% { clip: rect(100px, 9999px, 20px, 0); }
    30% { clip: rect(45px, 9999px, 75px, 0); }
    40% { clip: rect(85px, 9999px, 35px, 0); }
    50% { clip: rect(15px, 9999px, 95px, 0); }
    60% { clip: rect(70px, 9999px, 50px, 0); }
    70% { clip: rect(25px, 9999px, 105px, 0); }
    80% { clip: rect(95px, 9999px, 25px, 0); }
    90% { clip: rect(55px, 9999px, 65px, 0); }
    100% { clip: rect(10px, 9999px, 110px, 0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg, 0deg); }
    10% { transform: skew(1deg, 0deg); }
    20% { transform: skew(0deg, 0deg); }
    30% { transform: skew(-1deg, 0deg); }
    40% { transform: skew(0deg, 0deg); }
    50% { transform: skew(0.5deg, 0deg); }
    60% { transform: skew(0deg, 0deg); }
    70% { transform: skew(-0.5deg, 0deg); }
    80% { transform: skew(0deg, 0deg); }
    90% { transform: skew(1deg, 0deg); }
    100% { transform: skew(0deg, 0deg); }
}

/* Fiero */
.fiero-container {
    position: absolute;
    top: 45%;
    right: 5%;
    width: 50vw;
    max-width: 700px;
    z-index: 5;
    opacity: 0.9;
    transform: rotate(3deg);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
}

.fiero {
    width: 100%;
    height: auto;
}

.tech-label {
    font-family: 'VT323', monospace;
    font-size: 14px;
    fill: #00F5D4;
    letter-spacing: 2px;
}

/* Quote */
.quote-container {
    position: absolute;
    bottom: 12%;
    left: 10%;
    max-width: 500px;
    z-index: 8;
    transform: rotate(1deg);
}

.quote {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: #FBB13C;
    border-left: 3px solid #00F5D4;
    padding-left: 20px;
    font-style: italic;
    text-shadow: 0 0 10px rgba(251, 177, 60, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .name-container {
        top: 10%;
        left: 5%;
    }
    
    .fiero-container {
        top: 35%;
        right: -10%;
        width: 70vw;
    }
    
    .quote-container {
        bottom: 8%;
        left: 5%;
        max-width: 85%;
    }
}
