        body {
            background-color: #121212;
            color: #f1f1f1;
            padding-top: 130px;
        }
        a {
            color: #00bfff;
            text-decoration: none;
        }
        a:hover {
            color: #00ffff;
            text-decoration: none;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: #1e1e1e;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.6);
        }
        .top-bar {
            text-align: center;
            padding: 10px;
            font-size: 24px;
            font-weight: bold;
            color: #fff;
        }
        .nav-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            background: #2a2a2a;
            padding: 8px 0;
        }
        .nav-bar a {
            padding: 8px 14px;
            color: #ccc;
            font-size: 14px;
            margin: 4px;
            border-radius: 20px;
            background-color: rgba(0,0,0,0.2);
        }
        .nav-bar a:hover {
            background-color: #444;
            color: #fff;
        }

        .mobile-menu-button {
            display: none;
            position: absolute;
            left: 15px;
            top: 15px;
            background: none;
            border: none;
            font-size: 26px;
            color: #fff;
            z-index: 1101;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: -260px;
            width: 250px;
            height: 100%;
            background: #1c1c1c;
            box-shadow: 2px 0 10px rgba(0,0,0,0.5);
            padding-top: 60px;
            transition: left 0.3s ease;
            z-index: 1100;
        }
        .mobile-menu a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid #333;
            color: #ccc;
        }
        .mobile-menu.open {
            left: 0;
        }

        @media (max-width: 768px) {
            .nav-bar {
                padding: 0px;
            }
            .nav-bar a {
                font-size: 12px;
                background: none;
                padding: 2px;
            }
            .mobile-menu-button {
                display: block;
            }
            body {
                padding-top: 70px;
            }
            .logo-text text {
                font-size: 26px;
            }
            .top-bar {
                padding: 2px;
            }

        }

        .album-thumb {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.7);
            transition: 0.3s;
        }
        .album-thumb:hover {
            transform: scale(1.03);
        }
        .album-title {
            text-align: center;
            font-size: 14px;
            margin-top: 5px;
            font-weight: bold;
            color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
            
        }
        .album-categories {
            text-align: center;
            margin-top: 6px;
        }
        .album-categories a {
            display: inline-block;
            font-size: 11px;
            margin: 2px 3px;
            padding: 2px 8px;
            background: #333;
            color: #ccc;
            border-radius: 12px;
        }
        .album-categories a:hover {
            background: #555;
            color: #fff;
        }

        .recommended-title {
            font-size: 24px;
            margin-top: 40px;
            margin-bottom: 20px;
            text-align: center;
        }
        .recommended-box {
            border: 1px solid #444;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            background: #1e1e1e;
        }
        footer {
            text-align: center;
            padding: 20px;
            font-size: 14px;
            color: #999;
            background: #1a1a1a;
            margin-top: 40px;
        }
.pagination .page-item .page-link {
    background-color: #1e1e1e;
    color: #ddd;
    border: 1px solid #444;
}
.pagination .page-item.active .page-link {
    background-color: #00bfff;
    color: #000;
    border-color: #00bfff;
}
.pagination .page-item .page-link:hover {
    background-color: #333;
    color: #fff;
}    

