:root {
            --header-image: url('https://zalno.neocities.org/images/banners/zalno_overlooking_the_city_banner.jpg');
            --body-bg-image: url('https://zalno.neocities.org/images/backgrounds/orangegrid.png');
            --content-color: #43256E;
        }

        body {
            font-family: 'Nunito', sans-serif;
            margin: 0;
            background-color: #08031A;
            background-image: var(--body-bg-image);
            background-size: 200px;
            background-repeat: repeat;
            color: #fceaff;
            cursor: url("http://www.rw-designer.com/cursor-extern.php?id=15510"), auto;
            animation: diagonalScroll 20s linear infinite; /* Animation for diagonal scrolling */
        }
        
        .box {
            background-color: #170003;
            border: 1px solid #f07f00;
            padding: 10px;
        }
        
        .box-main {
            
            background-color: #170003;
            border: 1px solid #f07f00;
            width: 950px;
            height: 100px;
            padding: 10px;
            text-align: center;
            
        }
        
        .box-player{
          
            background-color: #170003;
            border: 1px solid #f07f00;
            width: 950px;
            height: 150px;
            padding: 10px;
            text-align: center;
          
        }
        
        #container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 950px;
            margin: 0 auto;
        }
        
        /* Dropdown menu styling */
        .dropdown {
            display: none;
            position: absolute;
            background-color: #370003;
            min-width: 100px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .dropdown a {
            display: block;
            padding: 12px 16px;
            color: #f07f00;
            text-decoration: none;
        }

        .dropdown a:hover {
            background-color: #570003;
            color: #fff;
        }
        
        #filter-container {
          margin-bottom: 20px;
          text-align: center;
        }
        
        flex-container {
          background-color: #720007;
            flex: 1;
            margin: 10;
            padding: 20px;
            order: 2;
        }

        #gallery {
          background-color: #720007;
          width: 556px; 
          margin-left: 10px;
          height: 500px;
        }
        
        .gallery-item {
          width: 100px; /* Adjust thumbnail container size */
          text-align: center;
          margin: 10px;
          background-color: #170003;
          border: 1px solid #f07f00;
          padding: 10px;
          display: inline-block;
        }

        .gallery-item img {
          width: 100px;
          height: auto;
          border: 1px solid #f07f00;
          transition: transform 0.2s ease; /* Smooth hover effect */
        }
        
        .gallery-item img:hover {
          transform: scale(1.05); /* Slight zoom on hover */
        }

        .gallery-item a {
          text-decoration: none;
        }
        
        header {
            
            background-color: #370003;
            background-image: url('https://zalno.neocities.org/images/banners/zalno_overlooking_the_city_banner.jpg');
            background-size: cover;
            height: 190px;
            width: 950px;
        }

        nav li:hover .dropdown {
            display: block;
        }

        @keyframes diagonalScroll {
          0% {
              background-position: 0 0;
          }
          100% {
                 background-position: 1000px 1000px; /* Adjust the values for speed and distance */
          }
        }

        * {
            box-sizing: border-box;
        }

        
        

        a {
            color: #FFA500;
            font-weight: bold;
        }
        
        
        
        



        nav {
            position: fixed;
            top: 0;
            width: 950px;
            color: #f07f00; /* Orange color */
            font-weight: bold;
            text-decoration: none;
            background-color: #370003;
            padding: 10px 0;

        }

        nav ul {
            display: flex;
            justify-content: space-evenly;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
        }

        nav li {
            position: relative;
        }

        nav li a {
            color: #f07f00;
            font-weight: 800;
            text-decoration: none;
        }

        nav li a:hover {
            color: #a49cba;
            text-decoration: underline;
        }
        
        #spotify-player {
          
          width: 100%;
          margin: 0;
          padding: 0;
          margin-bottom: 0; /* Adjust if the nav has extra space */
        }

        

        #flex {
            display: flex;
        }

        aside {
            background-color: #430003;
            width: 200px;
            padding: 20px;
            font-size: smaller;
            text-align: center;
        }

        main {
            background-color: #720007;
            flex: 1;
            margin: 0;
            width: 750px;
            padding: 20px;
            text-align: center;
            order: 2;
        }

        footer {
            background-color: #370003;
            padding: 10px;
            text-align: center;
            color: white;
        }

        h1, h2, h3, h4 {
            color: #f07f00;
        }

        #youtube-player {
            display: none; /* Hide the video player */
            margin: 0;
            padding: 0;
            max-width: 950px;
            margin-bottom: 0; /* Adjust if the nav has extra space */
        }
        .custom-controls {
            display: flex;
            flex-direction: column; /* Stack the buttons vertically */
            gap: 10px;
            align-items: flex-end; /* Align controls to the right */
            margin: 0;
            padding: 0;
        }
        button {
            padding: 5px 10px;
            border: 1px solid #ccc;
            background-color: #f9f9f9;
            cursor: pointer;
        }
        button:hover {
            background-color: #ddd;
        }
        

        @media (max-width: 800px) {
            #flex {
                flex-wrap: wrap;
            }

            aside {
                width: 100%;
            }

            main {
                order: 1;
            }
        }