body {
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Ubuntu,
        Cantarell,
        Noto Sans,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol,
        Noto Color Emoji;
}

.news-link {
    text-decoration: none !important;
    color: inherit !important;
    font-size: inherit !important;
}

.news-link:hover {
    text-decoration: none !important;
    color: inherit !important;
    font-size: inherit !important;
}

.navbar {
    padding-top: 6px;
    padding-bottom: 6px;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar ul li a {
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 1.5 !important;
    cursor: pointer;
}

.left p {
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    font-family: "Poppins", sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

.left p:hover {
    color: #da3437;
    cursor: pointer;
}

.right p {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    font-family: "Poppins", sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

.right p:hover {
    color: #da3437;
    cursor: pointer;
}

.navbar-nav li a {
    color: #ffffff;
}

.navbar-nav li a:hover {
    color: #da3437;
}

.dropdown-menu li a {
    color: #ffffff;
}

.dropdown-menu li a:hover {
    color: #da3437;
}

.dropdown-menu {
    background: #000;
    border: none;
    padding: 10px 0;
}

.dropdown-item:hover {
    background: #111;
}

.navbar-nav .nav-link {
    margin-right: 18px;
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: none;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
    }
}

.navbar input {
    width: 220px;
    border-radius: 20px;
    background: #2c2c2c;
    padding: 8px 15px;
}

.btn-danger {
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 600;
}

.btn-stark {
    background-color: #da3437;
    color: white;
    border-radius: 25px;
}

.form-control::placeholder {
    color: #ccc;
    /* choose your color */
    opacity: 1;
    /* ensures full visibility */
}

/* --- SUBSCRIBE DROPDOWN LOGIC --- */

.subscribe-dropdown {
    position: relative;
    display: inline-block;
}

/* Default White, Hover pe Red */
.subscribe-trigger {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    cursor: pointer;
}

/* Hover Effect for Link */
.subscribe-dropdown:hover .subscribe-trigger {
    color: #da3437;
    /* Aapki btn-stark wala red color */
}

/* The Black Box */
.subscribe-box {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: #000;
    padding: 25px;
    margin-top: 10px;
    /* Space from navbar */
    z-index: 1000;
    text-align: left;
    border: 1px solid #222;
}

/* Show on Hover */
.subscribe-dropdown:hover .subscribe-box {
    display: block;
}

.newsletter-title {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: none;
}

/* Input inside subscribe box only */
.sub-input {
    width: 100% !important;
    background: #1a1a1a !important;
    border: none !important;
    padding: 12px !important;
    color: #fff !important;
    margin-bottom: 12px !important;
    border-radius: 0 !important;
    /* Image jaisa square look */
}

/* Button inside subscribe box only */
.sub-btn {
    background: #ccc !important;
    color: #000 !important;
    border: none !important;
    padding: 8px 20px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    cursor: pointer;
}

.sub-btn:hover {
    background: #fff !important;
}

.section {
    margin-top: 40px;
    padding: 0 40px;
}

.section {
    margin-top: 40px;
    padding: 0 40px;
}

@media (max-width: 786px) {
    .section {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 0 20px;
    }
}

@media (max-width: 400px) {
    .section {
        padding: 0 15px;
    }
}

@media (max-width: 320px) {
    .section {
        padding: 0 10px;
    }
}

.slanted-heading {
    position: relative;
    display: inline-block;
    padding: 0 0.438rem;

    text-transform: uppercase;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
}

.slanted-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.5rem;

    width: 100%;
    height: 0.938rem;

    background-image: url("/assets/frontend/images/heading-lines.svg");
    background-size: 4px 4px;
    background-repeat: repeat;

    /* background: url('/assets/frontend/images/heading-lines.svg') repeat;
  background-size: contain; */

    z-index: -1;
}

/* LEFT CARDS */
.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-card .category {
    color: #da3437;
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: uppercase;
}

.news-card .title {
    font-weight: bold;
    font-size: 18px;
}

/* CENTER HERO */
.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 25px 40px;
    width: 75%;
    text-align: center;
}
/* Slanted pattern under hero overlay */
.hero-overlay::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: -16px; /* similar to Tailwind -bottom-4 */

    width: 95%;
    height: 16px;

    background: url("/assets/frontend/images/heading-lines.svg");
    background-size: 5px 5px;
}

