
#bootstrap-touch-slider {
    max-height: 700px;
}
#bootstrap-touch-slider .slide-text {
    left: 0;
    top: 26%;
}
.bs-slider .bs-slider-overlay {
    background-color: rgb(0 0 0 / 65%);
}
body {
    background-color: #0a0a0a;
    color: #fff;
}

/* Genre Section */
.genre-section {
	background: linear-gradient(180deg, #0505054f 0%, #0f0f0fb8 100%);
    padding: 70px 0;
    color: #ffffffd9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 26px;
    color: #ffffffd9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: bold;
    margin: 0;
}

.genre-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    color:#fff;
}

.genre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.genre-card .genre-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.genre-card:hover .genre-img {
    transform: scale(1.1);
}

.genre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

.genre-card.blue .genre-overlay {
    background: linear-gradient(to top, #eb5f19c7, #eb5f194d);
}

.genre-card.red .genre-overlay {
    background: linear-gradient(to top, rgba(127, 29, 29, 0.95), rgba(239, 68, 68, 0.3));
}

.genre-card.purple .genre-overlay {
    background: linear-gradient(to top, rgba(88, 28, 135, 0.95), rgba(168, 85, 247, 0.3));
}

.genre-card:hover .genre-overlay {
    opacity: 0.85;
}

.genre-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.genre-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.genre-card:hover .genre-icon {
    transform: rotateY(360deg);
    background: rgba(255, 255, 255, 0.2);
}

.genre-icon svg {
    width: 40px;
    height: 40px;
}

.genre-content h3 {
    font-size: 42px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.genre-content p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.genre-divider {
    width: 60px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.genre-card:hover .genre-divider {
    width: 100px;
}

/* Authors Section */
.authors-section {
 	background: #3434347a;
    padding: 70px 0;
    color: #ffffffd9;
}

.author-card {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.author-card:hover {
    transform: translateY(-5px);
}

.author-avatar {
width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eb5f192e;
    transition: all 0.4s ease;
    position: relative;
}

.author-card:hover .author-avatar {
	border-color: #eb5f19;
    box-shadow: 0 0 25px #eb5f1994;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.author-card:hover .author-avatar img {
    transform: scale(1.1);
}
.author-info{
	height: 100px;
    overflow: hidden;
	color: #fff;
    font-size: 13px;
}
.author-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
}
.author-name a{
	color:#fff;
	font-size: 20px;
}
.author-name:hover a{
	color:#1e8dff;
}
.author-works {
    color: #9ca3af;
    font-size: 14px;
}
.author-info .text-muted{
	margin: 0px 0px 5px;
    display: block;
}
.btn-view-all {
    background: #1f2937;
    color: #fff;
    border: 1px solid #374151;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #374151;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Services Section */
.services-section {
	background: linear-gradient(180deg, #181818 0%, #050505 100%);
    padding: 70px 0;
    color: #ffffffd9;
}

.service-card {
    background: #c7310447;
    border: 1px solid #eb5f1973;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    text-align: center;
    color: #fff;
    min-height: 300px;
}

.service-card:hover {
border-color: #eb5f19;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #eb5f1961;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    margin: 0px auto 25px;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: #eb5f19;
}

.service-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.service-card p {
    color: #9ca3af;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    .genre-content h3 {
        font-size: 32px;
    }
}
.badge {
	display: inline-block;
    min-width: 10px;
    padding: 2px 9px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #eb5f19;
    border-radius: 10px;
}
/* Vùng container */
#alphabetFilter strong {
    color: #fff;
    margin-right: 10px;
}

/* Nút chữ cái */
#alphabetFilter .btn {
    color: #ffffffd9;
    border-color: #b5b5b552;
    /* background-color: #1a1a1a; */
    margin: 2px;
    transition: 0.2s;
    font-size: 1em;
    line-height: 1.3;
}

/* Nút active */
#alphabetFilter .btn.active , #alphabetFilter .btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #ffff;
}
#alphabetFilter input, #alphabetFilter select, input.form-control, select.form-select { background-color: #f7f7f700; color: #ffffff; border: 1px solid #fff; margin: 15px 0px 30px; height: 40px; }
/* Input text */
/* Placeholder */
#alphabetFilter input::placeholder,
input.form-control::placeholder {
    color: #cccccc;   /* placeholder sáng vừa */
    opacity: 1;       /* tránh bị mờ trên trình duyệt */
}

/* Option trong select */
#alphabetFilter select option,
select.form-select option {
    background-color: #1a1a1a;   /* nền tối */
    color: #ffffff;              /* chữ trắng */
}

/* Option khi hover (Chrome không hỗ trợ hoàn toàn nhưng Firefox có) */
#alphabetFilter select option:hover,
select.form-select option:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Option khi được chọn */
#alphabetFilter select option:checked,
select.form-select option:checked {
    background-color: #0d6efd;
    color: #fff;
}

/* Button Lọc */
#btnFilter {
    background-color: #fff;
    border-color: #ffff;
    color: #000;
    margin: 15px 0px;
    height: 40px;
}
#btnFilter:hover {
	background-color: #eb5f19;
	border-color: #eb5f19;
}
#btnLoadMore{
	color:#fff;
}

