* { 
    box-sizing: border-box; 
}

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

html, body, div, span, 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%;
    background: transparent;
    box-sizing: border-box;
}

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 {
    transition: background-color 0.15s ease, color 0.15s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/**
 * 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;
}

/* Prevent FOUT and FOIT */
.hp-hero-title,
.page-title,
#search-form h2,
.hp-card-title,
.hp-topic-text {
    font-display: swap;
}

strong {
    font-weight: 700;
}

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

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

input[type=text] {
    padding: .75rem 1.15rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

input[type=text]:focus {
    border-color: #00aced;
    box-shadow: 0 0 5px #a9e4f9;
}

.editorial-highlights-section img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #f1f5f9;
}

/**
 * Layouts
 */

.container {
    width: 960px;
    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
 */

#header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

#header .container {
    justify-content: space-between;
}

#header .left .name {
    letter-spacing: -.05rem;
    line-height: 2.25rem;
    font-size: 2rem;
}
#header .left .name a:hover {
    color: #0eb1ed;
}
#header .left .logo img {
	width: auto;
	height: 36px;
	object-fit: cover;
}
#header .left .toggle-menu {
    display: none;
}

#header nav ul {
    display: flex;
    flex-direction: row;
    margin: 0 -.5rem;
}
#header nav ul li {
    position: relative;
}
#header nav ul li a {
    position: relative;
    padding: .5rem;
    color: #666;
}
#header nav ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: -.5rem;
    width: 180px;
    margin: 5px 0 0 0;
    padding: .5rem 0;
    flex-direction: column;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
#header nav ul li ul li a {
    display: block;
    padding: .15rem 1rem;
}
#header nav ul li ul li ul {
    left: auto;
    right: 100%;
    top: 0;
    margin: -.5rem 1rem 0 0;
}
#header nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}
#header nav ul li:hover > a {
    color: #000;
}
#header nav ul .current-menu-item > a,
#header nav ul .current-menu-ancestor > a {
    font-weight: 700;
    color: #000;
}
#header nav ul .menu-item-has-children > a:after,
#header nav ul li ul .menu-item-has-children > a:before {
    display: inline-block;
    margin-left: 5px;
    text-rendering: auto;
    font-style: normal;
    font-variant: normal;
    font-family: "Font Awesome 5 Pro"; 
    font-weight: 900; 
    font-size: 11px;
    content: "\f078";
    -webkit-font-smoothing: antialiased;
}
#header nav ul li ul .menu-item-has-children > a:after {
    display: none;
}
#header nav ul li ul .menu-item-has-children > a:before {
    position: relative;
    top: -1px;
    margin: 0 5px 0 0;
    content: "\f053";
}

#header .social {
    margin: -2.5px;
}
#header .social a {
    width: 32px;
    height: 32px;
    margin: 2.5px;
    color: #fff;
    border-radius: 32px;
}
#header .social a.fb {
    background: #3b5998;
}
#header .social a.tw {
    background: #00aced;
}
#header .social a.pt {
    background: #cb2027;
}
#header .social a.yt {
    background: #bb0000;
}

/* Pure CSS Mobile Header */
@media (max-width: 848px) {
    #header .container {
        flex-direction: column;
    }
    #header nav,
    #header .social {
        display: none;
    }
    #header .left {
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    #header .left .name {
        font-size: 1.35rem !important;
        line-height: 1.8rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 75%;
    }
    #header.toggled .left {
        padding-bottom: 1.25rem;
        border-bottom: 1px solid #eee;
    }
    #header.toggled nav,
    #header.toggled .social,
    #header .left .toggle-menu {
        display: flex;
    }
    #header nav {
        padding: 1.15rem 0;
        width: 100%;
    }
    #header nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
    } 
}

/**
 * Page Title
 */

.page-title {
    padding-bottom: .9rem;
    margin: -.1rem 0 1.5rem 0;
    line-height: 1.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 1px solid #e9e9e9;
    min-height: 50px;
    display: flex;
    align-items: center;
}

/**
 * Search Form
 */

#search-form {
    margin-bottom: 1.5rem;
    text-align: center;
}
#search-form h1 {
    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;
}

/**
 * Ad Slots - REMOVED for performance optimization
 */