/* Large screens (default already applied) */

/* Medium devices (tablets) */
@media (max-width: 992px) {
    .hero-overlay {
        padding: 20px 30px;
        width: 85%;
    }
}

/* Small devices (phones) */
@media (max-width: 576px) {
    .hero-overlay {
        padding: 15px 20px;
        width: 95%;
        bottom: -20px;
    }
}

.hero-tag {
    background: #da3437;
    color: #fff;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
}

/* TRENDING */
.trending-box {
    background: #fff;
}

.trending-header {
    background: #da3437;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    font-size: 18px;

    position: relative;
}

/* slanted line */
.trending-header::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: -10px;

    width: 95%;
    height: 12px;

    background: url("/assets/frontend/images/box-red-lines.svg") repeat;
    background-size: 5px 5px;
}
.daily-songs-wrapper {
    position: relative;
}

.daily-songs-wrapper::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: -1rem;

    width: 95%;
    height: 1rem;

    background: url("/assets/frontend/images/box-white-lines.svg") repeat;
    background-size: 5px 5px;
}

.trending-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.trending-number {
    font-size: 1.875rem;
    color: #c4c4c4;
    width: 40%;
    font-weight: 900;
    line-height: 1.2;
}

.trending-item img {
    width: 126px;
    height: 88px;
    object-fit: cover;
    margin-left: 10px;
}

@media (max-width: 992px) {
    .trending-item img {
        width: 331px;
        height: 188px;
        object-fit: cover;
        margin-left: 10px;
    }
}

@media (max-width: 550px) {
    .trending-item img {
        width: 235px;
        height: 132px;
        object-fit: cover;
        margin-left: 10px;
    }
}

@media (max-width: 450px) {
    .trending-item img {
        width: 200px;
        height: 100px;
        object-fit: cover;
        margin-left: 10px;
    }
}

@media (max-width: 385px) {
    .trending-item img {
        width: 130px;
        height: 76px;
        object-fit: cover;
        margin-left: 10px;
    }
}

.small-label {
    color: #da3437;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.33;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    color: #000000;
}

/* TOGGLE STYLE */
.toggle {
    background: #ddd;
    border-radius: 12px;
    padding: 4px;
}

.toggle .nav-link {
    border: none;
    color: #333;
    padding: 6px 15px;
    border-radius: 10px;
    font-weight: 500;
}

.toggle .nav-link.active {
    background: #333;
    color: #fff;
}

