     /* ==== Global Styles ==== */
        body, html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: #2d2d2d;
            color: #ffc266;
            height: 100%;
        }

        a {
            color: #ffc266;
            text-decoration: none;
        }

        a:hover {
            color: #ffda85;
            text-decoration: underline;
        }

        .app-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            padding-top: 15px;
        }

        header {
            width: 100%;
            height: 0;
        }

        main {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 10px;
        }

        /* ==== Logo Section ==== */
        .logo-container {
            text-align: center;
            margin-bottom: 20px;
        }

        .logo-title {
            font-family: 'Pacifico', cursive;
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #ffc266;
        }

        .logo-container img {
            max-width: 150px;
            height: auto;
        }

        /* ==== Music Table ==== */
        .music-table {
            width: 50%;
            min-width: 300px;
            border-collapse: collapse;
            margin-bottom: 20px;
            background-color: #373737;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0,0,0,0.4);
        }

        .music-table th, .music-table td {
            text-align: left;
            padding: 12px 15px;
            border-bottom: 1px solid #555;
            color: #ffc266;
        }

        .music-table tbody tr:last-child td {
    border-bottom: none;
}

        .music-table th {
            background-color: #464646;
        }

        .music-table tr:hover {
            background-color: #4d4d4d;
        }

        .music-table a {
            font-weight: bold;
        }

        /* ==== About Section ==== */
        .about-section {
            width: 50%;
            min-width: 300px;
            text-align: center;
            margin-bottom: 30px;
        }

        .about-section p.description {
            font-size: 16px;
            line-height: 1.5;
            color: #ffc266;
        }

        .about-section .credits p {
            margin: 5px 0;
            color: #e9cc95;
        }

        /* ==== Footer ==== */
        footer {
            width: 100%;
            text-align: center;
            padding: 15px 10px;
            background-color: #373737;
            color: #ffc266;
            font-size: 14px;
        }

        .footer-container {
            width: 50%;
            min-width: 300px;
            margin: 0 auto;
            text-align: center;
        }

        /* ==== Responsive ==== */
        @media (max-width: 800px) {
            .music-table,
            .about-section,
            .footer-container {
                width: 90%;
            }

            .logo-title {
                font-size: 28px;
            }
        }

        @media (max-width: 500px) {
            .logo-title {
                font-size: 24px;
            }

            .music-table th, .music-table td {
                padding: 10px 8px;
            }
        }
