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

body {
    font-family: 'Courier New', 'Monaco', monospace;
    background-color: #000000;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #000000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: inset 0 -3px 0 #ff6b35;
    z-index: 100;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.2s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem;
    border: 2px solid transparent;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ff6b35;
    border: 2px solid #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

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

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid #ff6b35;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff6b35;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.4rem !important;
    color: #ff6b35 !important;
    font-weight: bold !important;
    text-transform: uppercase;
}

/* Shows Section */
.shows-section {
    margin-bottom: 4rem;
}

.shows-section h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 1rem;
}

.shows-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.show-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    width: 300px;
    height: 300px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.show-card:hover {
    border-color: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.show-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff6b35;
    color: #0a0a0a;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    border: 2px solid #0a0a0a;
    transform: rotate(-5deg);
}

.show-card h3 {
    font-size: 1.1rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    margin-right: 80px;
    line-height: 1.3;
}

.show-meta {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stream-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    text-decoration: none;
    color: #d0d0d0;
    border: 2px solid #333;
    border-radius: 50%;
    transition: all 0.2s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.stream-icon:hover {
    border-color: #ff6b35;
    background-color: #ff6b35;
    transform: scale(1.1);
}

.stream-icon.spotify:hover {
    border-color: #1DB954;
    background-color: #1DB954;
}

.stream-icon.apple:hover {
    border-color: #FA243C;
    background-color: #FA243C;
}

.stream-icon.youtube:hover {
    border-color: #FF0000;
    background-color: #FF0000;
}

/* About Section */
.about-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #333;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 1rem;
}

.about-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.sponsors-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #ff6b35;
}

.sponsors-section h3 {
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.sponsor {
    background-color: #000000;
    border: 2px solid #333;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsor:hover {
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

/* Merch Section */
.merch-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #333;
}

.merch-section h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 1rem;
}

.merch-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.merch-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #333;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.merch-card:hover {
    border-color: #ff6b35;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.merch-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.merch-card:hover .merch-image {
    transform: scale(1.05);
}

.merch-card h3 {
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.merch-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #333;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 1rem;
}

.contact-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.booking-email {
    font-size: 1.3rem !important;
    margin-bottom: 2rem !important;
}

.booking-email a {
    color: #ff6b35;
    text-decoration: none;
    border-bottom: 2px solid #ff6b35;
    transition: all 0.2s ease;
}

.booking-email a:hover {
    color: #ff8552;
    border-bottom: 2px solid #ff8552;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.contact-form input {
    padding: 0.75rem;
    background-color: #000000;
    border: 2px solid #333;
    color: #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input:focus {
    outline: none;
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.05);
}

.contact-form button {
    padding: 0.75rem 2rem;
    background-color: #ff6b35;
    color: #0a0a0a;
    border: 2px solid #ff6b35;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.contact-form button:hover {
    background-color: #0a0a0a;
    color: #ff6b35;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social {
    color: #ff6b35;
    text-decoration: none;
    border: 2px solid #ff6b35;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social:hover {
    background-color: #ff6b35;
    color: #0a0a0a;
}

/* Album Gallery */
.album-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.album-thumb {
    width: 100%;
    height: 200px;
    display: block;
    cursor: pointer;
    border: 2px solid #333;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
    overflow: hidden;
}

.album-thumb:hover {
    border-color: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Album Modal */
.album-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.album-modal:target {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #ff6b35;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border-radius: 4px;
}

.modal-content.modal-large {
    max-width: 900px;
    padding: 2.5rem;
}

.modal-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #333;
}

.modal-artwork-large {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 2px solid #ff6b35;
    flex-shrink: 0;
}

.modal-header-info h2 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
}

.modal-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #333;
}

.tab-button {
    background: transparent;
    border: none;
    color: #d0d0d0;
    padding: 1rem 1.5rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-button:hover {
    color: #ff6b35;
}

.tab-button.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.2rem;
}

/* Accordion Styles */
.tracklist-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    border: 1px solid #333;
    border-left: 3px solid #ff6b35;
}

.accordion-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: #d0d0d0;
    padding: 1rem;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-toggle:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.accordion-toggle::after {
    content: '▼';
    color: #ff6b35;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.accordion-toggle.active::after {
    transform: rotate(-180deg);
}

.accordion-content {
    display: none;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: #d0d0d0;
    border-top: 1px solid #333;
    line-height: 1.6;
    white-space: pre-wrap;
    font-size: 0.9rem;
}

.accordion-content.active {
    display: block;
}

.accordion-content p {
    margin: 0;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: #ff6b35;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.close-modal:hover {
    color: #ff8552;
}

.modal-content h2 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-body {
    display: flex;
    gap: 2rem;
}

.modal-artwork {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 1px solid #333;
    flex-shrink: 0;
}

.modal-info {
    flex: 1;
}

.modal-info h3 {
    color: #ff6b35;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-info p {
    color: #d0d0d0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .show-date {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 2px solid #ff6b35;
    padding: 2rem;
    text-align: center;
    color: #ff6b35;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}