@media (max-width: 575.98px) {
    /* 1. Stack the header and subtitle vertically and center them */
    .section-header {
        text-align: center;
        gap: 15px;
        /* Adds space between text and toggle */
    }

    /* 2. Adjust the toggle container for mobile */
    .toggle {
        display: inline-flex;
        /* Keeps it from being full-width unless desired */
        align-self: center;
        /* Centers the pill container in the flex column */
        width: auto;
        padding: 4px;
        margin-top: 10px;
    }

    /* 3. Ensure the buttons share space equally or fit content */
    .toggle .nav-item {
        flex: 1;
        /* Makes "Songs" and "Albums" equal width on mobile */
    }

    .toggle .nav-link {
        width: 100%;
        text-align: center;
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* CARD */
.music-item {
    border-radius: 20px;
}

.music-card {
    border-radius: 20px;
    padding: 15px;
}

.music-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

/* .bg-white {
    background: #fff;
    border: 1px solid #f44336 !important;
} */
.music-row .music-item:nth-child(1) {
    background-color: #da3437cc;
}

.music-row .music-item:nth-child(2) {
    background-color: #da343780;
}

.music-row .music-item:nth-child(3) {
    background-color: #da34373d;
}

.music-row .music-item:nth-child(n + 4) {
    background: #fff;
    border: 1px solid #f44336 !important;
}

.music-card .song-title {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.42;
    margin-top: 10px;
    cursor: pointer;
}

.artist {
    font-size: 0.75rem;
    line-height: 1.33;
    color: #444;
    cursor: pointer;
}

.rating {
    margin-top: 8px;
    font-size: 0.75rem;
    line-height: 1.33;
    font-weight: 700;
    cursor: pointer;
}

.star {
    color: gold;
}

/* MOBILE SCROLL */
.music-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.music-row {
    display: flex;
    gap: 15px;
}

/* Each card width on mobile */
.music-item {
    min-width: 220px;
}

/* Hide scrollbar (optional clean look) */
.music-scroll::-webkit-scrollbar {
    display: none;
}

/* DESKTOP: revert back to grid */
@media (min-width: 768px) {
    .music-scroll {
        overflow: visible;
    }

    .music-row {
        display: flex;
        flex-wrap: wrap;
    }

    .music-item {
        min-width: 16.66%;
    }
}

.black-box {
    background: #000;
    color: #fff;
    padding: 5px;
    position: relative;
}

@media (max-width: 576px) {
    .black-box {
        background: #000;
        color: #fff;
        padding: 4px;
        position: relative;
    }
}

.black-box img {
    width: 176px;
    height: 176px;
    object-fit: cover;
}

@media (max-width: 1180px) {
    .black-box img {
        width: 90px;
        height: 90px;
        object-fit: cover;
    }
}

@media (max-width: 1080px) {
    .black-box img {
        width: 75px;
        height: 75px;
        object-fit: cover;
    }
}

@media (max-width: 1180px) {
    .black-box img {
        width: 176px;
        height: 176px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .black-box img {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }
}

.black-box h6 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.black-box p {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #9c9898;
}

.black-box p:hover {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #da3437;
    cursor: pointer;
}

/* TODAY badge */
.today-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    font-weight: 600;
}

/* DATE */
.date-text {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.65rem;
    font-weight: 300;
    font-family: Poppins, sans-serif;
    color: #9c9898;
}

/* TRENDING 1 */
.trending-box1 {
    background: #fff;
}

.trending-header1 {
    background: #da3437;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    font-size: 18px;
}

.trending-item1 {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.trending-content1 p {
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    cursor: pointer;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}

.trending-content1 p:hover {
    line-height: 1.5;
    color: #da3437;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

.trending-item1 img {
    width: 190px;
    height: 105px;
    object-fit: cover;
    margin-left: 10px;
}

@media (max-width: 576px) {
    .trending-item1 img {
        width: 140px;
        height: 78px;
        object-fit: cover;
        margin-left: 5px;
    }
}

.date-text1 {
    color: #364153;
    font-size: 0.65rem;
    font-weight: 300;
    font-family: Poppins, sans-serif;
    display: flex;
    justify-content: end;
}

.ptr {
    border-color: #000;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 20px 5px;
}

.end h5 {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    cursor: pointer;
}

.end img {
    width: 390px;
    height: 220px;
}

@media (max-width: 998px) {
    .end img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-left: 5px;
        text-align: center;
    }
}

.end h6 {
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    line-height: 1.55556;
    padding: 5px;
    cursor: pointer;
}

.news-list {
    list-style: none;
    padding-left: 0;
}

.news-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
    font-size: 1rem;
    /* same as Bootstrap small */
    line-height: 1.5;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.5rem;
    cursor: pointer;
    font-family: Poppins, sans-serif;
}

.news-list li:hover {
    color: #da3437;
}

.news-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: red;
    /* change color here */
    border-radius: 50%;
}

.news-list li:last-child {
    border-bottom: none;
}

footer a:hover {
    color: #da3437 !important;
    transition: 0.3s;
}

footer .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.buttn {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px;
    display: flex;
    justify-content: end;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    font-family: Poppins, sans-serif;
}

.breadcrumb-container {
    background-color: #ffffff;
    padding: 0px 1px;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 16px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb a {
    text-decoration: none;
    color: #000;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.detail-sec-1 h1 {
    font: rem !important;
    font-weight: 800;
    margin-top: 1.25rem;
    line-height: 1;
}

.detail-sec-1 a {
    color: #333;
    text-decoration-line: underline;
    font-weight: 700;
    font-family: Poppins, sans-serif;
}

.detail-sec-1 a:hover {
    color: #da3437;
    text-decoration-line: underline;
    font-weight: 700;
}

.detail-sec-1 span {
    color: #333;
    font-size: 0.75rem;
    line-height: 1.23;
    font-family: Poppins, sans-serif;
}

.custom-main-banner {
    position: relative;
    width: 100%;
    /* 765x430 ka ratio takreeban 1.77 banta hai (16:9) */
    aspect-ratio: 16 / 9; 
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
}

.bg-blur-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    opacity: 0.6;
    z-index: 1;
    transform: scale(1.1);
}

.main-content-img {
    position: relative;
    z-index: 2;
    width: 100%;       /* Wide images poori width lein gi */
    height: 100%;      /* Poori height lein gi */
    object-fit: cover; /* Shuru mein cover rakhein takay gaps na aayein */
}

/* Jab image ki height width se zyada ho (Portrait Image) */
/* Is logic ko handle karne ke liye "object-fit: contain" behtar hai agar aap 
   image ko katna nahi chahte. Agar 765x430 ko fit karna hai to niche wala use karein: */

.main-content-img {
    object-fit: cover; 
}

/* Agar aap chahte hain ke wide image fit ho jaye aur lambi image blur ho: */
@supports (aspect-ratio: 1) {
    .main-content-img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Ye 765x430 ko fit rakhega */
        background: transparent;
    }
}


