:root {
    --bg-dark: #0a0a0f;
    --bg-medium: #0f1420;
    --bg-light: #1a1f2e;
    --bg-blue-dark: #0d1b2a;
    --bg-blue-medium: #1b263b;
    --text-primary: #f5f5f5;
    --text-secondary: #b8b8b8;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d878;
    --accent-gold-dark: #b8951f;
    --accent-blue: #415a77;
    --accent-blue-light: #778da9;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'VT323', monospace;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.1rem;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(65, 90, 119, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Ambella', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
    line-height: 1.2;
    padding-bottom: 0.2rem;
}

.logo:hover {
    color: var(--accent-gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-gold);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-blue-dark) 0%, var(--bg-dark) 30%, var(--bg-blue-medium) 70%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(65, 90, 119, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(27, 38, 59, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: 'Ambella', sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0.1em;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 30%, var(--accent-blue-light) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s infinite;
    padding-bottom: 0.3em;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--accent-blue-light);
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid var(--accent-gold);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-family: 'Ambella', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

/* Music Section */
.music-section {
    background: linear-gradient(180deg, var(--bg-blue-dark) 0%, var(--bg-medium) 100%);
}

.featured-release {
    max-width: 500px;
    margin: 0 auto 4rem;
    text-align: center;
}

.featured-title {
    font-family: 'VT323', monospace;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--accent-gold-light);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.album-link {
    display: inline-block;
    transition: var(--transition);
}

.album-artwork {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 2px solid rgba(65, 90, 119, 0.3);
    transition: var(--transition);
    display: block;
}

.album-link:hover .album-artwork {
    border-color: var(--accent-gold);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.music-card {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(65, 90, 119, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.music-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 90, 119, 0.2), transparent);
    transition: left 0.6s;
}

.music-card:hover::before {
    left: 100%;
}

.music-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(65, 90, 119, 0.4);
}

.music-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.music-card:hover .music-card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.music-card-icon svg {
    width: 100%;
    height: 100%;
}

.music-card-content h3 {
    font-family: 'Ambella', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.music-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Videos Section */
.videos-section {
    background: var(--bg-dark);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: rgba(13, 27, 42, 0.3);
    border: 1px solid rgba(65, 90, 119, 0.3);
    margin-bottom: 1.5rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-link-fallback {
    text-align: center;
    padding: 1rem;
}

.video-link-fallback p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.youtube-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-gold);
    display: inline-block;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.youtube-link:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-blue-medium) 100%);
}

.gallery-slideshow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(13, 27, 42, 0.3);
    border: 1px solid rgba(65, 90, 119, 0.3);
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 1rem;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(65, 90, 119, 0.2);
}

.gallery-nav {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-nav:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.gallery-nav svg {
    width: 30px;
    height: 30px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(65, 90, 119, 0.4);
    border: 1px solid rgba(65, 90, 119, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.3);
}

.gallery-dot:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.lightbox-close:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-nav svg {
    width: 30px;
    height: 30px;
}

.placeholder-content {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.placeholder-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--accent-blue-light);
    opacity: 0.4;
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.placeholder-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Show Dates Section */
.shows-section {
    background: linear-gradient(180deg, var(--bg-blue-medium) 0%, var(--bg-blue-dark) 100%);
}

.shows-list {
    max-width: 750px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(65, 90, 119, 0.3);
    background: rgba(13, 27, 42, 0.4);
    transition: var(--transition);
}

.show-item:hover {
    border-color: var(--accent-gold);
    background: rgba(13, 27, 42, 0.6);
}

.show-venue {
    font-family: 'Ambella', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.show-info {
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    color: var(--accent-blue-light);
    letter-spacing: 1px;
}

.tickets-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Connect Section */
.connect-section {
    background: linear-gradient(180deg, var(--bg-blue-medium) 0%, var(--bg-blue-dark) 100%);
}

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

.connect-text {
    margin-bottom: 3rem;
}

.connect-text p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(65, 90, 119, 0.4);
    transition: var(--transition);
}

.contact-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(65, 90, 119, 0.1);
}

.contact-link svg {
    width: 24px;
    height: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(65, 90, 119, 0.4);
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
}

.social-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(65, 90, 119, 0.1);
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Question Section */
.question-section {
    background: linear-gradient(180deg, var(--bg-blue-dark) 0%, var(--bg-dark) 50%, var(--bg-blue-medium) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.lyrics-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.talk-button {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'VT323', monospace;
    margin-bottom: 3rem;
}

.talk-button:hover {
    background: transparent;
    color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.talk-button:active {
    transform: scale(0.98);
}

.lyrics-display {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(13, 27, 42, 0.4);
    border: 1px solid rgba(65, 90, 119, 0.3);
    width: 100%;
}

.lyric-text {
    font-family: 'VT323', monospace;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.6;
    color: var(--accent-gold-light);
    text-align: left;
    border-right: 3px solid var(--accent-gold);
    animation: blinkCursor 0.75s step-end infinite;
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(65, 90, 119, 0.2);
}

.footer p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLyric {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(65, 90, 119, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .section {
        padding: 5rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-release {
        margin-bottom: 3rem;
    }
    
    .album-artwork {
        max-width: 300px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .contact-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .gallery-slideshow {
        gap: 1rem;
    }
    
    .gallery-container {
        height: 400px;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
    }
    
    .gallery-nav svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
        letter-spacing: 2px;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .music-card {
        padding: 2rem 1.5rem;
    }
    
    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .gallery-slideshow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .gallery-container {
        height: 300px;
    }
    
    .gallery-nav {
        position: absolute;
        z-index: 10;
        width: 45px;
        height: 45px;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }
    
    .gallery-nav.next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-nav svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }
}
