* { 
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box; 
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, 
em, img, strong, center, ol, ul, li, form, label, legend, table, 
tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0; 
    outline: 0; 
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    -webkit-appearance: none; 
    -moz-appearance: none;
}

article, footer, header, hgroup, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

:focus {
    outline: 0;
}

a,
input {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/**
 * Global Elements
 */

body {
    line-height: 1.5rem;
}

body, 
input,
button {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    background: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

img { 
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

input[type=text] {
    padding: .75rem 1.15rem;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
input[type=text]:focus {
    border-color: #00aced;
    box-shadow: 0 0 5px #a9e4f9;
}

strong {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/**
 * Layouts
 */

.container {
    max-width: 920px;
    width: 94%;
    margin: 0 auto;
}


main {
    padding: 1.5rem 0;
}

#content {
    padding-right: 1.5rem;
}

#sidebar {
    width: 240px;
}

/**
 * Flex
 */

.d-flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-fill {
    flex: 1;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}

/**
 * Header
 */

/* Clean Professional Site Header */
#site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
    width: 100%;
    position: relative;
    z-index: 99;
}

#site-header .header-container {
    max-width: 1140px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Logo Bar */
.header-logo-bar {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.logo-name {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.site-logo:hover .logo-name {
    color: #00aaff;
}

/* Mobile Toggle - Strictly Hidden on Desktop */
.mobile-nav-toggle {
    display: none !important;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    outline: none;
}

.mobile-nav-toggle:hover {
    background: #e2e8f0;
}

/* Navigation List */
.site-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.85rem;
}

.nav-item a {
    font-size: 0.88rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-item a:hover {
    color: #00aaff;
    background: #f0f9ff;
}

/* Social Buttons */
.site-social {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-fb { background: #1877f2; }
.social-tw { background: #1da1f2; }
.social-pt { background: #e60023; }
.social-yt { background: #ff0000; }

/* Responsive Header (< 768px Mobile Only) */
@media (max-width: 768px) {
    #site-header .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .header-logo-bar {
        width: 100%;
        justify-content: space-between;
    }

    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .site-nav,
    .site-social {
        display: none;
    }

    #site-header.nav-open .site-nav {
        display: block;
        margin-top: 0.85rem;
        padding-top: 0.75rem;
        border-top: 1px solid #f1f5f9;
    }

    #site-header.nav-open .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    #site-header.nav-open .nav-item a {
        font-size: 0.95rem;
        padding: 6px 0;
        width: 100%;
        display: block;
    }

    #site-header.nav-open .site-social {
        display: flex;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #f1f5f9;
        justify-content: flex-start;
    }
} 

/**
 * Page Title
 */

.page-title {
    padding-bottom: .9rem;
    margin: -.1rem 0 1.5rem 0;
    line-height: 1.8rem;
    font-size: 1.3rem;
    border-bottom: 1px solid #e9e9e9;
}

/**
 * Search Form
 */

#search-form {
    margin-bottom: 1.5rem;
    text-align: center;
}
#search-form h3 {
    margin: -.2rem 0 .5rem 0;
    line-height: 1.7rem;
    font-size: 1.2rem;
    font-weight: 400;
}
#search-form div {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
#search-form input {
    width: 100%;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
    text-align: center;
}
#search-form button {
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: 0;
    padding: 0 12px;
    height: 32px;
    margin-top: -16px;
    background: none;
    color: #ccc;
    border: none;
}
#search-form button:hover,
#search-form button:active {
    color: #000;
}

/**
 * Tracks
 */

.section-title {
    margin: .25rem 0 1.5rem 0;
    line-height: .5rem;
    font-size: 1.2rem;
    font-weight: 500;
    background: #eee;
}
.section-title span {
    display: inline-block;
    margin: 0 1rem;
    padding: 0 1rem;
    background: #fff;
}
.section-title span i {
    font-size: 1rem;
    margin-right: .5rem;
}

.section-tracks .item {
    position: relative;
    margin-bottom: 1rem;
}
.section-tracks .item:last-child {
    margin-bottom: 0;
}
.section-tracks .item .image {
    width: 56px;
    height: 56px;
}
.section-tracks .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.section-tracks .item .detail {
    padding: 0 1rem;
}
.section-tracks .item .detail a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}
.section-tracks .item .detail h2 {
    word-wrap: break-word;
    font-size: 1rem;
    font-weight: 500;
}
.section-tracks .item:hover > .detail h2 a {
    color: #00aced;
}
.section-tracks .item .detail p {
    font-size: 0.9rem;
    color: #888;
}
.section-tracks .item .detail p a {
    position: relative;
    z-index: 5;
    color: #888;
}
.section-tracks .item .detail p a:hover {
    color: #000;
}
.section-tracks .item .detail p span {
    padding-right: .75rem;
}
.section-tracks .item .detail p span i {
    margin-right: 5px;
    color: #bbb;
}
.section-tracks .item .rank {
    font-size: 1.2rem;
    color: #ddd;
}
.section-tracks .item .download-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
    background: #ccc;
    color: #fff;
    -webkit-border-radius: 48px;
    border-radius: 48px;
}
.section-tracks .item:hover > .download-btn {
    background: #00aced;
}

