

/*
#intro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    display: none;
}

h1, p {
    font-family: "Overpass Mono", monospace;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    margin: 0;
    padding: 0;
}
.menu-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #000000; 
    text-align: center;
}

.menu-bar li {
    display: inline-block;
}

.menu-bar a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white; 
    transition: background-color 0.3s; 


    font-family: "Overpass Mono", monospace;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.menu-bar a:hover {
    background-color: #555; 
}
.menu-bar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 700

.overpass-mono-<uniquifier> {
  font-family: "Overpass Mono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.mukta-extralight {
  font-family: "Mukta", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.mukta-light {
  font-family: "Mukta", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.mukta-regular {
  font-family: "Mukta", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mukta-medium {
  font-family: "Mukta", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.mukta-semibold {
  font-family: "Mukta", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.mukta-bold {
  font-family: "Mukta", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.mukta-extrabold {
  font-family: "Mukta", sans-serif;
  font-weight: 800;
  font-style: normal;
}
body {
    padding-top: 50px; 
}
*/

/* Intro Section */
#intro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    display: none; /* Hide initially */
}

h1, p {
    font-family: "Overpass Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

/* Menu Bar */
.menu-bar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensure the menu stays on top */
    background: #000000; /* Dark background for the nav */
}

.menu-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.menu-bar li {
    display: inline-block;
}

.menu-bar a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
    font-family: "Overpass Mono", monospace;
    font-weight: 500;
    font-style: normal;
}

.menu-bar a:hover {
    background-color: #555;
}

/* Fonts */
.mukta-extralight { font-family: "Mukta", sans-serif; font-weight: 200; }
.mukta-light { font-family: "Mukta", sans-serif; font-weight: 300; }
.mukta-regular { font-family: "Mukta", sans-serif; font-weight: 400; }
.mukta-medium { font-family: "Mukta", sans-serif; font-weight: 500; }
.mukta-semibold { font-family: "Mukta", sans-serif; font-weight: 600; }
.mukta-bold { font-family: "Mukta", sans-serif; font-weight: 700; }
.mukta-extrabold { font-family: "Mukta", sans-serif; font-weight: 800; }

/* General Layout */
body {
    padding-top: 50px; /* Prevent content from being hidden under nav */
    margin: 0;
    color: white;
    font-family: "Mukta", sans-serif;
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Background animation stays behind content */
}

/* --- Music Page Section --- */
.music-section {
    text-align: center;
    padding: 80px 20px 60px; /* Adjust padding to prevent overlap with nav */
    background: transparent;
    position: relative;
    z-index: 1; /* Ensure content overlays animation */
}

.music-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.top-tracks, .top-artists {
    width: 400px;
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.top-tracks h3, .top-artists h3 {
    font-family: "Overpass Mono", monospace;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f0f0f0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.2s, background-color 0.2s;
}

li:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}

.album-art, .artist-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
}

a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

a:hover {
    text-decoration: underline;
}

a div {
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .music-container {
        flex-direction: column;
        align-items: center;
    }

    .top-tracks, .top-artists {
        width: 90%;
    }

    .menu-bar a {
        padding: 8px 15px;
    }
}




