        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html, body {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 100px 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: #222;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background: #4a4a4a;
            color: #fff;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
            margin-top: 15px;
            transition: background 0.3s ease;
        }
        
        .btn:hover {
            background: #2c2c2c;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            padding: 15px 0;
            transition: background 0.3s ease;
        }
        
        header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #f0c040;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after, 
        .nav-links a.active:after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: #f0c040;
        }
        
        .menu-toggle {
            display: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Home Section */
        #home {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 0;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 90%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
        }
        
        .home-content {
            z-index: 1;
            max-width: 800px;
            padding: 20px;
        }
        
        .home-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #fff;
            animation: fadeInUp 1s ease;
        }
        
        .home-content p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }
        
        .home-content .btn {
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* About Section */
        #about {
            background: #fff;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-text {
            flex: 2;
            min-width: 300px;
        }
        
        /* Music Section */
        #music {
            background: #f5f5f5;
        }
        
        .albums {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .album {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .album:hover {
            transform: translateY(-5px);
        }
        
        .album img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .album-info {
            padding: 20px;
        }
        
        /* Video Section */
        #videos {
            background: #fff;
        }
        
        .video-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .video-item {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-item iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }
        
        /* Events Section */
        #events {
            background: #f5f5f5;
        }
        
        .events-calendar {
            margin-top: 40px;
        }
        
        .event {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }
        
        .event-date {
            background: #4a4a4a;
            color: #fff;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            min-width: 80px;
        }
        
        .event-date .day {
            font-size: 24px;
            font-weight: bold;
        }
        
        .event-info {
            flex: 1;
            min-width: 250px;
        }
        
        /* Setlist Section */
        #setlist {
            background: #fff;
        }
        
        .setlist-container {
            margin-top: 40px;
        }
        
        .setlist-item {
            background: #f9f9f9;
            border-left: 4px solid #4a4a4a;
            padding: 15px 20px;
            margin-bottom: 15px;
            border-radius: 0 4px 4px 0;
            transition: transform 0.3s ease;
        }
        
        .setlist-item:hover {
            transform: translateX(5px);
        }
        
        /* Testimonials Section */
        #testimonials {
            background: #f5f5f5;
        }
        
        .testimonials-container {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .testimonial:hover {
            transform: translateY(-5px);
        }
        
        .testimonial:before {
            content: "";
            font-size: 60px;
            color: #f0c040;
            position: absolute;
            top: -15px;
            left: 10px;
            opacity: 0.2;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .testimonial-author {
            font-weight: bold;
            text-align: right;
        }
        
        /* Contact Section */
        #contact {
            background: #fff;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }
        
        .contact-info, .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: #4a4a4a;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus, 
        .form-group textarea:focus {
            border-color: #4a4a4a;
            outline: none;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: #222;
            color: #fff;
            padding: 60px 0 30px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 30px;
        }
        
        .social-links li {
            margin: 0 15px;
        }
        
        .social-links a {
            color: #fff;
            font-size: 24px;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        
        .social-links a:hover {
            color: #f0c040;
            transform: translateY(-5px);
        }
        
        .copyright {
            margin-top: 30px;
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #4a4a4a;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #2c2c2c;
        }
        
        /* Loading Animation */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid #333;
            border-top: 5px solid #f0c040;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: #222;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .home-content h1 {
                font-size: 36px;
            }
            
            .home-content p {
                font-size: 18px;
            }
            
            .event {
                flex-direction: column;
                text-align: center;
            }
            
            .event-date {
                margin-bottom: 15px;
            }
            
            section {
                padding: 80px 0;
            }
        }
