:root {
    --primary-color: #e60000;
    --dark-bg: #111;
    --light-text: #f4f4f4;
    --font-heading: 'Permanent Marker', cursive;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0px #000, -1px -1px 0px #fff;
    transform: rotate(-2deg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(17, 17, 17, 0.95);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-size: 2rem;
    color: var(--light-text);
    text-shadow: 2px 2px var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>') center/cover;
    background-blend-mode: multiply;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.glitch {
    font-size: 6rem;
    font-weight: bold;
    position: relative;
    color: white;
    text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.025em -0.05em 0 rgba(0,255,0,0.75), 0.025em 0.05em 0 rgba(0,0,255,0.75);
    animation: glitch 500ms infinite;
    margin-bottom: 1rem;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
    14% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
    15% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
    49% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
    50% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
    99% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
    100% { text-shadow: -0.025em 0 0 rgba(255,0,0,0.75), -0.025em -0.025em 0 rgba(0,255,0,0.75), -0.025em -0.05em 0 rgba(0,0,255,0.75); }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-container {
    background-color: rgba(230, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    transform: rotate(1deg);
}

.bio-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #eee;
}

.fa-quote-left, .fa-quote-right {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.fa-quote-left {
    margin-bottom: 10px;
}
.fa-quote-right {
    margin-top: 10px;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--light-text);
    border: 3px solid var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s ease;
    font-family: var(--font-heading);
    box-shadow: 4px 4px 0px var(--primary-color);
}

.cta-btn:hover {
    background-color: var(--primary-color);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--primary-color);
}

.cta-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--primary-color);
}

/* Sections General */
.section {
    padding: 6rem 5%;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: #1a1a1a;
    border-top: 1px dashed #333;
    border-bottom: 1px dashed #333;
}

.about-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: #111;
    padding: 3rem;
    border: 2px solid #333;
    box-shadow: -5px 5px 0px var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.member-card {
    background-color: #222;
    padding: 2rem;
    text-align: center;
    border: 1px solid #444;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.member-card:hover::before {
    transform: scaleX(1);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.member-icon {
    font-size: 3rem;
    color: #555;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.member-card:hover .member-icon {
    color: var(--primary-color);
}

.member-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.role {
    color: #aaa;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Music Section */
.music-section {
    background-color: #111;
}

.soundcloud-container {
    background: #000;
    padding: 10px;
    border: 3px solid #333;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #222;
    color: var(--light-text);
    margin: 0 10px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: white;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: rgba(17, 17, 17, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    
    .nav-links li {
        margin: 2rem 0;
    }

    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }

    .glitch {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}
