* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
		
		input, button {
			font-family: 'Roboto', sans-serif;
		}
		
		a, a:hover, a:active, a:visited {
			text-decoration: none;
			color: inherit;	
		}

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: #2c3e50;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 500;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #3498db;
        }
		
		.nowrap {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}

        /* Page Title */
        .page-title {
            background-color: #34495e;
            color: white;
            padding: 1.5rem 0;
            margin-bottom: 2rem;
        }

        .page-title h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin: 0;
        }

        /* Audio Player Full Width */
        .audio-player-section {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            margin-top: 2rem;
            overflow: hidden;
        }

        .audio-player-full {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem 2rem;
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            color: white;
        }

        .play-btn-large {
            width: 48px;
            height: 48px;
            background: #3498db;
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .play-btn-large:hover {
            background: #2980b9;
            transform: scale(1.05);
        }

        .progress-section-full {
            flex: 1;
            margin: 0 1rem;
        }

        .progress-bar-full {
            width: 100%;
            height: 8px;
            background: rgba(255,255,255,0.2);
            border-radius: 4px;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }

        .progress-full {
            height: 100%;
            background: #3498db;
            border-radius: 4px;
            width: 0%;
            transition: width 0.1s;
        }

        .time-display-full {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Main Content */
        main {
            display: grid;
            grid-template-columns: 2.4fr 1fr;
            gap: 2rem;
            margin: 2rem auto;
        }

        .song-content {
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }

        /* Song Header */
        .song-header {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            color: white;
        }

        .album-cover-large {
            width: 200px;
            height: 200px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .title {
            font-size: 1.5rem;
			font-weight: 700;
            color: #fff;
            padding: 1.4rem 2rem 1rem 2rem;
			background: linear-gradient(135deg, #3d5670 0%, #334b63 100%);
        }

        .song-meta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .meta-item {
            background-color: rgba(84, 106, 140, 0.1);
            padding: 0.6rem 0.8rem;
            border-radius: 6px;
        }

        .meta-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.3rem;
        }

        .meta-value {
            font-weight: 500;
        }

        /* Song Details */
        .song-details {
            padding: 0;
        }

        .detail-section {
            padding: 2rem;
            border-bottom: 1px solid #eee;
        }

        .detail-section:last-child {
            border-bottom: none;
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 500;
            color: #2c3e50;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .song-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .song-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 6px;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3498db;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #7f8c8d;
        }

        /* Lyrics */
        .lyrics-container {
            padding: 0rem;
        }

        .lyrics-text {
            line-height: 1.8;
            color: #555;
            font-size: 1rem;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
			width: 100%;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
			width: 100%;
			text-align: center;
        }

        .btn-primary {
            background-color: #3498db;
            color: white;
        }

        .btn-primary:hover {
            background-color: #2980b9;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background-color: #aa4c4c;
            color: white !important;
        }

        .btn-secondary:hover {
            background-color: #df6565 !important;
            transform: translateY(-1px);
        }

        /* Related Songs */
        .related-song {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-radius: 6px;
            transition: background-color 0.3s;
            cursor: pointer;
        }

        .related-song:hover {
            background-color: #f8f9fa;
        }

        .related-cover {
            width: 60px;
            height: 60px;
            background-color: #bdc3c7;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7f8c8d;
        }

        .related-info h4 {
            font-size: 1rem;
            color: #2c3e50;
            margin-bottom: 0.3rem;
        }

        .related-meta {
            font-size: 0.9rem;
            color: #7f8c8d;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .widget {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .widget-header {
            background-color: #34495e;
            color: white;
            padding: 1rem;
        }

        .widget-header h3 {
            font-size: 1.1rem;
            font-weight: 400;
        }

        .widget-content {
            padding: 1rem;
        }

        .category-list {
            list-style: none;
        }

        .category-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .category-list li:last-child {
            border-bottom: none;
        }

        .category-list a {
            color: #2c3e50;
            text-decoration: none;
        }

        .category-list a:hover {
            color: #3498db;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }

            .song-header {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1rem;
            }

            .album-cover-large {
                width: 200px;
                height: 200px;
                margin: 0 auto;
            }

            h1.title {
                font-size: 1.2rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                gap: 1rem;
            }
        }
		
		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: #2c3e50;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 500;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #3498db;
        }

        /* Main Content */
        main {
            display: grid;
            grid-template-columns: 2.4fr 1fr;
            gap: 2rem;
            margin: 2rem auto;
        }

        .content {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .content-header {
            background-color: #34495e;
            color: white;
            padding: 1rem;
        }

        .content-header h1 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Music Posts */
        .music-post {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .music-post:last-child {
            border-bottom: none;
        }

        .post-header {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .album-cover {
            width: 80px;
            height: 80px;
            background-color: #f1f1f1;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6f8da8;
            font-size: 1.8rem;
        }

        .post-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .post-meta {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .post-description {
            margin: 1rem 0;
            color: #555;
        }

        .post-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        
		
		.action {
			padding-top: 30px;	
		}
		
		.action a {
			text-align: center !important;
		}

        .btn-primary {
            background-color: #3498db;
            color: white;
        }

        .btn-primary:hover {
            background-color: #2980b9;
        }

        .btn-secondary {
            background-color: #aa4c4c;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #7f8c8d;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .widget {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .widget-header {
            background-color: #34495e;
            color: white;
            padding: 1rem;
        }

        .widget-header h3 {
            font-size: 1.1rem;
            font-weight: 400;
        }

        .widget-content {
            padding: 1rem;
        }

        .category-list, .tag-list {
            list-style: none;
        }

        .category-list li, .tag-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .category-list li:last-child, .tag-list li:last-child {
            border-bottom: none;
        }

        .category-list a, .tag-list a {
            color: #2c3e50;
            text-decoration: none;
        }

        .category-list a:hover, .tag-list a:hover {
            color: #3498db;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag-list li {
            background-color: #ecf0f1;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            border: none;
            font-size: 0.8rem;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                gap: 1rem;
            }

            .post-header {
                flex-direction: column;
                text-align: center;
            }

            .post-actions {
                justify-content: center;
            }
        }