/* TimesBull Core - Enterprise Edition v8.0 */
/* Same design as your live site - NO design breaks */

:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --primary-light: #fee2e2;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-lighter: #6c6c6c;
    --bg: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e5e5e5;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

.tb-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .tb-container {
        padding: 0 16px;
    }
}

/* ===== HEADER - EXACT SAME ===== */
.tb-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.98);
}

.tb-header-top {
    padding: 12px 0;
}

.tb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tb-logo {
    flex-shrink: 0;
}

.tb-logo img {
    max-height: 48px;
    width: auto;
}

.tb-site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.tb-nav-desktop {
    flex: 1;
}

.tb-nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    justify-content: center;
}

.tb-nav-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.tb-nav-menu a:hover,
.tb-nav-menu .current-menu-item a {
    color: var(--primary);
}

.tb-header-actions {
    display: flex;
    gap: 8px;
}

.tb-search-toggle,
.tb-mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.tb-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.tb-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .tb-nav-desktop {
        display: none;
    }
    .tb-mobile-toggle {
        display: flex;
    }
}

/* ===== SCROLL MENU ===== */
.tb-scroll-menu {
    background: var(--primary);
    padding: 8px 0;
    position: sticky;
    top: 72px;
    z-index: 999;
}

.tb-scroll-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tb-scroll-wrapper {
    flex: 1;
    overflow: hidden;
}

.tb-scroll-items {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    list-style: none;
}

.tb-scroll-items::-webkit-scrollbar {
    display: none;
}

.tb-scroll-items a {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
}

.tb-scroll-items a:hover {
    background: white;
    color: var(--primary);
}

.tb-scroll-arrow {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    flex-shrink: 0;
}

/* ===== HOMEPAGE LAYOUT - SAME AS YOUR DESIGN ===== */
.tb-home-row-1 {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.tb-home-col {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.tb-col-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.tb-col-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

/* Featured Card */
.tb-featured-card {
    margin-bottom: 24px;
}

.tb-featured-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
}

.tb-featured-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.tb-featured-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.tb-featured-title a {
    color: var(--text);
    text-decoration: none;
}

.tb-featured-title a:hover {
    color: var(--primary);
}

/* Horizontal List */
.tb-horizontal-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tb-horizontal-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tb-horizontal-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.tb-horizontal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-horizontal-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.tb-horizontal-title a {
    color: var(--text);
    text-decoration: none;
}

.tb-horizontal-title a:hover {
    color: var(--primary);
}

/* Trending List */
.tb-trending-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tb-trending-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tb-trending-number {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.tb-trending-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.tb-trending-title a {
    color: var(--text);
    text-decoration: none;
}

.tb-trending-title a:hover {
    color: var(--primary);
}

/* Latest List */
.tb-latest-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tb-latest-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tb-latest-image {
    flex-shrink: 0;
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
}

.tb-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-latest-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.tb-latest-title a {
    color: var(--text);
    text-decoration: none;
}

.tb-latest-title a:hover {
    color: var(--primary);
}

/* Category Sections */
.tb-category-section {
    margin: 40px 0;
    padding: 0;
}

.tb-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.tb-section-title {
    font-size: 22px;
    font-weight: 700;
}

.tb-section-title a {
    color: var(--text);
    text-decoration: none;
}

.tb-section-title a:hover {
    color: var(--primary);
}

.tb-view-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.tb-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tb-category-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tb-category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tb-category-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.tb-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tb-category-card:hover .tb-category-image img {
    transform: scale(1.05);
}

.tb-category-content {
    padding: 12px;
}

.tb-category-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.tb-category-title a {
    color: var(--text);
    text-decoration: none;
}

.tb-category-title a:hover {
    color: var(--primary);
}

.tb-category-date {
    font-size: 11px;
    color: var(--text-lighter);
}

/* More Trending & Recommended */
.tb-more-trending,
.tb-recommended {
    margin: 50px 0;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.tb-more-header,
.tb-recommended-header {
    margin-bottom: 25px;
}

.tb-more-title,
.tb-recommended-title {
    font-size: 24px;
    font-weight: 700;
}

.tb-more-grid,
.tb-recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tb-more-column,
.tb-recommended-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-more-item,
.tb-recommended-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tb-more-image,
.tb-recommended-image {
    flex-shrink: 0;
    width: 90px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
}

.tb-more-image img,
.tb-recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-more-title-link,
.tb-recommended-title-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.tb-more-title-link a,
.tb-recommended-title-link a {
    color: var(--text);
    text-decoration: none;
}

.tb-more-title-link a:hover,
.tb-recommended-title-link a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .tb-home-row-1 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tb-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tb-more-grid,
    .tb-recommended-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tb-more-column,
    .tb-recommended-column {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .tb-category-grid {
        grid-template-columns: 1fr;
    }
    
    .tb-home-col {
        padding: 16px;
    }
}

/* ===== SINGLE POST - SAME AS YOUR DESIGN ===== */
.tb-single-post {
    padding: 24px 0 48px;
}

.tb-breadcrumbs {
    font-size: 13px;
    color: var(--text-lighter);
    margin-bottom: 20px;
}

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

.tb-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

@media (max-width: 992px) {
    .tb-post-layout {
        grid-template-columns: 1fr;
    }
}

.tb-post-main {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .tb-post-main {
        padding: 20px;
    }
}

.tb-post-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tb-cat-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.tb-post-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .tb-post-title {
        font-size: 32px;
    }
}

.tb-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.tb-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tb-meta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tb-meta-author {
    font-weight: 600;
}

.tb-meta-date {
    font-size: 13px;
    color: var(--text-lighter);
}

.tb-reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-lighter);
}

