:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --bg-main: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius: 12px;
}

body {
    color: var(--text-main);
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    background: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

audio {
    width: 100%;
    border-radius: 30px;
    outline: none;
    margin: 10px 0;
}

audio::-internal-media-controls-download-button {
    display: none;
}

.tophead {
    background: #0f172a;
    padding: 14px 20px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tophead a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.tophead img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.2s ease;
}

.tophead img:hover {
    transform: scale(1.03);
}

.searchwrap {
    width: 92%;
    max-width: 600px;
    margin: 14px auto;
}

.searchbar {
    width: 100%;
    display: flex;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    overflow: hidden;
}

.searchTerm {
    width: 100%;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: var(--text-main);
}

.searchButton {
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jattsearch {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 22 22' fill='white' xmlns='http://www.w3.org/2000/svg'><path d='M18.677 19.607l-5.715-5.716a6 6 0 0 1-7.719-9.133a6 6 0 0 1 9.134 7.718l5.715 5.716l-1.414 1.414l-.001.001zM9.485 5a4 4 0 1 0 2.917 1.264l.605.6l-.682-.68l-.012-.012A3.972 3.972 0 0 0 9.485 5z'/></svg>");
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

ol.breadcrumbs {
    list-style-type: none;
    margin: 12px 16px;
    padding: 8px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
}

ol.breadcrumbs li {
    margin-right: 5px;
    color: var(--text-muted);
}

ol.breadcrumbs li:after {
    content: ' / ';
    color: var(--text-muted);
    margin-left: 5px;
}

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

ol.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

h1 {
    text-align: left;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #fff;
    margin: 12px 16px;
    font-size: 16px;
    padding: 12px 16px;
    font-weight: 700;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

h2 {
    text-align: left;
    padding: 12px 16px;
    background: #eef2ff;
    border-left: 4px solid var(--primary);
    font-weight: 600;
    color: var(--primary);
    margin: 16px 16px 8px 16px;
    font-size: 14px;
    border-radius: 0 8px 8px 0;
}

h3, h4, h5, h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin: 12px 16px;
}

.section-title {
    text-align: left;
    padding: 12px 16px;
    background: #eef2ff;
    border-left: 4px solid var(--primary);
    font-weight: 600;
    color: var(--primary);
    margin: 16px 16px 8px 16px;
    font-size: 14px;
    border-radius: 0 8px 8px 0;
}
.info-box {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    align-items: flex-start;
    background: var(--card-bg);
    margin: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.detail-cover {
    width: 205px;
    height: 205px;
    object-fit: cover;
    flex: 0 0 205px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info {
    line-height: 1.5;
    flex: 1;
}

.info div {
    border-bottom: 1px solid #f1f1f1;
    padding: 2px 4px;
    font-size: 13.5px;
    color: var(--text-muted);
}

.info div:last-child {
    border-bottom: none;
}

.info div b {
    color: var(--text-main);
}

.red { color: #e01d22; }
.green { color: #168c00; }
.artist-link { color: var(--primary); font-weight: 600; text-decoration: none; }
.artist-link:hover { text-decoration: none; }

.description {
    padding: 14px 16px;
    background: var(--card-bg);
    font-size: 14px;
    color: var(--text-muted);
    margin: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.audio-player-box {
    margin: 0 16px;
    background: #fff;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.top-artist-box span {
    color: var(--primary);
    font-weight: 600;
}

.song-tags {
    text-align: left;
}

.home-link-wrap {
    text-align: left;
    margin: 16px;
}

.home-link-wrap a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

a.riskyjatt {
    background: var(--card-bg);
    margin: 6px 16px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-main);
    display: block;
    transition: all 0.2s ease;
}
a.riskyjatt:hover {
    background: #f1f5f9;
    border-color: var(--primary);
    color: var(--text-main);
}

.cut_r {
    display: block;
    margin: 12px 16px;
    padding: 20px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: left;
}

.cut_r p {
    margin: 10px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.cut_r label {
    font-weight: 600;
    color: var(--text-main);
    margin-right: 8px;
}

.cut_r input[type="text"], .cut_r select {
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    background: var(--bg-main);
    color: var(--text-main);
    outline: none;
}

.cut_r .btn-center-wrap {
    text-align: left;
    width: 100%;
    margin-top: 15px;
}

.cut_r .btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 28px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
    transition: background 0.2s;
}

.cut_r .btn:hover {
    background: var(--primary-hover);
}

.icon-bar {
    margin: 16px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.icon-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 16px;
    border-radius: 50%;
}

.facebook { background: #1877f2; }
.twitter { background: #000000; }
.qrcode { background: #334155; }
.whatsapp { background: #25d366; }
.envelope { background: #64748b; }
.email { background: #ea4335; }

.footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 24px 16px;
    font-size: 13px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.copyright {
    text-align: center;
    background: #090d16;
    color: #64748b;
    font-size: 12px;
    padding: 12px;
}

.ad-box {
    text-align: left;
    margin: 16px 0;
}

@media(max-width: 650px){
    .info-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 14px;
    }
    .detail-cover {
        width: 175px;
        height: 175px;
        flex-basis: auto;
        margin: 0 auto;
    }
    .info {
        width: 100%;
        text-align: center;
    }
    .info div {
        text-align: center;
    }
    .icon-bar {
        justify-content: center;
        text-align: center;
    }
}