/* Prism Apex 2026 – Ultimate Next-Gen Light CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap');

:root {
    --bg-base: #f0f4f8;
    --bg-card: #ffffff;
    --card-hover: #eef2ff;
    --primary-indigo: #4f46e5;
    --primary-cyan: #06b6d4;
    --accent-pink: #f43f5e;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --radius-xl: 20px;
    --radius-pill: 9999px;
    --shadow-subtle: 0 10px 30px -5px rgba(79, 70, 229, 0.06);
    --shadow-hover: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body, html {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* === TOP MAIN HEADER === */
.myjatti {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #06b6d4 100%);
    padding: 32px 20px;
    border-bottom: 4px solid #3730a3;
    color: #ffffff;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 15px 35px -10px rgba(79, 70, 229, 0.35);
    position: relative;
    overflow: hidden;
}

.myjatti::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.myjatti::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

/* === ALL HEADINGS (H1 to H6) === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
}

h1, h2 {
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 700;
    margin: 22px 16px 0 16px;
    color: var(--primary-indigo);
    border-bottom: 1px solid var(--border-light);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

h1::before, h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary-indigo), var(--primary-cyan));
    border-radius: 4px;
}

h3 {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    margin: 18px 16px 0 16px;
    color: var(--primary-indigo);
    border-bottom: 1px solid var(--border-light);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

h3::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 16px;
    background: linear-gradient(180deg, var(--primary-indigo), var(--primary-cyan));
    border-radius: 4px;
}

h4 {
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    margin: 14px 16px 0 16px;
    color: var(--text-main);
}

h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 12px 16px 6px 16px;
    color: var(--primary-indigo);
    padding: 10px 14px;
}

h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin: 10px 16px 4px 16px;
    color: var(--text-muted);
    padding: 8px 12px;
}

/* === CONTENT BLOCKS === */
.content-block, .manzda, .atext {
    padding: 24px;
    font-size: 14.5px;
    color: var(--text-muted);
    background: var(--bg-card);
    margin: 0 16px 14px 16px;
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: var(--shadow-subtle);
}

.content-block p, .manzda p {
    margin-bottom: 10px;
}

/* === GLOBAL LINKS === */
a, a:link, a:active, a:visited, a:hover {
    text-decoration: none !important;
}