.logo-box {
    background: linear-gradient(135deg, #eb5f19 0%, #2563eb 100%);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.search-input {
    background-color: #eb5f19;
    border: 1px solid #1f2937;
    color: #f3f4f6;
    border-radius: 0.5rem;
}

.search-input:focus {
    background-color: #eb5f19;
    color: #f3f4f6;
    border-color: #eb5f19;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a, rgba(3, 7, 18, 0.8), rgba(3, 7, 18, 0.4));
}

.hero-content {
    position: absolute;
    z-index: 1;
    width: inherit;
    bottom: 0px;
    color: #fff;
}
.box-hero-content{
	position: absolute;
    z-index: 1;
    bottom: 0px;
    width: 100%;
}
.artist-avatar {
    width: 100%;
    border-radius: 1rem;
    border: 4px solid #1f2937;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.badge-artist {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #eb5f19;
    backdrop-filter: blur(10px);
}

.genre-badge {
    background: rgba(147, 51, 234, 0.2);
    color: #a78bfa;
}

/* Buttons */
.btn-primary {
    background-color: #eb5f19;
    border-color: #eb5f19;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary {
    background-color: #eb5f19;
    border-color: #1f2937;
    color: #f3f4f6;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid #1f2937;
}

.nav-tabs > li > a {
	border: none !important;
    color: #ffffffe6;
    font-weight: 600;
    padding: 1rem 0.5rem;
    margin-right: 2rem;
    background: transparent !important;
    position: relative;
    font-size: 20px;
}

.nav-tabs > li > a:hover {
    color: #f3f4f6;
    background: transparent;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: #eb5f19;
    background: transparent;
    border: none;
}

.nav-tabs > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #eb5f19;
}

/* Song Cards */
.song-card {
    background-color: #eb5f19;
    border: 1px solid #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.song-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.song-card img {
    transition: transform 0.5s;
    aspect-ratio: 1;
    object-fit: cover;
}

.song-card:hover img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 7, 18, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
}

.song-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    background-color: #eb5f19;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    transform: translateY(1rem);
}

.song-card:hover .play-btn {
    transform: translateY(0);
    background-color: #2563eb;
}

.view-badge {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(5px);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

/* Table */
.table-dark {
    background-color: #eb5f19;
    border: 1px solid #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
}

.table-dark thead {
    background-color: rgba(31, 41, 55, 0.5);
}

.table-dark tbody tr {
    border-top: 1px solid #1f2937;
    transition: background-color 0.2s;
}

.table-dark tbody tr:hover {
    background-color: rgba(31, 41, 55, 0.3);
}

/* Info Cards */
.info-card {
	background-color: #eb5f1917;
    border: 1px solid #eb5f1966;
    border-radius: 0.75rem;
    padding: 2.5rem;
    color: #fff;
    line-height: 1.4;
    transition: background 0.3s ease;
}
.info-card-song {
	background-color: #eb5f1917;
    border: 1px solid #eb5f1966;
    border-radius: 0.75rem;
    padding: 2.5rem;
    color: #fff;
    line-height: 1.4;
    transition: background 0.3s ease;
}
.info-card p , .info-card span{
    background: none !important;
    color: #fff !important;
    font-size: initial !important;
}
.info-card h2, .info-card h3 , .info-card h4 , .info-card h5{
	color: #eb5f19;
}
.info-card:hover p , .info-card:hover span{
	 color: #000 !important;
	 transition-delay: 0.1s; /* delay 0.2s */
}
.info-card:hover{
	background: #fff;
	color: #000 !important;
	transition-delay: 0.1s; /* delay 0.2s */
}
.info-card:hover hr {
    border-top: 1px solid #000;
    transition-delay: 0.1s;
}
.award-icon {
    background: rgba(234, 179, 8, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: inline-flex;
}

/* Scrollbar */
.horizontal-scroll {
    overflow-x: auto;
    padding-bottom: 1rem;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #eb5f19;
    border-radius: 4px;
}
.align-items-end {
    align-items: flex-end !important;
}
.hero-content .text-muted {
    color: #bfbfbf;
}
.tab-content {
    padding: 30px 0px;
}
.tab-content .h3{
	font-size: 1.6em;
	font-weight: 700;
	color:#fff;
}
.hero-content .btn-default:hover{
	background:#eb5f19;
	color:#fff;
	border-color:#eb5f19;
}
/* ===== DARK THEME DATATABLES ===== */

/* Container & Table */
.table-responsive {
    background: #000;
    padding: 20px;
    border-radius: 8px;
}

#songsTable {
    width: 100% !important;
    color: #fff;
    border-collapse: collapse;
}

/* Table Header */
#songsTable thead {
    background: #eb5f198a;
    border: 2px solid #fff;
}

