/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif, "Helvetica Neue", Arial;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

main {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 15px;
}

/* ==========================================================================
   TOPBAR & HEADINGS (As seen in Screenshot 1000074010.jpg)
   ========================================================================== */
/* Topbar Blue Bar */
.topbar {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #ffffff;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.15);
}

/* Header (Aapke hidden template ke liye alignment) */
.header {
    display: none; /* Agar desktop par chaiye to remove karein, screenshot me topbar use ho rha h */
}
.logo {
    display: none;
}

/* Section Headings (Purple Gradient) */
h1, h2, .heading {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

/* ==========================================================================
   🔥 TRACKS & ALBUM LISTS (Perfect Match with Screenshot)
   ========================================================================== */
/* Container rules - layout stays single column for list view */
.songs-grid, .albums-grid {
    display: block;
    width: 100%;
}

/* Main Row styling matching 1000074010.jpg */
a.mrj{
    display:block;
    text-decoration:none;
    color:#333;
    background:#fff;
    margin-bottom:8px;
    padding:12px 15px;
    border-radius:10px;
    border-left:4px solid #667eea;
    transition:all .3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.mrj:hover{
    transform:translateX(6px);
    background:#667eea;
    color:#fff;
    border-left-color:#ff416c;
}

.mrj:hover font{
    color:#fff !important;
}

/* Tracks Inner Container text format */
.tracks {
    font-size: 15px;
    color: #555555; /* Soft gray color as seen in image */
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Artist green text mapping inside tracks */
.updatear {
    color: #2e7d32; /* Rich elegant green color */
    font-weight: 500;
}

/* Hover Effects */
a.mrj:hover {
    transform: translateX(5px);
    background: #667eea;
}

a.mrj:hover .tracks,
a.mrj:hover .updatear {
    color: #ffffff !important; /* Full row text turns white on hover */
}

/* ==========================================================================
   ALBUM META BLOCKS & BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
    padding: 6px;
    font-size: 13px;
}

ol.breadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

ol.breadcrumbs li a {
    color: #667eea;
}

ol.breadcrumbs li::after {
    content: " »";
    color: #333;
    margin-left: 5px;
}

ol.breadcrumbs li.last::after {
    content: "";
}

/* Info element container inside single pages */
.fmabout {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.updateitems {
    font-size: 13px;
    padding: 8px 5px;
    border-bottom: 1px dashed #e2e8f0;
    color: #444;
}

.updateitems:last-child {
    border-bottom: none;
}

img.albumcover {
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ==========================================================================
   FOOTER & PAGINATION
   ========================================================================== */
.down {
    background: #667eea;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.sectionmusic div {
    font-size: 0.8rem;
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 12px;
    text-align: center;
    margin: 6px 0;
    border-radius: 8px;
}

.sectionmusic a {
    color: #ffffff !important;
    font-size: 14px;
}

.sectionmusic a:hover {
    color: #38bdf8 !important;
}

/* ==========================================================================
   RESPONSIVE FIXES
   ========================================================================== */
@media(max-width: 600px) {
    .topbar {
        font-size: 22px;
        padding: 15px;
    }
    h1, h2, .heading {
        font-size: 16px;
    }
    a.mrj {
        padding: 12px 15px;
    }
    .tracks {
        font-size: 14px;
    }
}
