/* General Body and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #f00; /* Neon Red */
}

h1, h2, h3 {
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('your-glitchy-image.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.title {
    font-size: 4rem;
    color: #f00;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    animation: glitch 1.5s infinite alternate;
}

.subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 20px;
    animation: glitch 1.5s infinite alternate;
}

.btn {
    background-color: #f00;
    color: #000;
    padding: 10px 30px;
    border: 2px solid #f00;
    margin-top: 30px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #000;
    color: #f00;
}

/* About Section */
.about {
    padding: 60px 20px;
    text-align: center;
    background-color: #333;
}

.about h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 5px #f00;
}

.about p {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #bbb;
    line-height: 1.8;
}

/* Music Section */
.music {
    padding: 60px 20px;
    background-color: #222;
}

.music h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 5px #f00;
}

.music .player {
    margin-top: 40px;
    background: #444;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.music .track {
    margin-bottom: 20px;
}

.player-controls {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: #f00;
    text-transform: uppercase;
}

/* Social Section */
.social {
    padding: 40px 20px;
    background-color: #111;
}

.social h2 {
    font-size: 2rem;
    text-align: center;
    color: #f00;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: #f00;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

/* Footer */
.footer {
    padding: 20px 0;
    background-color: #000;
    text-align: center;
    color: #666;
}

.footer p {
    font-size: 1rem;
    color: #bbb;
}

/* Glitch Animation */
@keyframes glitch {
    0% {
        text-shadow: 1px 0 red, 0 1px green, -1px 0 blue, 0 -1px yellow;
    }
    25% {
        text-shadow: 0 1px red, -1px 0 green, 0 -1px blue, 1px 0 yellow;
    }
    50% {
        text-shadow: 1px 1px red, -1px -1px green, 1px -1px blue, -1px 1px yellow;
    }
    75% {
        text-shadow: -1px 1px red, 1px -1px green, -1px 1px blue, 1px -1px yellow;
    }
    100% {
        text-shadow: 1px 1px red, -1px -1px green, 1px -1px blue, -1px 1px yellow;
    }
}
