/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

p.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4ecdc4;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%), url('hero_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,1000 1000,0 1000,1000"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Radio Player Section */
.radio-player-section {
    margin-top: 40px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.radio-title {
    color: #4ecdc4;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.radio-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #4ecdc4;
    color: #0a0a0a;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
}

/* Music Section */
.music {
    background: #0a0a0a;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.music-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.music-artwork {
    position: relative;
    height: 250px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.artwork-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.music-card:hover .play-button {
    opacity: 1;
}

.music-info {
    padding: 20px;
}

.music-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.music-info p {
    opacity: 0.7;
    margin-bottom: 15px;
}

.music-links {
    display: flex;
    gap: 10px;
}

.music-link {
    color: #4ecdc4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.music-link:hover {
    color: #ff6b6b;
}

/* Events Section */
.tour {
    background: #111111;
}

.tour-list {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #1a1a1a;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tour-item:hover {
    background: #222222;
    transform: translateX(10px);
}

.tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    min-width: 80px;
}

.tour-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: #4ecdc4;
}

.tour-date .month {
    font-size: 0.9rem;
    opacity: 0.7;
}

.tour-info {
    flex: 1;
}

.tour-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tour-info p {
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 15px;
    color: #4ecdc4;
    width: 20px;
}

.contact-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #2a2a2a;
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4ecdc4;
}

