/* Using Inter font, which is part of Tailwind's default config */
body {
    font-family: 'Inter', sans-serif;
    /* Dark, gritty, cyberpunk background */
    background-color: #0c0a14;
    /* Subtle SVG grid background to feel like the Matrix */
    background-image: linear-gradient(rgba(236, 72, 153, 0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(56, 189, 248, 0.07) 1px, transparent 1px);
    background-size: 2rem 2rem;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Neon glow effects */
.neon-text-pink {
    text-shadow: 0 0 5px rgba(236, 72, 153, 0.7),
                0 0 10px rgba(236, 72, 153, 0.7),
                0 0 20px rgba(236, 72, 153, 0.7),
                0 0 40px rgba(236, 72, 153, 0.5);
}

.neon-text-cyan {
    text-shadow: 0 0 5px rgba(56, 189, 248, 0.7),
                0 0 10px rgba(56, 189, 248, 0.7),
                0 0 20px rgba(56, 189, 248, 0.7),
                0 0 40px rgba(56, 189, 248, 0.5);
}

.neon-border-pink {
    border-color: #ec4899;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5),
                0 0 20px rgba(236, 72, 153, 0.3);
}

.neon-border-cyan {
    border-color: #06b6d4;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5),
                0 0 20px rgba(6, 182, 212, 0.3);
}

/* Glassmorphism "data-slate" container */
.data-slate {
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 0.75rem; /* 12px */
}

/* Glitch effect for the main hero text */
.glitch {
    position: relative;
    font-size: 6vw; /* Responsive font size */
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    animation: glitch-animation 5s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0c0a14;
    overflow: hidden;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ec4899;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-before 1.5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #06b6d4, 2px 2px #ec4899;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation: glitch-after 2s infinite linear alternate-reverse;
}

@keyframes glitch-before {
    0% { clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%); }
    10% { clip-path: polygon(0 20%, 100% 20%, 100% 22%, 0 22%); }
    20% { clip-path: polygon(0 90%, 100% 90%, 100% 95%, 0 95%); }
    /* ... more steps ... */
    100% { clip-path: polygon(0 40%, 100% 40%, 100% 42%, 0 42%); }
}

@keyframes glitch-after {
    0% { clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%); }
    15% { clip-path: polygon(0 80%, 100% 80%, 100% 82%, 0 82%); }
    25% { clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%); }
    /* ... more steps ... */
    100% { clip-path: polygon(0 60%, 100% 60%, 100% 62%, 0 62%); }
}

@keyframes glitch-animation {
    0% { transform: translate(0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(1px, -1px); }
    /* ... more steps ... */
    100% { transform: translate(1px, 0); }
}

/* Responsive hero font size */
@media (min-width: 1280px) {
    .glitch {
        font-size: 6rem; /* Cap size on large screens */
    }
}