.right-sidebar small {
    color: #333;
    font-size: 12px;
    line-height: 1.3333 !important;
    font-family: Poppins, sans-serif;
}

/* Sidebar Styling */
.sticky-social {
    position: sticky;
    top: 100px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background-color: #f8f9fa;
    border-color: #000;
    color: #000;
}

/* Google Widget Styling */
.google-source-card {
    max-width: 400px;
    background: #fff;
    font-size: 0.95rem;
}

.custom-checkbox {
    width: 25px;
    height: 25px;
    background-color: #0d6efd;
    cursor: pointer;
}

/* Typography & Underlines */
.lead-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #222;
}

.main-paragraph {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

/* Custom underline matching the image (darker red/brown style) */
.custom-underline {
    border-bottom: 2px solid #a31d1d;
    cursor: pointer;
    padding-bottom: 1px;
}

.custom-underline:hover {
    background-color: rgba(163, 29, 29, 0.05);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #f2f2f2;
    /* Light gray background from image */
    border-top: 2px solid #000;
    /* Black line at the top from image */
    margin: 2rem 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-txt h2 {
    font-size: 2.125rem;
    font-weight: 800;
    margin-top: 1.25rem;
    line-height: 1;
    color: #333;
}

.insta-wrapper {
    display: flex;
    justify-content: center;
}

.insta-wrapper .instagram-media {
    max-width: 550px !important;
    /* Twitter width match */
    width: 100% !important;
    min-width: 320px !important;
}

.lead-text p a {
    border-bottom: 2px solid #a31d1d;
    cursor: pointer;
    padding-bottom: 1px;
    text-decoration: none !important;
    color: inherit !important;
}

.lead-text p a:hover {
    background-color: rgba(163, 29, 29, 0.05);
    color: #a31d1d !important;
}

.category-box1 {
    background: #fff;
}

.category-item1 {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.category-content1 p {
    font-size: 28px;
    font-weight: 800;
    cursor: pointer;
    cursor: pointer;
    line-height: 1.33;
    font-family: "Poppins", sans-serif;
}

.category-content1 p:hover {
    line-height: 1.33;
    color: #da3437;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

.category-content1 span p {
    font-size: 18px;
    font-weight: 100 !important;
    padding: 0px !;
    cursor: pointer;
    cursor: pointer;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}

.category-content1 span p:hover {
    font-size: 18px;
    cursor: pointer;
    cursor: pointer;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}

.category-item1 img {
    width: 380px;
    height: 214px;
    object-fit: cover;
    margin-left: 10px;
}

@media (max-width: 576px) {
    .category-item1 img {
        width: 140px;
        height: 78px;
        object-fit: cover;
        margin-left: 5px;
    }
}

/* Top Black Section */
.artist-banner {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
}

.artist-banner h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 60px;
}

.artist-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.artist-letters a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    transition: 0.3s;
}

.artist-letters a:hover {
    color: #ff3c3c;
}

/* Cards Section */
.artist-section {
    padding: 60px 0;
}

.artist-card {
    background: #fff;
    overflow: hidden;
    margin-bottom: 30px;
}

.artist-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.artist-info {
    padding: 20px;
}

.artist-info h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.line-style {
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        #999,
        #999 2px,
        transparent 2px,
        transparent 4px
    );
}

.ad-box {
    background: #f2f2f2;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #d1d1d1;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .artist-banner h1 {
        font-size: 48px;
    }

    .artist-letters {
        gap: 16px;
    }

    .artist-letters a {
        font-size: 20px;
    }

    .artist-card img {
        height: 250px;
    }
}

