@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Roboto+Mono:wght@300;400;500;600;700&display=swap');

/* Glitch Background Effect */
.glitch-bg {
    position: relative;
    overflow-x: hidden;
}

.glitch-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(0, 176, 255, 0.02) 0%, rgba(255, 0, 119, 0.02) 100%),
        url('http://static.photos/abstract/1200x630/42') center/cover no-repeat;
    z-index: -2;
}

.glitch-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

/* Particle Container for Hero Section */
.particle-container {
    background: transparent;
    position: relative;
}

/* Glitch Text Animation */
.glitch-text {
    position: relative;
}

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

.glitch-text::before {
    color: #00b0ff;
    z-index: -1;
    animation: glitch 3s infinite;
}

.glitch-text::after {
    color: #ff0077;
    z-index: -2;
    animation: glitch 2s infinite reverse;
}

/* Custom Animations */
@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes quantum-flicker {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .glitch-text h1 {
        font-size: 3rem !important;
    }
    
    .countdown {
        font-size: 2.5rem !important;
    }
}

/* Hide feather icons until loaded */
[data-feather] {
    display: none;
}