/* Footer */
.footer {
    background: #111111;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo h3 {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #4ecdc4;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    opacity: 0.7;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Links */
.section-link {
    text-align: center;
    margin-top: 40px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Active Navigation Link */
.nav-link.active {
    color: #4ecdc4;
}

/* About Page Styles */
.about-page {
    padding: 80px 0;
    background: #111111;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image-large {
    display: flex;
    justify-content: center;
}

.about-image-large img {
    max-width: 400px;
    height: auto;
    max-height: 400px;
}

.about-image-large .image-placeholder {
    width: 400px;
    height: 400px;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text-full h3 {
    color: #4ecdc4;
    margin: 30px 0 15px 0;
    font-size: 1.5rem;
}

.about-text-full h3:first-child {
    margin-top: 0;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-card, .equipment-card, .influences-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
}

.stats-card h4, .equipment-card h4, .influences-card h4 {
    color: #4ecdc4;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
}

.equipment-card ul {
    list-style: none;
}

.equipment-card li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.equipment-card li:last-child {
    border-bottom: none;
}

.influence-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Timeline */
.timeline {
    margin-bottom: 80px;
}

.timeline h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #4ecdc4;
}

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

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.timeline-year {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-right: 30px;
    min-width: 80px;
    text-align: center;
}

.timeline-content h4 {
    color: #4ecdc4;
    margin-bottom: 5px;
}

/* Social Grid */
.social-section {
    text-align: center;
}

.social-section h3 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #4ecdc4;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
}

.social-card:hover {
    transform: translateY(-5px);
    background: #222222;
}

.social-card i {
    font-size: 2rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.social-card h4 {
    margin-bottom: 10px;
}

/* Music Page Styles */
.featured-release {
    background: #111111;
    padding: 80px 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-artwork {
    position: relative;
}

.artwork-placeholder.large {
    height: 400px;
    font-size: 5rem;
}

.play-button.large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.release-type {
    color: #4ecdc4;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.featured-info h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.release-date {
    opacity: 0.7;
    margin-bottom: 20px;
}

.album-description {
    line-height: 1.8;
    margin-bottom: 30px;
}

.streaming-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.streaming-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.streaming-btn.spotify {
    background: #1db954;
    color: #ffffff;
}

.streaming-btn.apple {
    background: #000000;
    color: #ffffff;
}

.streaming-btn.soundcloud {
    background: #ff5500;
    color: #ffffff;
}

.streaming-btn.youtube {
    background: #ff0000;
    color: #ffffff;
}

.streaming-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Discography */
.discography {
    background: #0a0a0a;
    padding: 80px 0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.music-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.music-card-extended {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.music-card-extended:hover {
    transform: translateY(-10px);
}

.release-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(78, 205, 196, 0.9);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.music-info-extended {
    padding: 20px;
}

.music-info-extended .artist {
    opacity: 0.7;
    margin-bottom: 5px;
}

.music-info-extended .release-date {
    opacity: 0.5;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.track-count {
    background: #333;
    color: #4ecdc4;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* Music Videos */
.music-videos {
    background: #111111;
    padding: 80px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.youtube-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .youtube-thumbnail {
    transform: scale(1.05);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.video-info {
    padding: 20px;
    color: #ffffff;
}

.video-info h4 {
    margin-bottom: 10px;
    color: #ffffff;
}

.video-info p {
    opacity: 0.7;
    font-size: 0.9rem;
    color: #ffffff;
}

/* Playlists */
.playlists {
    background: #0a0a0a;
    padding: 80px 0;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.playlist-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.playlist-card:hover {
    transform: translateY(-5px);
    background: #222222;
}

.playlist-artwork {
    margin-bottom: 20px;
}

.playlist-artwork .artwork-placeholder {
    height: 150px;
    margin: 0 auto;
}

.playlist-info h4 {
    margin-bottom: 10px;
    color: #4ecdc4;
}

.playlist-info p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.track-count {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Events Page Styles */
.current-tour {
    background: #111111;
    padding: 80px 0;
}

.tour-banner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.tour-label {
    color: #4ecdc4;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tour-banner h2 {
    font-size: 2.5rem;
    margin: 10px 0 20px 0;
}

.tour-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.tour-stats .stat {
    text-align: center;
}

.tour-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
}

.tour-stats .label {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Upcoming Shows */
.upcoming-shows {
    background: #0a0a0a;
    padding: 80px 0;
}

.tour-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tour-list-extended {
    max-width: 1000px;
    margin: 0 auto;
}

.tour-item-extended {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.tour-item-extended:hover {
    background: #222222;
    transform: translateX(10px);
}

/* Simplified Tour Items */
.tour-item-simple {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tour-item-simple:hover {
    background: #222222;
    transform: translateX(5px);
}

.tour-details-simple {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    margin-left: 30px;
}

.show-info-simple {
    display: flex;
    align-items: center;
}

.tour-date-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
    min-width: 100px;
}

.tour-date-large .day {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ecdc4;
}

.tour-date-large .month {
    font-size: 1rem;
    opacity: 0.7;
}

.tour-date-large .year {
    font-size: 0.9rem;
    opacity: 0.5;
}

.tour-details {
    flex: 1;
    margin-right: 30px;
}

.venue-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.venue-name {
    opacity: 0.7;
    margin-bottom: 10px;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    font-size: 0.9rem;
}

.show-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.show-type {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.show-type.festival {
    background: #ff6b6b;
    color: #ffffff;
}

.show-type.club {
    background: #4ecdc4;
    color: #ffffff;
}

.show-type.venue {
    background: #764ba2;
    color: #ffffff;
}

.show-time {
    opacity: 0.7;
    font-size: 0.9rem;
}

.ticket-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.ticket-status.available {
    color: #4ecdc4;
}

.ticket-status.limited {
    color: #ff9800;
}

.ticket-status.sold-out {
    color: #f44336;
}

.ticket-status.presale {
    color: #9c27b0;
}

.tour-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Past Shows */
.past-shows {
    background: #111111;
    padding: 80px 0;
}

.past-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.past-show-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.past-show-card:hover {
    transform: translateY(-5px);
}

.show-image {
    height: 200px;
}

.show-details {
    padding: 20px;
}

.show-details h4 {
    color: #4ecdc4;
    margin-bottom: 10px;
}

.show-highlights {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.highlight {
    background: #333;
    color: #4ecdc4;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Artists Section */
.artists-section {
    margin: 80px 0;
}

.artists-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #4ecdc4;
}

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

.artist-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
    background: #222222;
}

.artist-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.artist-info p {
    margin-bottom: 15px;
    opacity: 0.8;
    line-height: 1.5;
}

.artist-genre {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Storyline Section */
.storyline-section {
    background: #111111;
    padding: 80px 0;
    margin: 80px 0;
    border-radius: 20px;
}

.storyline-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #4ecdc4;
}

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

.storyline-text {
    margin-bottom: 50px;
}

.storyline-text h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.storyline-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.storyline-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-item p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* YouTube Link Styling */
.youtube-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    color: #4ecdc4;
}

.youtube-link i {
    font-size: 1.1rem;
}

/* Events Newsletter */
.tour-newsletter {
    background: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    background: #1a1a1a;
    color: #ffffff;
    min-width: 300px;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Contact Page Styles */
.contact-options {
    background: #111111;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: #222222;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #4ecdc4;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4ecdc4;
}

/* Contact Forms */
.contact-forms {
    background: #0a0a0a;
    padding: 80px 0;
}

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

.form-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.contact-form-extended {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    display: none;
}

.contact-form-extended.active {
    display: block;
}

.contact-form-extended h3 {
    margin-bottom: 30px;
    color: #4ecdc4;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4ecdc4;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #2a2a2a;
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4ecdc4;
}

/* FAQ Section */
.faq-section {
    background: #111111;
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #222222;
}

.faq-question h4 {
    color: #4ecdc4;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Social Contact */
.social-contact {
    background: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.social-contact-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.social-contact-content p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    background: #1a1a1a;
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 150px;
}

.social-link-large:hover {
    transform: translateY(-5px);
    background: #222222;
}

.social-link-large i {
    font-size: 2.5rem;
    color: #4ecdc4;
}

.social-link-large span {
    font-weight: 600;
}

.social-link-large small {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Page Header Mobile */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }

    /* About Page Mobile */
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-large .image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .about-intro h2 {
        font-size: 2rem;
    }
    
    .about-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tour-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 15px;
    }

    /* Music Page Mobile */
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .artwork-placeholder.large {
        height: 300px;
        font-size: 4rem;
    }
    
    .featured-info h2 {
        font-size: 2rem;
    }
    
    .streaming-links {
        justify-content: center;
    }
    
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .music-grid-extended {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .playlist-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Events Page Mobile */
    .tour-banner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tour-banner h2 {
        font-size: 2rem;
    }
    
    .tour-filters {
        gap: 10px;
    }
    
    .tour-item-extended {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .tour-date-large {
        margin-right: 0;
    }
    
    .tour-details {
        margin-right: 0;
    }
    
    .tour-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .past-shows-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 280px;
    }

    /* Contact Page Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .form-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .contact-form-extended {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-links-large {
        gap: 20px;
    }
    
    .social-link-large {
        min-width: 120px;
        padding: 20px 15px;
    }
    
    .social-link-large i {
        font-size: 2rem;
    }

    /* General Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tour-date {
        margin-right: 0;
    }

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

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}