.section-header {
    border-top: 2px solid #000;
    padding-top: 10px;
    margin-bottom: 30px;
}

.category-tag {
    color: #da3437;
    /* Muted Red */
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.article-title {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.43;
    color: #000;
    text-decoration: none;
    margin: 8px 0;
    display: block;
    font-family: "Poppins", sans-serif;
}

.article-date {
    font-style: italic;
    color: #777;
    font-size: 0.85rem;
}

/* Ensuring images are consistent aspect ratio */
.img-container {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f0f0f0;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-link:hover .article-title {
    color: #da3437;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.comment-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 0;
}

.comment-badge {
    background-color: #d9534f;
    /* Matches your red theme */
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
}

/* Avatar styling */
.avatar-placeholder {
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Styling the textarea */
.comment-textarea {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    resize: vertical;
    min-height: 120px;
    padding: 15px;
}

.comment-textarea:focus {
    box-shadow: none;
    border-color: #ccc;
}

/* Submit Button */
.btn-comment {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    padding: 8px 24px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-comment:hover {
    background-color: #e2e2e2;
}
@media (min-width: 992px) {
    .sticky-lg-top {
        top: 70px !important; /* thoda safe margin */
    }
}
/* Textured Heading */
.features-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    /* Creates the striped overlay effect */
}

.features-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 40px;
}

/* Tabs Styling */
.nav-tabs-custom {
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.tab-item {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    padding-bottom: 5px;
    cursor: pointer;
    text-decoration: none;
    color: #999;
}

.tab-item.active {
    color: #000;
    border-bottom: 3px solid #d9534f; /* Red Accent */
}

.tab-item:hover {
    color: #d9534f;
}

/* Article Layout */
.feature-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.original-tag {
    color: #d9534f;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.feature-headline {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 10px 0;
    color: #000;
    text-decoration: none;
    display: block;
}
.feature-headline:hover {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 10px 0;
    color: #d9534f;
    text-decoration: none;
    display: block;
}

.feature-excerpt {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.author-meta {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.author-name {
    color: #000;
}
.author-name:hover {
    color: #d9534f;
}
.time-ago {
    color: #999;
    margin-left: 10px;
    font-weight: normal;
}

/* Sidebar Placeholder */
.sidebar-placeholder {
    background-color: #f9f9f9;
    height: 100%;
    min-height: 300px;
}
.sticky-sidebar {
    position: sticky;
    top: 20px; /* distance from top when scrolling */
}
.ad-box {
    height: 800px;
}
.custom-pagination {
    font-size: 14px;
}

.custom-page-link {
    background: #eee;
    height: 40px;
    width: 100%;
    text-align: center;
    font-weight: 700;
    border: none;
    color: #333;
    transition: 0.2s ease;
}

@media (min-width: 768px) {
    .custom-page-link {
        background: transparent;
        height: auto;
        width: auto;
        padding: 6px 12px;
    }
}

.custom-page-link:hover {
    color: #ff3c3c;
}

.page-item .disabled {
    background: #eee;
    cursor: not-allowed;
}
.custom-page-link {
    background: #eee;
    height: 40px;
    width: 100%;
    font-weight: 700;
    border: none;
    color: #333;
}

@media (min-width: 768px) {
    .custom-page-link {
        background: transparent;
        height: auto;
        width: auto;
        padding: 6px 12px;
    }
}

.custom-page-link:hover {
    color: #ff3c3c;
}

.page-item .disabled {
    background: #ffffff;
    border: #ffffff;
    color: white;
}
.artist-card {
    overflow: visible;
}

.artist-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Info box styling */
.artist-info {
    bottom: -20px;
    right: 0;
    width: 90%;
    transition: all 0.3s ease;
    background-color: #ffffff;
    position: relative;
}
.artist-info::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: -1rem;

    width: 95%;
    height: 1rem;

    background: url("/assets/frontend/images/heading-lines.svg") repeat;
    background-size: 5px 5px;
}

/* Hide meta by default */
.artist-meta {
    display: none;
}

/* Hover effects */
.artist-card:hover .artist-info {
    background-color: #da3437; /* Bootstrap primary */
    color: #fff;
}

.artist-card:hover .artist-title {
    color: #fff;
}

.artist-card:hover .artist-meta {
    display: block;
}

.artist-card:hover a {
    color: #ffffff !important;
}

.daily-songs-wrapper::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: -1rem;

    width: 95%;
    height: 1rem;

    background: url("/assets/frontend/images/box-white-lines.svg") repeat;
    background-size: 5px 5px;
}
artist-header {
    padding-top: 110px;
    min-height: 475px;
}

/* .artist-title {
  font-size: 28px;
}

@media (min-width: 992px) {
  .artist-title {
    font-size: 44px;
  }
} */

.artist-bio dt,
.artist-bio dd {
    margin-bottom: 12px;
}

.artist-img-wrapper {
    max-width: 427px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-left: auto;
}

.artist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-link {
    color: #fff;
    text-decoration: none;
}

.back-link:hover {
    color: #da3437; /* accent color */
}

.social-icon svg {
    fill: white;
    transition: 0.3s;
}

.social-icon:hover svg {
    fill: #da3437; /* accent */
}
.profile-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Red Angle Background */
.red-bg-angle {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: #da3437;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.back-link {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.artist-name {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.info-row {
    margin-bottom: 1rem;
}

.info-label {
    font-weight: bold;
    width: 150px;
    display: inline-block;
}

.info-value {
    display: inline-block;
    vertical-align: top;
}

.social-icons i {
    font-size: 1.5rem;
    margin-right: 15px;
    cursor: pointer;
}

.artist-image {
    width: 100%;
    max-width: 450px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .red-bg-angle {
        width: 100%;
        clip-path: none;
        height: 40%;
        bottom: 0;
        top: auto;
    }
    .artist-name {
        font-size: 2.5rem;
    }
}
/* Parent Wrapper - Iske andar sab safe rahega */
.artist-profile-section {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
}

/* Stats Bar Styling */
.artist-profile-section .stats-nav {
    border-bottom: 1px solid #e0e0e0;
    gap: 25px;
}

.artist-profile-section .stat-item {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding-bottom: 12px;
    cursor: pointer;
    color: #666;
}

.artist-profile-section .stat-item.active {
    color: #000;
    border-bottom: 3px solid #000;
}

.artist-profile-section .count {
    font-size: 10px;
    color: #aaa;
    vertical-align: super;
    margin-left: 2px;
}

/* Main Content Headings */
.artist-profile-section .bio-block {
    margin-bottom: 45px;
}

.artist-profile-section .bio-heading {
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.artist-profile-section .bio-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #da3437; /* Red underline like image */
    padding-bottom: 2px;
    font-size: 14px;
    margin-top: 10px;
}

/* Sidebar Styling */

/* GROUP WRAPPER */
.artist-profile-section .sidebar-group {
    position: relative;
    padding-left: 5px;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}

/* TITLE (DISCOGRAPHY / FACTS) */
.artist-profile-section .sidebar-group p {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* REMOVE CKEDITOR EXTRA SPACE */
.artist-profile-section .sidebar-group p:empty {
    display: none;
}

/* LIST RESET */
.artist-profile-section .sidebar-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEM STYLE */
.artist-profile-section .sidebar-group ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* RED DASH */
.artist-profile-section .sidebar-group ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 3px;
    background-color: #da3437;
}

/* Mobile Responsive Fix */
@media (max-width: 991px) {
    .artist-profile-section .sidebar-col {
        border-left: none;
        /* border-top: 1px solid #eee; */
        margin-top: 40px;
        padding-top: 40px;
    }
}
/* OUTER BOX */
.chart-wrapper {
  border: 2px solid #000;
  margin: 40px;
  background: #ffffff;
}

/* TOP LINE WITH TITLE */
.top-section {
  position: relative;
  margin-bottom: 30px;
}


.main-title {

  display: inline-block;
  background: #ffffff;
  padding: 0 20px;
  font-size: 60px;
  font-weight: 900;
 
}

/* STRIPED LINE */
.main-title::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: -1rem;

    width: 95%;
    height: 1rem;

    background: url("/assets/frontend/images/heading-lines.svg") repeat;
    background-size: 5px 5px;
}

/* DATE */
.date-row {
  font-size: 18px;
}

.date-row .arrow {
  margin-right: 10px;
}

/* SONG CARD */
.song-card {
  background: #F7F8FE;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.song-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.arrow-icon {
  font-size: 20px;
}

.song-rank {
  font-size: 32px;
  font-weight: bold;
}

.img-wrap {
  position: relative;
}

.img-wrap img {
  width: 140px;
  height: 140px;
  object-fit: cover;
}

/* STRIPED UNDER IMAGE */
.img-wrap::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: -1rem;

    width: 95%;
    height: 1rem;

    background: url("/assets/frontend/images/heading-lines.svg") repeat;
    background-size: 5px 5px;
}

.top-100 .song-title {
  font-size: 24px;
  font-weight: 700;
      font-family: Poppins, sans-serif;
      color: #333;
}
.top-100 .song-title:hover {
  font-size: 24px;
  font-weight: 700;
  color: #da3437;
}

.song-artist {
  color: #555;
}
.song-artist:hover {
 color: #da3437;

}

.weeks {
  font-size: 16px;
}
/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media (max-width: 768px) {
    .chart-wrapper {
  border: 0px solid #000;
  margin: 5px;
  background: #ffffff;
}

  .main-title {
    font-size: 32px;
  }

  .top-section::before {
    width: 100%;
    left: 0;
  }

  .song-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .song-left {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .song-rank {
    font-size: 22px;
  }

  .arrow-icon {
    font-size: 16px;
  }

  .img-wrap img {
    width: 80px;
    height: 80px;
  }

  .song-title {
    font-size: 18px;
  }

  .song-artist {
    font-size: 14px;
  }

  .weeks {
    align-self: flex-end;
    font-size: 14px;
  }

  .date-row {
    font-size: 14px;
  }
}