/**
 * Nav
 */

.nav {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9e9e9;
}
.nav a {
    padding: .5rem 1.2rem;
    margin: 0 .2rem;
    background: #eee;
    -webkit-border-radius: 100px;
    border-radius: 100px;
}
.nav a:hover {
    background: #00aced;
    color: #fff;
}
.nav a i {
    position: relative;
    top: -1px;
    font-size: .7rem;
}
.nav a.prev i {
    margin-right: 10px;
}
.nav a.next i {
    margin-left: 10px;
}

/**
 * Single
 */

.single .image {
    margin-bottom: 1.5rem;
}

.single .player {
    margin-bottom: 1.25rem;
}
.single .player * {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.single .details {
    color: #777;
}
.single .details p {
    margin-bottom: 7px;
}
.single .details p:last-child {
    margin-bottom: 0;
}
.single .details p i {
    margin-right: 8px;
    color: #aaa;
}

.single .content {
    margin-top: 1rem;
}
.single .content > * {
    margin-bottom: 1rem;
}
.single .content > *:last-child {
    margin-bottom: 0;
}
.single .content h1,
.single .content h2 { 
    line-height: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}
.single .content h3 { 
    line-height: 1.7rem;
    font-size: 1.2rem;
    font-weight: 700;
}
.single .content h4,
.single .content h5, 
.single .content h6 { 
    font-size: 1rem;
    font-weight: 700;
}

/**
 * Sidebar
 */

#sidebar .widget {
    margin-bottom: 1.5rem;
}
#sidebar .widget:last-child {
    position: sticky;
    top: 1.5rem;
    margin-bottom: 0;
}

#sidebar .widget-terms li {
    margin-bottom: .5rem;
}
#sidebar .widget-terms li:last-child {
    margin-bottom: 0;
}
#sidebar .widget-terms li a i {
    font-size: .9rem;
}
#sidebar .widget-terms li a span {
    padding-left: 1rem;
}
#sidebar .widget-terms li a {
    color: #888;
}
#sidebar .widget-terms li a:hover {
    color: #000;
}

/**
 * Footer
 */

#footer {
    padding: 1.35rem 0;
    text-align: center;
    border-top: 1px solid #e9e9e9;
}

#footer ul.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    margin: -.25rem 0 .15rem 0;
}
#footer ul.menu li {
    padding: .25rem .5rem;
}

#footer .credit {
    font-size: 0.9rem;
    color: #999;
}

.container {
    max-width: 920px;
    width: 94%;
    margin: 0 auto;
}

main {
    padding: 1.5rem 0;
}

#content {
    padding-right: 1.5rem;
}

#sidebar {
    width: 240px;
}

/**
 * Flex
 */

.d-flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-fill {
    flex: 1;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}

/**
 * Responsive & Mobile Polish
 */

.song-details-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

img, iframe {
    max-width: 100%;
}

/**
 * Responsive
 */

@media (max-width: 848px) {
    #header {
        padding-left: 0;
        padding-right: 0;
    }

    .container {    
        width: 100%; 
        padding: 0 1rem;
    }

    .main-content {
        flex-direction: column;
    }

    #content {
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    #sidebar {
        width: 100%;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
    }

    #search-form h3 {
        font-size: 1.1rem;
    }

    #search-form input[type="text"] {
        font-size: 1rem;
        padding: 10px 14px;
    }

    .section-tracks .item {
        padding: 10px 0;
    }

    .section-tracks .item .detail h2 {
        font-size: 0.95rem;
    }
}

@media (max-width: 548px) {
    .container {    
        width: 100%; 
        padding: 0 0.85rem;
    }
}

@media (max-width: 420px) {
    .section-tracks .item .image {
        width: 42px;
        height: 42px;
    }

    .section-tracks .item .detail h2,
    .section-tracks .item .detail p,
    .widget ul,
    .single .details {
        line-height: 1.3rem;
        font-size: 88%;
    }
}

.meta-desc {
    margin: -.1rem 0 1.5rem 0;
    line-height: 1.8rem;
    text-align: justify;
}