.tb-listen-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--primary);
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 40px;
    background: var(--primary-light);
}

.tb-ai-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
    color: white;
}

.tb-summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 600;
}

.tb-summary-content ul {
    margin-left: 20px;
    list-style: disc;
}

.tb-post-featured {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

.tb-post-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.tb-post-content {
    font-size: 18px;
    line-height: 1.7;
}

.tb-post-content p {
    margin-bottom: 1.5em;
}

.tb-post-content h2 {
    font-size: 28px;
    margin: 1.5em 0 0.5em;
}

.tb-post-content h3 {
    font-size: 24px;
    margin: 1.2em 0 0.5em;
}

.tb-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 1.5em 0;
}

.tb-post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 1em 1.5em;
    margin: 1.5em 0;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-style: italic;
}

/* Ads */
.tb-ad-header,
.tb-ad-incontent,
.tb-ad-bottom {
    margin: 24px 0;
    text-align: center;
}

ins.adsbygoogle {
    background: transparent;
    display: block;
}

/* Tags */
.tb-post-tags {
    margin: 32px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tb-tags-label {
    font-weight: 600;
}

.tb-tag {
    background: var(--bg);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.tb-tag:hover {
    background: var(--primary);
    color: white;
}

/* Author Box */
.tb-author-box {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    margin: 32px 0;
}

.tb-author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.tb-author-info h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.tb-author-info p {
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Related Posts */
.tb-related-posts {
    margin: 32px 0;
}

.tb-related-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.tb-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tb-related-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tb-related-img {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.tb-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-related-card h4 {
    padding: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.tb-related-card h4 a {
    color: var(--text);
    text-decoration: none;
}

@media (max-width: 768px) {
    .tb-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.tb-site-footer {
    background: #1a1a2e;
    color: white;
    padding: 48px 0 24px;
    margin-top: 48px;
}

.tb-footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    list-style: none;
    margin-bottom: 24px;
}

.tb-footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.tb-footer-menu a:hover {
    color: white;
}

.tb-footer-copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ===== DARK MODE - COMPLETE FIX ===== */
body.tb-dark-mode,
html.tb-dark-mode {
    --text: #ffffff !important;
    --text-light: #cccccc !important;
    --text-lighter: #999999 !important;
    --bg: #1a1a1a !important;
    --bg-white: #2d2d2d !important;
    --border: #404040 !important;
}

body.tb-dark-mode .tb-header {
    background: #2d2d2d !important;
}

body.tb-dark-mode .tb-home-col,
body.tb-dark-mode .tb-post-main,
body.tb-dark-mode .tb-widget,
body.tb-dark-mode .tb-category-card,
body.tb-dark-mode .tb-related-card {
    background: #2d2d2d !important;
}

body.tb-dark-mode .tb-featured-title a,
body.tb-dark-mode .tb-horizontal-title a,
body.tb-dark-mode .tb-trending-title a,
body.tb-dark-mode .tb-latest-title a,
body.tb-dark-mode .tb-category-title a,
body.tb-dark-mode .tb-post-title,
body.tb-dark-mode .tb-meta-author,
body.tb-dark-mode .tb-card-title a {
    color: #ffffff !important;
}

body.tb-dark-mode .tb-post-content,
body.tb-dark-mode .tb-card-excerpt,
body.tb-dark-mode .tb-card-meta {
    color: #cccccc !important;
}

body.tb-dark-mode .tb-cat-badge {
    background: rgba(231, 76, 60, 0.2) !important;
    color: #e74c3c !important;
}

body.tb-dark-mode .tb-tag {
    background: #3d3d3d !important;
    color: #cccccc !important;
}

body.tb-dark-mode .tb-author-box {
    background: #2d2d2d !important;
    border: 1px solid #404040 !important;
}

body.tb-dark-mode .tb-post-content blockquote {
    background: #2d2d2d !important;
}

body.tb-dark-mode .tb-search-card {
    background: #2d2d2d !important;
}

body.tb-dark-mode .tb-search-content h2 a {
    color: #ffffff !important;
}

body.tb-dark-mode .tb-pagination .page-numbers {
    background: #2d2d2d !important;
    border-color: #404040 !important;
    color: #ffffff !important;
}

body.tb-dark-mode input,
body.tb-dark-mode textarea,
body.tb-dark-mode select {
    background: #3d3d3d !important;
    border-color: #505050 !important;
    color: #ffffff !important;
}

body.tb-dark-mode .tb-archive-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
}

/* Mobile Menu */
.tb-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tb-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tb-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-white);
    z-index: 2001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tb-mobile-menu.active {
    right: 0;
}

.tb-mobile-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tb-mobile-close {
    background: var(--bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.tb-mobile-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.tb-mobile-nav {
    list-style: none;
}

.tb-mobile-nav li {
    border-bottom: 1px solid var(--border);
}

.tb-mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
}

/* Search Overlay */
.tb-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tb-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tb-search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.tb-search-container form {
    display: flex;
    gap: 12px;
}

.tb-search-container input {
    flex: 1;
    height: 60px;
    padding: 0 20px;
    font-size: 18px;
    border: none;
    border-radius: 40px;
    background: white;
    outline: none;
}

.tb-search-container button {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.tb-search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* Sticky Ad */
.tb-sticky-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    text-align: center;
    padding: 8px 0;
    z-index: 999999;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

body {
    padding-bottom: 116px;
}

@media (min-width: 768px) {
    .tb-sticky-ad {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}

/* Audio Player */
.tb-audio-player {
    position: fixed;
    bottom: 116px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 12px 20px;
    border: 1px solid #e5e5e5;
}

.tb-audio-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tb-audio-play {
    background: #e74c3c;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    flex-shrink: 0;
}

.tb-audio-progress {
    flex: 1;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    cursor: pointer;
}

.tb-audio-progress-bar {
    width: 0;
    height: 100%;
    background: #e74c3c;
    border-radius: 2px;
}

.tb-audio-time {
    font-size: 13px;
    color: #666;
    font-family: monospace;
}

.tb-audio-speed {
    background: #f0f0f0;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
}

.tb-audio-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

/* Dark Mode Toggle Button */
.tb-dark-mode-toggle {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0 4px;
}

.tb-dark-mode-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.tb-dark-mode-toggle:hover svg {
    stroke: white;
}

/* Accessibility */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    top: 5px;
    left: 5px;
    width: auto;
    height: auto;
    padding: 15px;
    background: white;
    z-index: 100000;
    text-decoration: none;
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
}

/* Print */
@media print {
    .tb-header, .tb-scroll-menu, .tb-sidebar, .tb-related-posts,
    .tb-author-box, .tb-comments-section, .tb-sticky-ad, .tb-audio-player,
    .tb-ad-header, .tb-ad-incontent, .tb-ad-bottom {
        display: none !important;
    }
    .tb-post-main {
        padding: 0;
        box-shadow: none;
    }
    body {
        padding: 0;
        background: white;
    }
}