*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Main Start */
main{
    width: 100%;
    max-width: 1280px;
    height: auto;
    background: #fff;
    display: flex;
}

main .content{
    width: 75%;
    height: auto;
    margin-top: 20px;
    margin-right: 20px;
    overflow-x: hidden;
}

main .content .songs{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

main .content .songs h2{
    text-align: left;
    padding: 5px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 400;
    background: #202020;
    color: #fff;
}

main .content .songs .songs_cards{
    width: 100%;
    height: auto;
    padding: 15px 15px 15px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

main .content .songs .songs_cards .card{
    width: 200px;
    height: 235px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #202020;
}

main .content .songs .songs_cards .card:hover{
    width: 200px;
    height: 235px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #202020;
}

main .content .songs .songs_cards .card .img{
    width: 100%;
    height: 200px;
}

main .content .songs .songs_cards .card .img img{
    width: 100%;
    height: 100%;
}

main .content .songs .songs_cards .card .title{
    border: 1px solid #d9d9d9;
    background: #e8e8e8;
    width: 100%;
    height: 35px;
}

main .content .songs .songs_cards .card .title p{
    padding: 5px;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

main .content .songs .btn{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    top: -12px;
}

main .content .songs .btn button{
    padding: 8px 20px;
    outline: none;
    color: #130000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border-width: 4px;
    font-weight: 600;
    border-style: solid;
    border-image: linear-gradient(to right,#dc68ff, #00d9c4) 1;
}

main .content .songs .btn button:hover{
    border-style: solid;
    border-image: linear-gradient(to right,#000d3f, #00c9da) 1;
    cursor: pointer;
    transition: linear .3s;
}

main .content .songs .view_all_btn{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    top: -12px;
}

main .content .songs .view_all_btn button{
    padding: 8px 20px;
    outline: none;
    color: #270000;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(to right,#dc68ff, #00d9c4) 1;
}

main .content .songs .view_all_btn button:hover{
    border-style: solid;
    border-image: linear-gradient(to right,#000d3f, #00c9da) 1;
    cursor: pointer;
    transition: linear .3s;
}

main .content .songs .btn button:nth-child(1){
    background-color: #fff;
    cursor: pointer;
    border-width: 4px;
    color: #000000;
    font-weight: 600;
    border-style: solid;
    border-image: linear-gradient(to right,#dc68ff, #00d9c4) 1;
}

main .content .songs .btn button:nth-child(1):hover{
    border-style: solid;
    border-image: linear-gradient(to right,#000d3f, #00c9da) 1;
    cursor: pointer;
    transition: linear .3s;
}

/* Footer Start */
footer{
    width: 100%;
    max-width: 1280px;
    height: auto;
    padding: 20px 25px;
    background: #202020;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right,yellow, aqua) 1;
}

footer .footer_content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .footer_left p{
    color: #d9d9d9;
    font-size: 13px;
    font-weight: 600;
}

footer .footer_right .footer_menu{
    list-style: none;
    display: flex;
    gap: 30px;
}

footer .footer_right .footer_menu li a{
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s ease;
}

footer .footer_right .footer_menu li a:hover{
    color: #ff0000;
}

/* Responsive footer */
@media screen and (max-width: 768px) {
    footer .footer_content{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    footer .footer_right .footer_menu{
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Global responsive styles only */
@media screen and (max-width: 1280px) {
    header { max-width: 1210px; }
    main { max-width: 1210px; }
    footer { max-width: 1210px; }
}

@media screen and (max-width: 1210px) {
    header { max-width: 1150px; }
    main { max-width: 1150px; }
    footer { max-width: 1150px; }
    main .content { 
        padding: 20px 0px 20px 15px;
        margin: 22px 15px 22px 0px;
    }
    main aside { margin: 22px 0px 22px 0px; }
}

/* Responsive updates for search bar */
@media screen and (max-width: 768px) {
    header {
        height: 55px;
        padding: 12px 15px;
    }
    
    header nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    header nav .logo a .logo-text {
        font-size: 20px;
    }
    
    header nav .search_bar {
        display: none !important;
    }
    
    header nav .navigation {
        width: auto;
        display: flex;
    }
    
    header nav .navigation ul {
        gap: 20px;
    }
    
    header nav .navigation ul li a {
        font-size: 12px;
    }
    
    main {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    main .content {
        width: 100%;
        padding: 10px;
        margin: 0;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 480px) {
    header {
        height: 50px;
        padding: 10px 10px;
    }
    .logo-image {
    height: 40px; /* Adjust as needed */
    width: auto;
}
    
    header nav .logo a .logo-text {
        font-size: 18px;
    }
    
    main .content {
        padding: 5px;
    }
    
    header nav .navigation ul {
        gap: 15px;
    }
    
    header nav .navigation ul li a {
        font-size: 11px;
    }
}

/* cards.php style */
/* Cards component styles */
.songs_cards{
    width: 100%;
    height: auto;
    padding: 15px 0px 15px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.songs_cards .card{
    width: calc(20% - 12px); /* 5 cards per row */
    height: 215px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #202020;
}

.songs_cards .card .img{
    width: 100%;
    height: 180px;
}

.songs_cards .card .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.songs_cards .card .title{
    border: 1px solid #d9d9d9;
    background: #e8e8e8;
    width: 100%;
    height: 35px;
}

.songs_cards .card .title p{
    padding: 5px;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Responsive styles for cards */
@media screen and (max-width: 1280px) {
    .songs_cards {
        gap: 12px;
        padding: 15px 10px 15px 0px;
    }
    .songs_cards .card {
        width: calc(20% - 9.6px); /* 5 cards per row */
        height: 210px;
    }
    .songs_cards .card .img{
        height: 175px;
    }
}

@media screen and (max-width: 1210px) {
    .songs_cards {
        gap: 10px;
    }
    .songs_cards .card {
        width: calc(25% - 7.5px); /* 4 cards per row - tablets */
        height: 205px;
    }
    .songs_cards .card .img{
        height: 170px;
    }
}

@media screen and (max-width: 1150px) {
    .songs_cards {
        gap: 8px;
    }
    .songs_cards .card {
        width: calc(25% - 6px); /* 4 cards per row - tablets */
        height: 200px;
    }
    .songs_cards .card .img{
        height: 165px;
    }
}

@media screen and (max-width: 1090px) {
    .songs_cards .card {
        width: calc(25% - 6px); /* 4 cards per row - tablets */
        height: 195px;
    }
    .songs_cards .card .img{
        height: 160px;
    }
}

@media screen and (max-width: 1030px) {
    .songs_cards .card {
        width: calc(25% - 6px); /* 4 cards per row - tablets */
        height: 190px;
    }
    .songs_cards .card .img{
        height: 155px;
    }
}

@media screen and (max-width: 960px) {
    .songs_cards {
        gap: 12px;
        justify-content: space-around;
    }
    .songs_cards .card {
        width: calc(25% - 9px); /* 4 cards per row - tablets */
        height: 210px;
    }
}

@media screen and (max-width: 820px) {
    .songs_cards {
        gap: 15px;
        padding: 13px 13px;
        justify-content: center;
    }
    .songs_cards .card {
        width: calc(50% - 7.5px); /* 2 cards per row - mobile */
        height: 200px;
    }
}

@media screen and (max-width: 768px) and (min-width: 601px) {
    .songs_cards {
        gap: 12px;
        padding: 10px 12px;
        justify-content: center;
    }
    .songs_cards .card {
        width: calc(33.33% - 8px); /* 3 cards per row - tablets */
        height: 190px;
    }
    .songs_cards .card .img {
        height: 155px;
    }
}

@media screen and (max-width: 600px) {
    .songs_cards {
        gap: 10px;
        padding: 8px 10px;
    }
    .songs_cards .card {
        width: calc(33.33% - 6.67px); /* 3 cards per row */
        height: 185px;
    }
}

@media screen and (max-width: 480px) {
    .songs_cards {
        padding: 6px 8px;
        gap: 8px;
    }
    .songs_cards .card {
        width: calc(50% - 4px); /* 2 cards per row - mobile */
        height: 175px;
    }
    .songs_cards .card .title p {
        font-size: 13px;
    }
}

/* cards.php end */

/* pagination css start */

.pagination-wrapper {
    width: 100%;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.pagination a:hover {
    background: #d30b00;
    color: #fff;
    border-color: #d30b00;
}

.pagination .current {
    background: #d30b00;
    color: #fff;
    border-color: #d30b00;
}

@media screen and (max-width: 768px) {
    .pagination a,
    .pagination span {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* pagination css close */

/* category css start */
/* Category Page Breadcrumb Styles */
.cat-page-breadcrumb-container {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    box-sizing: border-box;
}

.cat-page-breadcrumb {
    background: #e7e7e7;
    padding: 12px 15px;
    border-radius: 2px;
    font-size: 14px;
    color: #001018;
}

.cat-page-breadcrumb a {
    color: #001018;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cat-page-breadcrumb a:hover {
    color: #005a87;
    text-decoration: none;
}

.cat-page-breadcrumb .cat-page-separator {
    margin: 0 8px;
    color: #999;
}

.cat-page-breadcrumb .cat-page-current {
    color: #001018;
    font-weight: 500;
}

/* Category Page Main Styles */
.cat-page-section{
    width: 100%;
    max-width: 1280px;
    height: auto;
    background: #fff;
    display: flex;
}

.cat-page-section .cat-page-ctg{
    width: 75%;
    height: auto;
    margin-top: 20px;
    margin-right: 20px;
    overflow-x: hidden;
}

.cat-page-section .cat-page-ctg .cat-page-song{
    width: 100%;
    height: auto;
}

.cat-page-section .cat-page-ctg .cat-page-song .cat-page-ctg-name{
    text-align: left;
    padding: 5px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 400;
    background: #202020;
    color: #fff;
    margin-bottom: 10px;
}

.cat-page-section .cat-page-ctg .cat-page-song .cat-page-ctg-song-btn{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.cat-page-section .cat-page-ctg .cat-page-song .cat-page-ctg-song-btn button{
    padding: 8px 20px;
    background-color: #ff0000;
    border: 1px solid #ff0000;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

.cat-page-section .cat-page-ctg .cat-page-song .cat-page-ctg-song-btn button:nth-child(1){
    background-color: #fff;
    border: 1px solid #ff0000;
    outline: none;
    color: #ff0000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

/* Category Description Styles */
.cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description {
    width: 100%;
    margin: 30px 0;
    padding: 30px 22px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #202020;
}

.cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description p:last-child {
    margin-bottom: 0;
}

.cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description span {
    font-weight: bold;
    color: #000000ff;
}

/* Category page responsive styles */
@media screen and (max-width: 768px) {
    .cat-page-section {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    .cat-page-section .cat-page-ctg {
        width: 100%;
        margin: 20px 0 0 0;
        padding: 0;
        box-sizing: border-box;
    }
    .cat-page-section .cat-page-ctg .cat-page-song .cat-page-ctg-name {
        font-size: 18px;
        padding: 8px 12px;
    }
    .cat-page-breadcrumb-container {
        margin: 0 0 15px 0;
    }
    
    .cat-page-breadcrumb {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .cat-page-breadcrumb .cat-page-separator {
        margin: 0 6px;
    }
    .cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description {
        margin: 20px 0;
        padding: 20px 15px;
    }
    .cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 600px) {
    .cat-page-section .cat-page-ctg {
        margin: 15px 0 0 0;
    }
    .cat-page-breadcrumb-container {
        margin: 0 0 10px 0;
    }
    
    .cat-page-breadcrumb {
        padding: 8px 10px;
        font-size: 12px;
        background:none;
        border-radius: 2px;
    }
    
    .cat-page-breadcrumb .cat-page-separator {
        margin: 0 4px;
    }
    .cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description {
        margin: 15px 0;
        padding: 15px 10px;
    }
}

@media screen and (max-width: 480px) {
    .cat-page-section .cat-page-ctg {
        margin: 10px 0 0 0;
        padding: 0;
    }
    .cat-page-section .cat-page-ctg .cat-page-song .cat-page-ctg-name {
        font-size: 16px;
        padding: 6px 10px;
    }
    .cat-page-breadcrumb-container {
        margin: 0 0 8px 0;
    }

    .cat-page-section .cat-page-ctg .cat-page-song .cat-page-category-description p {
        font-size: 13px;
    }
    
    .cat-page-breadcrumb {
        padding: 6px 8px;
        background:none;
        font-size: 11px;
    }
    
    .cat-page-breadcrumb .cat-page-separator {
        margin: 0 3px;
    }
}
/* category css start */

/* 404 css start */
/* 404 page specific styles */
.error-404-main {
    width: 100%;
    max-width: 1280px;
    height: auto;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.error-404-main .error-404-content-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.error-404-main .error-404-content-wrapper .error-404-songs{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-404-page-content {
    width: 100%; 
    text-align: center; 
    padding: 60px 20px;
}

.error-404-page-content h1 {
    font-size: 72px; 
    color: #ff0000; 
    margin-bottom: 20px;
}

.error-404-page-content h3 {
    margin-bottom: 20px;
}

.error-404-page-content p {
    margin-bottom: 30px;
}

.error-404-page-content a {
    display: inline-block; 
    padding: 12px 25px; 
    background: #ff0000; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 5px;
}

.error-404-page-content a:hover {
    background: #cc0000;
    transition: background 0.3s ease;
}

/* 404 page responsive styles */
@media screen and (max-width: 1280px) {
    .error-404-main { max-width: 1210px; }
}

@media screen and (max-width: 1210px) {
    .error-404-main { max-width: 1150px; }
}

@media screen and (max-width: 768px) {
    .error-404-main {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .error-404-main .error-404-content-wrapper {
        width: 100%;
        padding: 10px;
        margin: 0;
    }
}

@media screen and (max-width: 574px) {
    .error-404-page-content h1 {
        font-size: 48px;
    }
    .error-404-page-content {
        padding: 40px 15px;
    }
    
    .error-404-main .error-404-content-wrapper {
        padding: 5px;
    }
}
/* 404 css close */


/* index.php page css */
/* Index page specific styles */
.index-page-wrapper main .content .welcome-section {
    width: 100%;
    background: #f8f8f8;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-sizing: border-box;
}

.index-page-wrapper main .content .welcome-section h1 {
    color: #0056adff;
    font-size: 24px;
    font-weight: 200;
    margin: 0 0 15px 0;
    text-align: center;
}

.index-page-wrapper main .content .welcome-section p {
    color: #2e2e2eff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.index-page-wrapper main .content .songs{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.index-page-wrapper main .content .songs h2{
    text-align: left;
    padding: 5px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 400;
    background: #202020;
    color: #fff;
    margin-right: 0;
    box-sizing: border-box;
}

.index-page-wrapper main .content .view-all-button {
    text-align: center;
    margin-top: -20px;
    padding: 20px 0;
    margin-bottom: 8px;
}

.index-page-wrapper main .content .view-all-button a {
    display: inline-block;
    background: #d30b00;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.index-page-wrapper main .content .view-all-button a:hover {
    background: #b60900ff;
}


/* Categories section styles */
.index-page-wrapper main .content .categories-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.index-page-wrapper main .content .categories-section h2 {
    text-align: left;
    padding: 5px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 400;
    background: #202020;
    color: #fff;
    margin-right: 0;
    box-sizing: border-box;
    margin-bottom: 0;
}

.index-page-wrapper main .content .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 0 0 5px 5px;
}

.index-page-wrapper main .content .category-item {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.index-page-wrapper main .content .category-item:hover {
    border-color: #d30b00;
    box-shadow: 0 4px 15px rgba(211, 11, 0, 0.1);
}

.index-page-wrapper main .content .category-item svg {
    width: 48px;
    height: 48px;
    fill: #0056adff;
    transition: fill 0.3s ease;
}

.index-page-wrapper main .content .category-item:hover svg {
    fill: #d30b00;
}

.index-page-wrapper main .content .category-item span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.index-page-wrapper main .content .category-item:hover span {
    color: #d30b00;
}

.index-page-wrapper main .content .category-item .post-count {
    font-size: 12px;
    color: #000000ff;
    margin-top: -5px;
    font-weight: 500;
    background: rgba(0, 86, 173, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.index-page-wrapper main .content .category-item:hover .post-count {
    background: rgba(211, 11, 0, 0.1);
    color: #d30b00;
}

/* Mobile search box styles */
.index-page-wrapper main .content .mobile-search {
    display: none;
    width: 100%;
    margin-bottom: 20px;
}

.index-page-wrapper main .content .mobile-search form {
    width: 100%;
    position: relative;
    background: #f3f3f3;
    border-radius: 25px;
    padding: 2px;
    border: 1px solid #d3d3d3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.index-page-wrapper main .content .mobile-search input[type="search"] {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    background: transparent;
    color: #2e2e2eff;
    font-family: inherit;
}

.index-page-wrapper main .content .mobile-search input[type="search"]::placeholder {
    color: #666;
}

.index-page-wrapper main .content .mobile-search input[type="search"]:focus {
    background: #fff;
}

.index-page-wrapper main .content .mobile-search button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: #d30b00;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-page-wrapper main .content .mobile-search button:hover {
    background: #b40900ff;
}

.index-page-wrapper main .content .mobile-search svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Show search box on mobile devices */
@media screen and (max-width: 820px) {
    .index-page-wrapper main .content .mobile-search {
        display: block;
    }
}

/* Responsive styles for index */
@media screen and (max-width: 1280px) {
    .index-page-wrapper main .content {
        margin: 22px 15px 22px 0;
        padding: 0;
    }
}

@media screen and (max-width: 1210px) {
    .index-page-wrapper main .content {
        margin: 22px 10px 22px 0;
        padding: 0;
    }
}

@media screen and (max-width: 1024px) and (min-width: 821px) {
    .index-page-wrapper main .content {
        margin: 20px 12px 20px 0;
        padding: 0;
    }
    
    .index-page-wrapper main .content .welcome-section {
        padding: 18px;
        margin-bottom: 18px;
    }
    
    .index-page-wrapper main .content .welcome-section h1 {
        font-size: 22px;
    }
    
    .index-page-wrapper main .content .welcome-section p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .index-page-wrapper main .content .songs h2 {
        font-size: 19px;
        padding: 10px 14px;
    }
    
    .index-page-wrapper main .content .view-all-button a {
        padding: 11px 28px;
        font-size: 15px;
    }
    
    .index-page-wrapper main .content .categories-section h2 {
        font-size: 19px;
        padding: 10px 14px;
    }
    
    .index-page-wrapper main .content .categories-grid {
        padding: 22px;
        gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .index-page-wrapper main .content .category-item {
        padding: 18px 12px;
        gap: 10px;
    }
    
    .index-page-wrapper main .content .category-item svg {
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 820px){
    .index-page-wrapper main {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    .index-page-wrapper main .content {
        width: 100%;
        margin: 20px 0 0 0;
        padding: 0;
        box-sizing: border-box;
    }
    .index-page-wrapper main .content .welcome-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    .index-page-wrapper main .content .welcome-section h1 {
        font-size: 20px;
    }
    .index-page-wrapper main .content .welcome-section p {
        font-size: 14px;
    }
    .index-page-wrapper main .content .songs h2 {
        margin-right: 0;
        font-size: 18px;
        padding: 8px 12px;
        margin-bottom: 0;
    }
    .index-page-wrapper main .content .view-all-button a {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .index-page-wrapper main .content .categories-section {
        margin: 15px 0;
    }
    
    .index-page-wrapper main .content .categories-section h2 {
        margin-right: 0;
        font-size: 18px;
        padding: 8px 12px;
        margin-bottom: 0;
    }
    
    .index-page-wrapper main .content .categories-grid {
        padding: 18px;
        gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .index-page-wrapper main .content .category-item {
        padding: 16px 12px;
        gap: 10px;
    }
    
    .index-page-wrapper main .content .category-item svg {
        width: 42px;
        height: 42px;
    }
}

@media screen and (max-width: 768px) and (min-width: 601px) {
    .index-page-wrapper main {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .index-page-wrapper main .content {
        width: 100%;
        margin: 18px 0 0 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .index-page-wrapper main .content .welcome-section {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .index-page-wrapper main .content .welcome-section h1 {
        font-size: 21px;
    }
    
    .index-page-wrapper main .content .welcome-section p {
        font-size: 14.5px;
        line-height: 1.5;
    }
    
    .index-page-wrapper main .content .songs h2 {
        font-size: 17px;
        padding: 9px 13px;
        margin-right: 0;
    }
    
    .index-page-wrapper main .content .view-all-button {
        padding: 18px 0;
        margin-bottom: 15px;
    }
    
    .index-page-wrapper main .content .view-all-button a {
        padding: 10px 26px;
        font-size: 14.5px;
    }
    
    .index-page-wrapper main .content .categories-section h2 {
        font-size: 17px;
        padding: 9px 13px;
        margin-right: 0;
    }
    
    .index-page-wrapper main .content .categories-grid {
        padding: 18px;
        gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .index-page-wrapper main .content .category-item {
        padding: 16px 12px;
        gap: 10px;
    }
    
    .index-page-wrapper main .content .category-item svg {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 600px) {
    .index-page-wrapper main .content {
        margin: 15px 0 0 0;
        padding: 0;
    }
    .index-page-wrapper main .content .welcome-section {
        padding: 12px;
        margin-bottom: 12px;
    }
    .index-page-wrapper main .content .welcome-section h1 {
        font-size: 18px;
    }
    .index-page-wrapper main .content .welcome-section p {
        font-size: 13px;
    }
    .index-page-wrapper main .content .songs h2 {
        font-size: 16px;
        padding: 6px 10px;
    }
    .index-page-wrapper main .content .view-all-button {
        padding: 15px 0;
        margin-bottom: 20px;
    }
    .index-page-wrapper main .content .view-all-button a {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .index-page-wrapper main .content .categories-section h2 {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .index-page-wrapper main .content .categories-grid {
        padding: 15px;
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-page-wrapper main .content .category-item {
        padding: 14px 10px;
        gap: 8px;
    }
    
    .index-page-wrapper main .content .category-item svg {
        width: 38px;
        height: 38px;
    }
    
    .index-page-wrapper main .content .category-item span {
        font-size: 14px;
    }
    
    .index-page-wrapper main .content .category-item .post-count {
        font-size: 11px;
        padding: 2px 6px;
    }
}

@media screen and (max-width: 480px) {
    .index-page-wrapper main .content {
        margin: 10px 0 0 0;
        padding: 0;
    }
    .index-page-wrapper main .content .welcome-section {
        padding: 10px;
        margin-bottom: 10px;
    }
    .index-page-wrapper main .content .welcome-section h1 {
        font-size: 16px;
    }
    .index-page-wrapper main .content .welcome-section p {
        font-size: 13px;
    }
    .index-page-wrapper main .content .view-all-button {
        padding: 10px 0;
        margin-bottom: 15px;
        margin-top: 2px;
    }
    
    .index-page-wrapper main .content .categories-grid {
        padding: 12px;
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-page-wrapper main .content .category-item {
        padding: 12px 8px;
        gap: 8px;
    }
    
    .index-page-wrapper main .content .category-item svg {
        width: 34px;
        height: 34px;
    }
    
    .index-page-wrapper main .content .category-item span {
        font-size: 13px;
    }
    
    .index-page-wrapper main .content .category-item .post-count {
        font-size: 10px;
        padding: 2px 5px;
    }
}

/* index page css close */



/* single.php start */
.sidebar-container {
    width: 25%;
    height: auto;
    margin-top: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aside{
    width: 100%;
    height: auto;
    margin-top: 0;
    position: static;
}

.aside h2{
    text-align: left;
    padding: 5px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 400;
    background: #202020;
    color: #fff;
}

.aside .tren_songs_list{
    height: auto;
    padding: 5px;
    background: #e8e8e8;
    border: 1px solid #d9d9d9;
}

.aside .tren_songs_list ul{
    padding: 6px;
    margin: 0;
    list-style: none;
}

.aside .tren_songs_list ul li{
    list-style-type: none;
    line-height: 1.4;
    width: 100%;
    margin-bottom: 8px;
    padding: 8px;
    border-bottom: 1px solid #d4d4d4;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.aside .tren_songs_list ul li:hover{
    background: #f5f5f5;
    transform: translateX(3px);
}

.aside .tren_songs_list ul li:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

.aside .tren_songs_list ul li a{
    text-decoration: none;
    color: #202020;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.aside .tren_songs_list ul li a .song-info{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 2px;
}

.aside .tren_songs_list ul li a .song-title{
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    line-height: 1.2;
}

.aside .tren_songs_list ul li a .song-meta{
    font-size: 12px;
    color: #666;
    font-weight: 400;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    flex-shrink: 0;
}

.aside .tren_songs_list ul li a .song-duration{
    color: #666;
}

.aside .tren_songs_list ul li a .song-file-size{
    color: #666;
}

.aside .tren_songs_list ul li a .meta-separator{
    color: #666;
    margin: 0 3px;
}

.aside .tren_songs_list ul li .no-songs{
    color: #666;
    font-style: italic;
    font-size: 14px;
    text-align: center;
    display: block;
    width: 100%;
}

.sidebar-play-btn {
    background: black;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffffff;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    overflow: visible;
}

/* Show play icon by default, hide pause and loading icons */
.sidebar-play-btn .play-icon {
    display: block;
}

.sidebar-play-btn .pause-icon,
.sidebar-play-btn .loading-icon {
    display: none;
}

.sidebar-play-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid #ff0000;
    border-right: 2px solid #ff0000;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: spin 1s linear infinite;
    animation-play-state: paused;
}

.sidebar-play-btn.playing::before {
    opacity: 1;
    animation-play-state: running;
}

.sidebar-play-btn.playing {
    color: #ff0000;
    background: #ffe6e6;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sidebar-no-audio {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* Header Start */

h2{
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right,#dc68ff, #00d9c4) 1;
}

header{
    border-top-width: 2px;
    border-top-style: solid;
    border-image: linear-gradient(to right,yellow, aqua) 1;
    width: 100%;
    max-width: 1280px;
    height: 75px;
    padding: 20px;
    display: flex;
    background: #202020;
}

header nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav .logo a{
    text-decoration: none;
}

header nav .logo a .logo-text {
    color: hsl(0, 0%, 100%);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header nav .search_bar{
    width: auto;
    height: auto;
    display: flex;
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}

header nav .search_bar form{
    width: 100%;
    display: flex;
    align-items: center;
}

header nav .search_bar input{
    flex: 1;
    height: 35px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
    background: #fff;
    border: 2px solid #ddd;
    outline: none;
    border-radius: 4px 0px 0px 4px;
    border-right: none;
}

header nav .search_bar button{
    width: 50px;
    height: 35px;
    background: #ff0000;
    border: 2px solid #ff0000;
    outline: none;
    border-radius: 0px 4px 4px 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

header nav .search_bar button:hover{
    background: #cc0000;
    border-color: #cc0000;
}

header nav .search_bar button i{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

header nav .navigation{
    display: flex;
    width: auto;
    min-width: fit-content;
    height: 100%;
    align-items: center;
    justify-content: center;
}

header nav .navigation ul{
    list-style-type: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

header nav .navigation ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    transition: .5s linear;
}

header nav .navigation ul li a:hover{
    color: #ff0000;
}

header nav .menu_icon{
    display: none;
}

header nav .close_menu{
    display: none;
}

header nav .srh_bar{
    display: none;
}

/* header.css close */

/* Sidebar responsive styles */
@media screen and (max-width: 820px){
    .sidebar-container {
        width: 100%;
        margin: 0;
        position: static;
        gap: 1px;
    }
    
    .aside {
        width: 100%;
        margin: 0;
        position: static;
    }
    
    .aside h2{
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .aside .tren_songs_list ul li{
        min-height: 40px;
        gap: 6px;
    }
    
    .aside .tren_songs_list ul li a{
        font-size: 13px;
    }
    
    .aside .tren_songs_list ul li a .song-meta{
        font-size: 10px;
    }
    
    .sidebar-play-btn {
        width: 26px;
        height: 26px;
        padding: 3px;
    }
    .aside .tren_songs_list ul{
        padding: 3px;
    }
    
    .sidebar-play-btn::before {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-width: 2px;
    }
    
    .sidebar-no-audio {
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width: 768px){
    .aside h2{
        font-size: 16px;
        padding: 8px 10px;
    }
    
    .aside .tren_songs_list ul li{
        padding: 6px;
        margin-bottom: 6px;
        gap: 6px;
        min-height: 38px;
    }

    .aside .tren_songs_list ul{
        padding: 3px;
    }
    
    .aside .tren_songs_list ul li a{
        font-size: 12px;
    }
    
    .aside .tren_songs_list ul li a .song-meta{
        font-size: 9px;
    }
    
    .sidebar-play-btn {
        width: 24px;
        height: 24px;
        padding: 2px;
    }
    
    .sidebar-play-btn::before {
        top: -1.5px;
        left: -1.5px;
        right: -1.5px;
        bottom: -1.5px;
        border-width: 1.5px;
    }
    
    .sidebar-play-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .sidebar-no-audio {
        width: 24px;
        height: 24px;
    }
    
    .sidebar-no-audio svg {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 480px){
    .aside h2{
        font-size: 15px;
        padding: 6px 8px;
    }
    
    .aside .tren_songs_list ul{
        padding: 2px;
    }
    
    .aside .tren_songs_list ul li{
        padding: 5px;
        margin-bottom: 5px;
        gap: 5px;
        min-height: 36px;
    }
    .aside .tren_songs_list ul li:hover{
        transform: none;
    }
    
    .aside .tren_songs_list ul li a{
        font-size: 11px;
    }
    
    .aside .tren_songs_list ul li a .song-info{
        gap: 1px;
    }
    
    .aside .tren_songs_list ul li a .song-meta{
        font-size: 10px;
    }

    .aside .tren_songs_list ul li a .song-title{
        font-size: 12px;
    }

    .sidebar-play-btn {
        width: 22px;
        height: 22px;
        padding: 2px;
    }
    
    .sidebar-play-btn::before {
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        border-width: 1px;
    }
    
    .sidebar-play-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .sidebar-no-audio {
        width: 22px;
        height: 22px;
    }
    
    .sidebar-no-audio svg {
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width: 360px){
    .aside h2{
        font-size: 14px;
        padding: 5px 6px;
    }
    
    .aside .tren_songs_list ul li{
        min-height: 34px;
    }
    
    .aside .tren_songs_list ul li a{
        font-size: 10px;
    }
    
    .aside .tren_songs_list ul li a .song-meta{
        font-size: 7px;
    }
    
    .sidebar-play-btn {
        width: 20px;
        height: 20px;
        padding: 1px;
    }
    
    .sidebar-play-btn::before {
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        border-width: 1px;
    }
    
    .sidebar-play-btn svg {
        width: 10px;
        height: 10px;
    }
    
    .sidebar-no-audio {
        width: 20px;
        height: 20px;
    }
    
    .sidebar-no-audio svg {
        width: 10px;
        height: 10px;
    }
}

/* header mobile csss */
      /* Header Layout Fix - Override existing styles */
        header nav {
            width: 100% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            flex-wrap: nowrap !important;
            gap: 0 !important;
        }

        header nav .logo {
            flex-shrink: 0 !important;
            order: 1 !important;
        }

        header nav .search_bar {
            flex: 1 !important;
            max-width: 550px !important;
            margin: 0 20px !important;
            order: 2 !important;
        }

        header nav .navigation {
            flex-shrink: 0 !important;
            order: 3 !important;
        }

        /* Mobile Menu Styles - Override existing styles */
        header nav .menu-toggle {
            display: none !important;
            background: none !important;
            border: none !important;
            cursor: pointer !important;
            padding: 8px !important;
            z-index: 1001 !important;
            position: relative !important;
            order: 4 !important;
            flex-shrink: 0 !important;
        }

        header nav .menu-toggle span {
            display: block !important;
            width: 28px !important;
            height: 3px !important;
            background: #fff !important;
            margin: 6px 0 !important;
            transition: 0.3s ease !important;
            transform-origin: center !important;
            border-radius: 2px !important;
        }

        header nav .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px) !important;
        }

        header nav .menu-toggle.active span:nth-child(2) {
            opacity: 0 !important;
            transform: scale(0) !important;
        }

        header nav .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px) !important;
        }

        .mobile-overlay {
            display: none !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100vh !important;
            background: rgba(0, 0, 0, 0.6) !important;
            z-index: 998 !important;
            backdrop-filter: blur(2px) !important;
        }

        .mobile-overlay.active {
            display: block !important;
        }

        /* Mobile Menu Close Button */
        header nav .navigation .menu-close {
            display: none !important;
        }

        /* Mobile Menu Responsive - Override existing styles */
        @media screen and (max-width: 768px) {
            header {
                height: 55px !important;
                padding: 12px 15px !important;
            }

            header nav {
                flex-wrap: nowrap !important;
                gap: 10px !important;
                align-items: center !important;
                justify-content: space-between !important;
            }

            header nav .logo {
                order: 1 !important;
                flex-shrink: 0 !important;
            }

            header nav .logo a .logo-text {
                font-size: 20px !important;
            }

            header nav .search_bar {
                display: none !important;
                order: 2 !important;
            }

            header nav .menu-toggle {
                display: block !important;
                order: 3 !important;
                flex-shrink: 0 !important;
                margin-left: auto !important;
            }

            header nav .navigation {
                position: fixed !important;
                top: 0 !important;
                left: -50% !important;
                width: 50% !important;
                height: 100vh !important;
                background: linear-gradient(135deg, #202020 0%, #2a2a2a 100%) !important;
                transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
                z-index: 999 !important;
                padding: 20px 0 20px 0 !important;
                box-shadow: 4px 0 20px rgba(0,0,0,0.3) !important;
                overflow-y: auto !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                justify-content: flex-start !important;
                margin: 0 !important;
                order: 4 !important;
            }

            header nav .navigation.active {
                left: 0 !important;
            }

            header nav .navigation.active .menu-close {
                opacity: 1 !important;
            }

            header nav .navigation ul {
                flex-direction: column !important;
                gap: 0 !important;
                width: 100% !important;
                padding: 0 !important;
                margin: 0 !important;
                list-style: none !important;
                display: flex !important;
            }

            header nav .navigation ul li {
                width: 100% !important;
                border-bottom: 1px solid rgba(255,255,255,0.1) !important;
                transform: translateX(-20px) !important;
                opacity: 0 !important;
                transition: all 0.3s ease !important;
                list-style: none !important;
            }

            header nav .navigation.active ul li {
                transform: translateX(0) !important;
                opacity: 1 !important;
            }

            header nav .navigation.active ul li:nth-child(1) { transition-delay: 0.1s !important; }
            header nav .navigation.active ul li:nth-child(2) { transition-delay: 0.2s !important; }
            header nav .navigation.active ul li:nth-child(3) { transition-delay: 0.3s !important; }
            header nav .navigation.active ul li:nth-child(4) { transition-delay: 0.4s !important; }
            header nav .navigation.active ul li:nth-child(5) { transition-delay: 0.5s !important; }

            header nav .navigation ul li a {
                display: block !important;
                padding: 18px 25px !important;
                font-size: 16px !important;
                width: 100% !important;
                text-align: left !important;
                border-bottom: none !important;
                color: #fff !important;
                transition: all 0.3s ease !important;
                position: relative !important;
                text-decoration: none !important;
                box-sizing: border-box !important;
            }

            header nav .navigation ul li a:hover {
                background: rgba(255,255,255,0.1) !important;
                color: #ff0000 !important;
                padding-left: 35px !important;
            }

            header nav .navigation ul li a::before {
                content: '' !important;
                position: absolute !important;
                left: 0 !important;
                top: 0 !important;
                height: 100% !important;
                width: 4px !important;
                background: #ff0000 !important;
                transform: scaleY(0) !important;
                transition: transform 0.3s ease !important;
            }

            header nav .navigation ul li a:hover::before {
                transform: scaleY(1) !important;
            }

            header nav .navigation ul li:last-child {
                border-bottom: none !important;
            }
        }

        @media screen and (max-width: 480px) {
            header {
                height: 50px !important;
                padding: 10px 10px !important;
            }

            header nav .logo a .logo-text {
                font-size: 18px !important;
            }

            header nav .navigation {
                width: 60% !important;
                left: -60% !important;
                padding: 20px 0 20px 0 !important;
            }

            header nav .navigation ul li a {
                padding: 16px 20px !important;
                font-size: 15px !important;
            }

            header nav .navigation ul li a:hover {
                padding-left: 30px !important;
            }
        }

        @media screen and (max-width: 360px) {
            header nav .navigation {
                width: 70% !important;
                left: -70% !important;
            }

            header nav .navigation ul li a {
                padding: 14px 18px !important;
                font-size: 14px !important;
            }
        }

/* page.php css */

/* Inline styles for page.php - compact and simple design */
.page-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
    min-height: 60vh;
}

.page-content {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
}

.page-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

.page-title {
    font-size: 32px;
    color: #202020;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.page-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.page-content-text h1,
.page-content-text h2,
.page-content-text h3,
.page-content-text h4,
.page-content-text h5,
.page-content-text h6 {
    color: #202020;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.page-content-text h1 { font-size: 28px; }
.page-content-text h2 { font-size: 24px; }
.page-content-text h3 { font-size: 20px; }
.page-content-text h4 { font-size: 18px; }
.page-content-text h5 { font-size: 16px; }
.page-content-text h6 { font-size: 14px; }

.page-content-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-content-text ul,
.page-content-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.page-content-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-content-text a {
    color: #007cba;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.page-content-text a:hover {
    color: #005a87;
    border-bottom-color: #005a87;
}

.page-content-text blockquote {
    background: #f9f9f9;
    border-left: 4px solid #007cba;
    margin: 20px 0;
    padding: 15px 20px;
    font-style: italic;
}

.page-content-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 4px;
}

.page-content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
}

.page-content-text table th,
.page-content-text table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.page-content-text table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #202020;
}

.page-content-text table tr:nth-child(even) {
    background: #f9f9f9;
}

.page-not-found {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.page-not-found h2 {
    font-size: 28px;
    color: #202020;
    margin-bottom: 15px;
}

.page-not-found p {
    font-size: 16px;
    margin-bottom: 20px;
}

.page-not-found a {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.page-not-found a:hover {
    background: #cc0000;
}

/* Responsive styles */
@media screen and (max-width: 1280px) {
    .page-wrapper { max-width: 1210px; }
}

@media screen and (max-width: 1210px) {
    .page-wrapper { max-width: 1150px; }
}

@media screen and (max-width: 768px) {
    .page-content {
        padding: 20px 15px;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    .page-content-text {
        font-size: 15px;
    }
    
    .page-content-text h1 { font-size: 24px; }
    .page-content-text h2 { font-size: 20px; }
    .page-content-text h3 { font-size: 18px; }
    .page-content-text h4 { font-size: 16px; }
}

@media screen and (max-width: 480px) {
    .page-content {
        padding: 15px 10px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .page-content-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .page-content-text ul,
    .page-content-text ol {
        padding-left: 20px;
    }
    
    .page-content-text table th,
    .page-content-text table td {
        padding: 8px;
        font-size: 13px;
    }
}


/* search page php  */
/* Search Page Specific Styles */

.search-page-wrapper{
 width: 100%;
 max-width: 1280px;
}

.search-page-wrapper .search-breadcrumb-container {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    box-sizing: border-box;
}

.search-page-wrapper .search-breadcrumb {
    background: #e7e7e7;
    padding: 12px 15px;
    border-radius: 2px;
    font-size: 14px;
    color: #555;
}

.search-page-wrapper .search-breadcrumb a {
    color: #007cba;
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-page-wrapper .search-breadcrumb a:hover {
    color: #005a87;
    text-decoration: none;
}

.search-page-wrapper .search-breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

.search-page-wrapper .search-breadcrumb .current {
    color: #333;
    font-weight: 500;
}

.search-page-wrapper .search-section{
    width: 100%;
    max-width: 1280px;
    height: auto;
    background: #fff;
    display: flex;
}

.search-page-wrapper .search-section .search-content{
    width: 75%;
    height: auto;
    margin-top: 20px;
    margin-right: 20px;
    overflow-x: hidden;
}

.search-page-wrapper .search-section .search-content .search-songs{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.search-page-wrapper .search-section .search-content .search-songs h2{
    text-align: left;
    padding: 5px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 400;
    background: #202020;
    color: #fff;
    margin-bottom: 10px;
}

.search-page-wrapper .search-no-results {
    width: 100%; 
    text-align: center; 
    padding: 40px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    margin: 20px 0;
}

.search-page-wrapper .search-no-results h3 {
    margin-bottom: 15px;
    color: #202020;
    font-size: 24px;
}

.search-page-wrapper .search-no-results p {
    color: #666;
    line-height: 1.6;
}

/* Search Page Responsive Styles */
@media screen and (max-width: 768px) {
    .search-page-wrapper .search-section {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    .search-page-wrapper .search-section .search-content {
        width: 100%;
        margin: 20px 0 0 0;
        padding: 0;
        box-sizing: border-box;
    }
    .search-page-wrapper .search-section .search-content .search-songs h2 {
        font-size: 18px;
        padding: 8px 12px;
    }
    .search-page-wrapper .search-breadcrumb-container {
        margin: 0 0 15px 0;
    }
    
    .search-page-wrapper .search-breadcrumb {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .search-page-wrapper .search-breadcrumb .separator {
        margin: 0 6px;
    }
}

@media screen and (max-width: 600px) {
    .search-page-wrapper .search-section .search-content {
        margin: 15px 0 0 0;
    }
    .search-page-wrapper .search-breadcrumb-container {
        margin: 0 0 10px 0;
    }
    
    .search-page-wrapper .search-breadcrumb {
        padding: 8px 10px;
        font-size: 12px;
        background: none;
        border-radius: 2px;
    }
    
    .search-page-wrapper .search-breadcrumb .separator {
        margin: 0 4px;
    }
}

@media screen and (max-width: 480px) {
    .search-page-wrapper .search-section .search-content {
        margin: 10px 0 0 0;
        padding: 0;
    }
    .search-page-wrapper .search-section .search-content .search-songs h2 {
        font-size: 16px;
        padding: 6px 10px;
    }
    .search-page-wrapper .search-breadcrumb-container {
        margin: 0 0 8px 0;
    }
    
    .search-page-wrapper .search-breadcrumb {
        padding: 6px 8px;
        background: none;
        font-size: 11px;
    }
    
    .search-page-wrapper .search-breadcrumb .separator {
        margin: 0 3px;
    }
}
/* search page css end */