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

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-purple: #4a148c;
    --accent-red: #7f0000;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --smoke-white: rgba(255, 255, 255, 0.05);
    --shadow-dark: rgba(0, 0, 0, 0.8);
}

body {
    font-family: 'Crimson Text', serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.smoke-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at top left, rgba(74, 20, 140, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(127, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: smokeMove 20s ease-in-out infinite;
}

@keyframes smokeMove {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.8));
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 20, 140, 0.3);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-purple);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(74, 20, 140, 0.8),
        0 0 40px rgba(74, 20, 140, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 
        0 0 20px rgba(74, 20, 140, 0.8),
        0 0 40px rgba(74, 20, 140, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    to { text-shadow: 
        0 0 30px rgba(127, 0, 0, 0.8),
        0 0 60px rgba(127, 0, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 3px;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    color: var(--text-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-red), transparent);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Members Section */
.members-section {
    background: var(--primary-black);
}

.band-photo {
    text-align: center;
    margin-bottom: 4rem;
}

.band-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    filter: brightness(0.8) contrast(1.1);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.member-card {
    background: var(--secondary-black);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 20, 140, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 20, 140, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(74, 20, 140, 0.3);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.8);
    transition: all 0.5s ease;
}

.member-card:hover .member-image img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--shadow-dark), transparent);
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.member-role {
    font-family: 'Cinzel', serif;
    color: var(--text-light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.member-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: justify;
}

/* Playing Now Section */
.playing-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 5rem 0;
}

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

.song-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.song-item {
    background: var(--secondary-black);
    border: 1px solid rgba(74, 20, 140, 0.2);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: border-color 0.3s ease;
}

.song-item:hover {
    border-color: rgba(74, 20, 140, 0.9);
    box-shadow: 0 0 15px rgba(74, 20, 140, 0.5);
}

.song-sigil {
    font-size: 3rem;
    color: var(--accent-purple);
    opacity: 0.6;
    min-width: 60px;
    display: inline-block;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(74, 20, 140, 0.3));
    transition: all 0.3s ease;
}

.song-item:hover .song-sigil {
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(74, 20, 140, 0.6));
    transform: rotate(15deg);
}

.song-info {
    flex: 1;
}

.song-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.audio-player {
    width: 100%;
    margin-top: 1rem;
    height: 40px;
    filter: invert(0.9) hue-rotate(270deg) brightness(0.9);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.audio-player:hover {
    opacity: 1;
}

.audio-player::-webkit-media-controls-panel {
    background-color: var(--secondary-black);
}

.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-mute-button {
    filter: brightness(1.2);
}

/* Footer */
.main-footer {
    background: var(--secondary-black);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(74, 20, 140, 0.3);
}

.main-footer p {
    color: var(--text-muted);
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .song-item {
        flex-direction: column;
        text-align: center;
    }
    
    .song-sigil {
        font-size: 2.5rem;
    }
    
    .audio-player {
        height: 35px;
    }
    
    .member-image {
        height: 300px;
    }
}