 
        /* Reset some default styles */
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: Arial, sans-serif;
        }

        /* Header styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #00a770;
            color: white;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between; /* Ensures space between logo and nav */
            z-index: 1000;
            border-bottom: 3px solid #fee303; /* Added bottom border */
        }

        header .logo {
            margin-right: 20px;
        }

        header .logo img {
            height: 40px; /* Adjust the height as needed */
        }

        header h1 {
            margin: 0;
            font-size: 24px;
        }

        /* Navigation styles */
        nav ul {
            list-style: none;
            margin: 0 30px;
            padding: 0;
            display: flex;
            gap: 20px; /* Adds space between nav items */
        }

        nav ul li {
            margin: 0; /* Remove default margin */
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #fee303;
        }

        nav ul li a.active {
            color: #fee303;
            font-weight: bold;
        }

        /* Main content styles */
        main {
            padding: 80px 20px 60px; /* Adjust padding to account for header and footer */
            overflow-y: auto;
            height: calc(100vh - 140px); /* Adjust height to fit between header and footer */
        }

        /* Section styles */
        section {
            display: none;
            margin-bottom: 20px;
        }

        section.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Home section styles */
        #home {
            padding: 0; /* Remove padding for full-width hero image */
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .hero-image.desktop {
            display: none; /* Hide desktop image by default */
        }

        .hero-image.mobile {
            display: block; /* Show mobile image by default */
        }

        @media (min-width: 769px) {
            .hero-image.desktop {
                display: block; /* Show desktop image on larger screens */
            }
            .hero-image.mobile {
                display: none; /* Hide mobile image on larger screens */
            }
        }

        /* Merch section styles */
        .merch-items {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .merch-item {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 15px;
            text-align: center;
            width: calc(33.333% - 40px); /* Three items per row */
            box-sizing: border-box;
        }

        .merch-item img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }

        .merch-item h3 {
            margin: 10px 0 5px;
            font-size: 18px;
        }

        .merch-item p {
            margin: 0;
            font-size: 14px;
            color: #555;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .merch-item {
                width: calc(50% - 20px); /* Two items per row on tablets */
            }
        }

        @media (max-width: 480px) {
            .merch-item {
                width: 100%; /* One item per row on mobile */
            }
        }

        /* Footer styles */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #00a770;
            color: #fee303;
            text-align: center;
            padding: 10px 0;
            z-index: 1000;
            border-top: 3px solid #fee303; /* Added top border */
        }

        footer img {
            display: block;
            margin: 0 auto;
            height: 40px; /* Adjust the height as needed */
        }
   
   
   
    
        /* Hide the default audio controls */
        audio {
            display: none;
        }

        /* Style for custom buttons */
        .controls {
            margin-top: 20px;
        }

        .controls button {
            color:#fee303;
             background-color: #00a770;
              border: 3px solid #fee303; 
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
        }

        /* Style for the "Now Playing" text */
        #nowPlaying {
            margin-top: 20px;
            font-size: 18px;
            font-weight: bold;
        }
   
   
    
   .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    color:#fee303;
    background-color: #00a770;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
}

.crew-name {
    cursor: pointer; /* Indicate that the name is clickable */
}
     