/* === SONG LIST CARDS (.punjabilist) === */
.punjabilist {
    display: block;
    background-color: var(--bg-card);
    margin: 0 16px 10px 16px;
    padding: 18px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.punjabilist:hover, .punjabilist:active {
    background-color: var(--card-hover);
    border-color: var(--primary-indigo);
    color: var(--primary-indigo) !important;
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

/* === CATEGORY & UPLOAD CARDS (.djpunjablist) === */
.djpunjablist {
    display: block;
    background-color: var(--bg-card);
    margin: 0 16px 12px 16px;
    padding: 18px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    color: var(--text-main) !important;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.djpunjablist:hover, .djpunjablist:active {
    background-color: var(--card-hover);
    border-color: var(--primary-indigo);
    color: var(--primary-indigo) !important;
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

/* === SEARCH BOX === */
.search-box {
    max-width: 100%;
    margin: 26px 16px;
    padding: 0;
    background: transparent;
    border: none;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-pill);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
    transition: all 0.3s ease;
}

.search-form:focus-within {
    border-color: var(--primary-indigo);
    box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.15);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 28px;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: transparent;
    color: var(--text-main);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-button {
    border: none;
    background: linear-gradient(135deg, var(--primary-indigo), var(--primary-cyan));
    color: #ffffff;
    padding: 18px 34px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.search-button:hover, .search-button:active {
    opacity: 0.9;
}

/* === EXACT 180x180 ALBUM COVER & BALANCED META SECTION === */
.album-flex-box {
    background: var(--bg-card);
    margin: 0 16px 16px 16px;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-subtle);
    display: flex;
    align-items: center;
    gap: 20px;
}

.album-cover-box {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
}

.album-info-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

/* === CLEAN CATPILAR STYLING === */
.catpilar {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.45;
}
.catpilar b {
    color: var(--text-main);
    font-weight: 600;
}
.catpilar a, .catpilar a:link, .catpilar a:visited {
    color: var(--text-main) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.catpilar a:hover, .catpilar a:active {
    color: var(--primary-indigo) !important;
    text-decoration: none !important;
}

/* === BREADCRUMBS & DETAILS === */
.breadcrumbs {
    background: var(--bg-card);
    margin: 16px;
    padding: 14px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    box-shadow: var(--shadow-subtle);
    font-size: 14px;
}
.breadcrumbs li + li::before {
    content: "/";
    padding: 0 6px;
    color: var(--text-muted);
}
.breadcrumbs a {
    color: var(--primary-indigo);
    font-weight: 600;
}

.djpunjab5, .djpunjab6, .djpunjab13 {
    margin: 20px 16px 8px 16px;
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-indigo);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-subtle);
    display: flex;
    align-items: center;
    gap: 10px;
}

.djpunjab5::before, .djpunjab6::before, .djpunjab13::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 16px;
    background: linear-gradient(180deg, var(--primary-indigo), var(--primary-cyan));
    border-radius: 4px;
}

/* === CATBIU LINKS STYLING === */
.catbiu {
    background: var(--bg-card);
    margin: 0 16px 14px 16px;
    padding: 16px 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-subtle);
    text-align: left;
    font-weight: 600;
}
.catbiu a, .catbiu a:link, .catbiu a:visited {
    color: var(--text-main) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.catbiu a:hover, .catbiu a:active {
    color: var(--primary-indigo) !important;
    text-decoration: none !important;
}

/* === LEFT ALIGNED SHARE SECTION === */
.share {
    background: var(--bg-card);
    margin: 0 16px 16px 16px;
    padding: 16px 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-subtle);
    text-align: left;
    display: flex;
    justify-content: flex-start;
    gap: 14px;
}
.shareicon {
    transition: transform 0.2s ease;
}
.shareicon:hover {
    transform: scale(1.1);
}
.wa-color { color: #25d366; }
.fb-color { color: #1877f2; }
.x-color { color: #000000; }
.pin-color { color: #e60023; }
.tg-color { color: #0088cc; }
.sms-color { color: #4f46e5; }

/* === PREMIUM REDESIGNED FOOTER & NAVIGATION LINKS === */
footer {
    background-color: var(--bg-card);
    margin: 24px 16px 14px 16px;
    padding: 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-subtle);
    text-align: center;
}

footer nav a {
    color: var(--text-main) !important;
    font-weight: 600;
    text-decoration: none !important;
    margin: 0 8px;
    transition: color 0.2s ease;
}

footer nav a:hover {
    color: var(--primary-indigo) !important;
}

/* === ORIGINAL BACK TO HOME STYLE === */
.back-home-wrapper {
    margin: 0 16px 14px 16px;
    padding: 10px 16px;
    text-align: left;
}

.back-home-wrapper a {
    font-size: 14px;
    color: #375691 !important;
    font-weight: 600;
    text-decoration: none !important;
    text-transform: capitalize;
    transition: color 0.2s ease;
}

.back-home-wrapper a:hover {
    text-decoration: underline !important;
}

/* === FOOTER LINKS CSS === */
.footer-links {
    background-color: var(--bg-card);
    margin: 36px 16px 12px 16px;
    padding: 22px 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-subtle);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-indigo);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.footer-links span {
    color: var(--border-light);
    font-weight: 400;
    user-select: none;
}

/* === COPYRIGHT FOOTER === */
.myjattifoot {
    background-color: #0f172a;
    padding: 22px;
    border-bottom: 4px solid var(--accent-pink);
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 16px 30px 16px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: var(--shadow-subtle);
}

/* === MOBILE & TABLET RESPONSIVE OPTIMIZATIONS === */
@media (max-width: 768px) {
    body, html { font-size: 14px; }
    .myjatti { font-size: 22px; padding: 24px; letter-spacing: 1.2px; }
    h1, h2 { margin: 16px 12px 0 12px; font-size: 17px; padding: 16px 18px; }
    .content-block, .manzda, .atext { padding: 18px; }
    .content-block, .manzda, .atext, .punjabilist, .djpunjablist, .search-box, .breadcrumbs, .catbiu, .share, footer, .back-home-wrapper, .footer-links, .myjattifoot, .album-flex-box, .djpunjab5, .djpunjab6, .djpunjab13 { margin-left: 12px; margin-right: 12px; }
    .punjabilist, .djpunjablist { padding: 16px 18px; font-size: 14.5px; }
    .search-input { padding: 15px 20px; font-size: 14.5px; }
    .search-button { padding: 15px 24px; font-size: 14.5px; }
    
    .album-flex-box { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 16px; 
        padding: 18px; 
    }
    .album-cover-box { 
        width: 160px; 
        height: 160px; 
    }
    .catpilar {
        font-size: 13px;
    }
    .share {
        justify-content: center;
        text-align: center;
    }
}
