@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

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

:root {
    --primary-color: #00ff41;
    --secondary-color: #00d4ff;
    --cyberpunk-pink: #ff00ff;
    --cyberpunk-cyan: #00ffff;
    --cyberpunk-yellow: #ffff00;
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --glow-color: rgba(0, 255, 65, 0.5);
}

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    height: 100vh;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1;
}

/* Scanlines effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 65, 0.03) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

/* Noise texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.15;
    pointer-events: none;
    z-index: 3;
}

.logo-container {
    margin-bottom: 3rem;
    z-index: 10;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--glow-color));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--glow-color));
        opacity: 1;
    }
    50% {
        filter: drop-shadow(0 0 30px var(--glow-color));
        opacity: 0.9;
    }
}

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

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
}

/* .glitch {
    position: relative;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--glow-color),
        0 0 20px var(--glow-color),
        0 0 30px var(--glow-color);
}

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

.glitch::before {
    left: -3px;
    color: var(--secondary-color);
    text-shadow: 
        -3px 0 var(--secondary-color),
        0 0 10px var(--secondary-color);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-1 3s infinite;
}

.glitch::after {
    left: 3px;
    color: var(--primary-color);
    text-shadow: 
        3px 0 var(--primary-color),
        0 0 10px var(--primary-color);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation: glitch-2 2.5s infinite;
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
    20% {
        transform: translate(-2px, 2px);
        clip-path: polygon(0 0, 100% 0, 100% 48%, 0 48%);
    }
    40% {
        transform: translate(-2px, -2px);
        clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%);
    }
    60% {
        transform: translate(2px, 2px);
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
    80% {
        transform: translate(2px, -2px);
        clip-path: polygon(0 0, 100% 0, 100% 47%, 0 47%);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }
    20% {
        transform: translate(2px, -2px);
        clip-path: polygon(0 52%, 100% 52%, 100% 100%, 0 100%);
    }
    40% {
        transform: translate(2px, 2px);
        clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%);
    }
    60% {
        transform: translate(-2px, -2px);
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }
    80% {
        transform: translate(-2px, 2px);
        clip-path: polygon(0 53%, 100% 53%, 100% 100%, 0 100%);
    }
} */

/* ALTERNATIVE GLITCH EFFECTS - Uncomment to try different styles */

/* Option 2: Subtle RGB Shift (simpler, more minimal) */
/*
.glitch {
    position: relative;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--glow-color),
        0 0 20px var(--glow-color);
}

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

.glitch::before {
    left: -2px;
    color: var(--secondary-color);
    z-index: -1;
    animation: glitch-shift 4s infinite;
}

.glitch::after {
    left: 2px;
    color: var(--primary-color);
    z-index: -2;
    animation: glitch-shift 3.5s infinite reverse;
}

@keyframes glitch-shift {
    0%, 100% {
        transform: translate(0);
        opacity: 0.5;
    }
    25% {
        transform: translate(-1px, 1px);
        opacity: 0.7;
    }
    50% {
        transform: translate(1px, -1px);
        opacity: 0.5;
    }
    75% {
        transform: translate(-1px, -1px);
        opacity: 0.6;
    }
}
*/

/* Option 3: Scanline Glitch (more aggressive) */
/*
.glitch {
    position: relative;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--glow-color),
        0 0 20px var(--glow-color);
    animation: glitch-scan 0.3s infinite;
}

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

.glitch::before {
    left: -4px;
    color: var(--secondary-color);
    clip-path: inset(0 0 50% 0);
    animation: glitch-scan-1 0.3s infinite;
}

.glitch::after {
    left: 4px;
    color: var(--primary-color);
    clip-path: inset(50% 0 0 0);
    animation: glitch-scan-2 0.3s infinite;
}

@keyframes glitch-scan {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 0);
    }
    40% {
        transform: translate(2px, 0);
    }
    60% {
        transform: translate(0, -2px);
    }
    80% {
        transform: translate(0, 2px);
    }
}

@keyframes glitch-scan-1 {
    0%, 100% {
        transform: translate(0);
    }
    50% {
        transform: translate(2px, 0);
    }
}

@keyframes glitch-scan-2 {
    0%, 100% {
        transform: translate(0);
    }
    50% {
        transform: translate(-2px, 0);
    }
}
*/

/* Refined Glitch Effect - Random glitches every ~5 seconds */
.glitch {
    position: relative;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--glow-color),
        0 0 20px var(--glow-color),
        0 0 30px var(--glow-color);
}

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

.glitch::before {
    left: -2px;
    color: var(--secondary-color);
    text-shadow: 
        -2px 0 var(--secondary-color),
        0 0 10px var(--secondary-color),
        0 0 20px var(--secondary-color);
    animation: glitch-layer-1 5.3s infinite;
    z-index: -1;
}

.glitch::after {
    left: 2px;
    color: var(--primary-color);
    text-shadow: 
        2px 0 var(--primary-color),
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color);
    animation: glitch-layer-2 4.7s infinite;
    z-index: -2;
}

@keyframes glitch-layer-1 {
    0%, 96% {
        transform: translate(0);
        opacity: 0;
        clip-path: inset(0 0 0 0);
    }
    97% {
        transform: translate(-2px, 1px);
        opacity: 0.8;
        clip-path: inset(0 0 45% 0);
    }
    97.5% {
        transform: translate(2px, -1px);
        opacity: 0.6;
        clip-path: inset(0 0 50% 0);
    }
    98% {
        transform: translate(-1px, 2px);
        opacity: 0.7;
        clip-path: inset(0 0 48% 0);
    }
    98.5% {
        transform: translate(1px, -2px);
        opacity: 0.5;
        clip-path: inset(0 0 52% 0);
    }
    99%, 100% {
        transform: translate(0);
        opacity: 0;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes glitch-layer-2 {
    0%, 95% {
        transform: translate(0);
        opacity: 0;
        clip-path: inset(0 0 0 0);
    }
    96% {
        transform: translate(2px, -1px);
        opacity: 0.8;
        clip-path: inset(50% 0 0 0);
    }
    96.5% {
        transform: translate(-2px, 1px);
        opacity: 0.6;
        clip-path: inset(48% 0 0 0);
    }
    97% {
        transform: translate(1px, 2px);
        opacity: 0.7;
        clip-path: inset(52% 0 0 0);
    }
    97.5% {
        transform: translate(-1px, -2px);
        opacity: 0.5;
        clip-path: inset(50% 0 0 0);
    }
    98%, 100% {
        transform: translate(0);
        opacity: 0;
        clip-path: inset(0 0 0 0);
    }
}


.message {
    font-size: 1rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: rgba(224, 224, 224, 0.8);
}

.contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.contact p {
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.6);
    margin-bottom: 0.5rem;
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.email-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--glow-color);
    transform: translateY(-2px);
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.email-link:hover::after {
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .message {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .container {
        padding: 1rem;
    }
}