#songsTable thead th {
    padding: 15px 12px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #555;
}

/* Sorting Icons */
#songsTable thead th.sorting,
#songsTable thead th.sorting_asc,
#songsTable thead th.sorting_desc {
    cursor: pointer;
    position: relative;
}

#songsTable thead th.sorting:after,
#songsTable thead th.sorting_asc:after,
#songsTable thead th.sorting_desc:after {
    color: #fff;
	opacity: 0.8;
}

/* Table Body */
#songsTable tbody tr {
	background: #ffffff00;
    border: 1px solid #fff;
    transition: background 0.2s;
}

#songsTable tbody tr:hover {
    background: #ffffff38;
}

#songsTable tbody td {
    padding: 12px;
    border: 0.5px solid #ffffff1a;
}

/* Zebra Striping */
#songsTable tbody tr:nth-child(even) {
    background: #ffffff14;
}

#songsTable tbody tr:nth-child(even):hover {
    background: #ffffff38;
}

/* DataTables Wrapper */
.dataTables_wrapper {
    color: #fff;
}

/* Top Controls Container */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    display: inline-block !important;
    margin-bottom: 15px;
}

/* Length Menu (bên trái) */
#songsTable_length {
    display: inline-block !important;
    float: left !important;
    margin-right: 20px;
}

#songsTable_length label {
    color: #e0e0e0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

#songsTable_length select {
	background: #ffffff47;
    border: 1px solid #ffffff47;
    color: #fff;
    padding: 6px 30px 6px 10px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

/* Search Box (bên phải) */
#songsTable_filter {
    display: inline-block !important;
    float: right !important;
}

#songsTable_filter label {
    color: #e0e0e0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

#songsTable_filter input {
    background: #ffffff47;
    border: 1px solid #ffffffa8;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
    width: 250px;
}

#songsTable_filter input:focus {
}

/* Clear floats */
.dataTables_wrapper::after {
    content: "";
    display: table;
    clear: both;
}

/* Info Text (bên trái dưới) */
#songsTable_info {
    color: #999;color: #ffffffe8;    padding-top: 10px;
    float: left !important;
}

/* Pagination (bên phải dưới) */
#songsTable_paginate {
    padding-top: 10px;
    float: right !important;
}

#songsTable_paginate .paginate_button {
    background: #2d2d2d;
    border: 1px solid #444;
    color: #e0e0e0 !important;
    padding: 0px;
    margin: 0 3px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

#songsTable_paginate .paginate_button:hover {
    background: #3d3d3d;
    border-color: #555;
    color: #fff !important;
}

#songsTable_paginate .paginate_button.current {
    background: #4a4a4a;
    border-color: #666;
    color: #fff !important;
    font-weight: 600;
}

#songsTable_paginate .paginate_button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#songsTable_paginate .paginate_button.disabled:hover {
    background: #2d2d2d;
    border-color: #444;
}

/* Processing */
.dataTables_processing {
    background: #2d2d2d;
    color: #fff;
    border: 1px solid #444;
}

/* Empty State */
.dataTables_empty {
    color: #ffffffe8;
    padding: 30px !important;
}

/* Responsive */
@media (max-width: 768px) {
    #songsTable_filter,
    #songsTable_length,
    #songsTable_info,
    #songsTable_paginate {
        float: none !important;
        text-align: center;
        display: block !important;
        margin: 10px 0;
    }
    
    #songsTable_filter input {
        width: 100%;
        max-width: 300px;
    }
    
    #songsTable_length label,
    #songsTable_filter label {
        justify-content: center;
    }
}
@media (min-width: 992px) {
    .col-md-55 {
        width: 20%;
        float: left; /* cần cho Bootstrap 3 */
    }
}