/**
 * 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;
    min-height: 70px;
    display: flex;
    align-items: flex-start;
}
.section-tracks .item:last-child {
    margin-bottom: 0;
}
.section-tracks .item .image {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: #e5e7eb;
}
.section-tracks .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.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.search-meta {
    gap: 12px;
    margin-top: 5px;
    color: #777;
    font-size: 0.85rem;
}
.section-tracks .item .detail p.search-meta i {
    color: #00aced;
    margin-right: 3px;
}
.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;
    border-radius: 48px;
}
.section-tracks .item .download-btn.download-btn--accent {
    background: #00aced;
}
.section-tracks .item .download-btn.download-btn--accent i {
    color: #fff;
}
.section-tracks .item:hover > .download-btn {
    background: #00aced;
    transition: all 0.15s ease;
}

.meta-desc {
    text-align: justify;
    margin-bottom: 30px;
    content-visibility: auto;
    contain-intrinsic-size: 800px 600px;
}
.meta-desc--collapsed {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    background: #fff;
}
.meta-desc--collapsed summary {
    cursor: pointer;
    font-weight: 700;
    color: #0284c7;
    list-style: none;
}
.meta-desc--collapsed summary::-webkit-details-marker {
    display: none;
}
.meta-desc__content {
    margin-top: 12px;
}
.pr-load-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/**
 * 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;
    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;
    aspect-ratio: 16 / 9;
    background: #e5e7eb;
    overflow: hidden;
}
.single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single .player {
    margin-bottom: 1.25rem;
}
.single .player * {
    transition: none;
}

.single .details {
    color: #555;
}

.snippet-block {
    margin-top: 30px;
    border-top: 1px solid #e9e9e9;
    padding-top: 20px;
}
.snippet-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}
.snippet-list {
    display: grid;
    gap: 14px;
}
.snippet-item {
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 14px 16px;
    background: #fff;
    min-height: 100px;
    display: flex;
    flex-direction: column;
}
.snippet-item h3 {
    font-size: 1rem;
    margin: 0 0 6px 0;
    line-height: 1.4;
}
.snippet-item h3 a {
    color: #0f172a;
}
.snippet-item h3 a:hover {
    color: #00aced;
}
.snippet-item p {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}
.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;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#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: #666;
}

/**
 * Responsive
 */

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

	.container {    
        width: auto; 
        padding: 0 1.5rem;
    }

    .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;
    }
}

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

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

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

/**
 * Performance Optimizations
 */

/* Reduce layout thrashing and reflow */
.section-tracks {
    contain: layout;
}

.snippet-list {
    contain: layout;
}

.public-response {
    contain: layout;
}

img[loading=\"lazy\"] {
    background: #f5f5f5;
    content-visibility: auto;
}

.hp-hero img,
.hp-card-thumb img,
.single .image img,
.section-tracks .item .image img {
    will-change: transform;
}

/* Font rendering optimization */
body {
    font-display: swap;
}

/* Layout stability */
.pr-comment {
    contain-intrinsic-size: auto 80px;
    content-visibility: auto;
}

.section-tracks .item {
    contain-intrinsic-size: auto 70px;
    content-visibility: auto;
}

/* Sidebar Widget - Harmonized News Portal Styling */
.widget-terms {
    margin-bottom: 2rem;
}
.widget-terms h3.section-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem !important;
    padding-bottom: 8px;
    border-bottom: 2px solid #00aaff;
    display: block;
}
.widget-terms h3.section-title span {
    background: none !important;
    padding: 0 !important;
    color: #1e293b !important;
}
.widget-terms h3.section-title i {
    color: #00aaff;
    margin-right: 8px;
}
.widget-terms ul {
    list-style: none;
    padding: 0 !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.widget-terms ul li {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.widget-terms ul li a {
    display: flex !important;
    align-items: center;
    padding: 10px 12px !important;
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    text-decoration: none;
    color: #334155 !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    transition: all 0.2s ease;
    gap: 10px;
}
.widget-terms ul li a:hover {
    background: #00aaff !important;
    border-color: #00aaff !important;
    color: #fff !important;
    transform: translateX(4px);
    box-shadow: 0 4px 10px rgba(0, 170, 255, 0.15);
}
.widget-terms ul li a i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fee2e2;
    border-radius: 6px;
    color: #c53030 !important; /* Deep contrast premium crimson for high WCAG accessibility */
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.widget-terms ul li a:hover i {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}
.widget-terms ul li a span.flex-fill {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}