/* TrustGate Blog Pro Styles */

/* Base Variables */
:root {
    --tgbp-primary: #007cba;
    --tgbp-secondary: #f0f4f8;
    --tgbp-accent: #ff6b35;
    --tgbp-text: #2c3e50;
    --tgbp-text-light: #7f8c8d;
    --tgbp-border: #e1e8ed;
    --tgbp-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --tgbp-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --tgbp-radius: 8px;
    --tgbp-transition: all 0.3s ease;
}

/* Blog Header */
.tgbp-blog-header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--tgbp-secondary), #ffffff);
    margin-bottom: 3rem;
    border-radius: var(--tgbp-radius);
}

.tgbp-blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tgbp-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tgbp-category-description,
.tgbp-tag-description,
.tgbp-archive-description {
    color: var(--tgbp-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Layout */
.tgbp-blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tgbp-blog-main {
    min-width: 0;
}

/* Posts Grid */
.tgbp-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Post Cards */
.tgbp-post-card {
    background: #ffffff;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
    overflow: hidden;
    transition: var(--tgbp-transition);
    position: relative;
}

.tgbp-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tgbp-shadow-hover);
}

.tgbp-post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.tgbp-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--tgbp-transition);
}

.tgbp-post-card:hover .tgbp-post-thumbnail img {
    transform: scale(1.05);
}

.tgbp-post-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.tgbp-badge {
    display: inline-block;
    background: var(--tgbp-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tgbp-featured-badge {
    background: var(--tgbp-accent) !important;
}

.tgbp-post-content {
    padding: 1.5rem;
}

.tgbp-post-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tgbp-post-title a {
    color: var(--tgbp-text);
    text-decoration: none;
    transition: var(--tgbp-transition);
}

.tgbp-post-title a:hover {
    color: var(--tgbp-primary);
}

.tgbp-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--tgbp-text-light);
}

.tgbp-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tgbp-post-excerpt {
    color: var(--tgbp-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tgbp-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--tgbp-border);
}

.tgbp-read-more {
    color: var(--tgbp-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--tgbp-transition);
}

.tgbp-read-more:hover {
    color: var(--tgbp-accent);
}

.tgbp-arrow {
    transition: var(--tgbp-transition);
}

.tgbp-read-more:hover .tgbp-arrow {
    transform: translateX(3px);
}

.tgbp-post-stats {
    font-size: 0.85rem;
    color: var(--tgbp-text-light);
}

/* Sidebar Styles */
.tgbp-blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.tgbp-sidebar-widget {
    background: #ffffff;
    border-radius: var(--tgbp-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--tgbp-shadow);
}

.tgbp-widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tgbp-text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--tgbp-primary);
}

.tgbp-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tgbp-categories-list li {
    margin-bottom: 0.5rem;
}

.tgbp-categories-list a {
    color: var(--tgbp-text);
    text-decoration: none;
    transition: var(--tgbp-transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
}

.tgbp-categories-list a:hover {
    background: var(--tgbp-secondary);
    color: var(--tgbp-primary);
}

.tgbp-cat-count {
    font-size: 0.85rem;
    color: var(--tgbp-text-light);
}

/* Popular/Recent Posts */
.tgbp-popular-item,
.tgbp-recent-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--tgbp-border);
}

.tgbp-popular-item:last-child,
.tgbp-recent-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tgbp-popular-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.tgbp-popular-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tgbp-popular-content h4,
.tgbp-recent-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.tgbp-popular-content a,
.tgbp-recent-item a {
    color: var(--tgbp-text);
    text-decoration: none;
    transition: var(--tgbp-transition);
}

.tgbp-popular-content a:hover,
.tgbp-recent-item a:hover {
    color: var(--tgbp-primary);
}

.tgbp-popular-views,
.tgbp-recent-date {
    font-size: 0.8rem;
    color: var(--tgbp-text-light);
}

/* Single Post Styles */
.tgbp-single-post {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tgbp-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tgbp-single-post .tgbp-post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--tgbp-text);
}

.tgbp-featured-image {
    margin: 2rem 0;
    border-radius: var(--tgbp-radius);
    overflow: hidden;
    box-shadow: var(--tgbp-shadow);
}

.tgbp-featured-image img {
    width: 100%;
    height: auto;
}

.tgbp-post-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.tgbp-post-main {
    min-width: 0;
}

.tgbp-post-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.tgbp-post-content h2,
.tgbp-post-content h3,
.tgbp-post-content h4 {
    color: var(--tgbp-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tgbp-post-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--tgbp-border);
    padding-bottom: 0.5rem;
}

.tgbp-post-content h3 {
    font-size: 1.5rem;
}

.tgbp-post-content h4 {
    font-size: 1.3rem;
}

.tgbp-post-content p {
    margin-bottom: 1.5rem;
}

.tgbp-post-content ul,
.tgbp-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.tgbp-post-content blockquote {
    background: var(--tgbp-secondary);
    border-left: 4px solid var(--tgbp-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 var(--tgbp-radius) var(--tgbp-radius) 0;
}

/* Tags */
.tgbp-tags-wrapper {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
    margin-bottom: 2rem;
}

.tgbp-tags-label {
    font-weight: 600;
    color: var(--tgbp-text);
    margin-right: 1rem;
}

.tgbp-tags-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tgbp-tag {
    background: var(--tgbp-secondary);
    color: var(--tgbp-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--tgbp-transition);
}

.tgbp-tag:hover {
    background: var(--tgbp-primary);
    color: white;
}

/* Post Actions */
.tgbp-post-actions {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
    margin-bottom: 2rem;
}

.tgbp-reactions-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--tgbp-border);
}

.tgbp-reactions-section h4 {
    margin-bottom: 1rem;
    color: var(--tgbp-text);
}

/* Reactions */
.tgbp-reactions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.tgbp-reaction-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--tgbp-border);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--tgbp-transition);
    font-size: 1rem;
}

.tgbp-reaction-btn:hover {
    border-color: var(--tgbp-primary);
    background: var(--tgbp-secondary);
}

.tgbp-reaction-btn.active {
    border-color: var(--tgbp-primary);
    background: var(--tgbp-primary);
    color: white;
}

.tgbp-reaction-btn .tgbp-icon {
    font-size: 1.2rem;
}

/* Social Sharing */
.tgbp-social-sharing {
    text-align: center;
}

.tgbp-sharing-title {
    margin-bottom: 1rem;
    color: var(--tgbp-text);
}

.tgbp-sharing-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tgbp-share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--tgbp-radius);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--tgbp-transition);
    cursor: pointer;
}

.tgbp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--tgbp-shadow);
}

.tgbp-share-copy {
    background: var(--tgbp-text) !important;
}

/* Vertical sharing style */
.tgbp-sharing-vertical .tgbp-sharing-buttons {
    flex-direction: column;
    align-items: stretch;
}

/* TOC Styles */
.tgbp-toc-wrapper {
    background: #ffffff;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.tgbp-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--tgbp-secondary);
    border-bottom: 1px solid var(--tgbp-border);
}

.tgbp-toc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tgbp-text);
    margin: 0;
}

.tgbp-toc-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--tgbp-text);
    transition: var(--tgbp-transition);
}

.tgbp-toc-nav {
    padding: 1rem 1.5rem;
}

.tgbp-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tgbp-toc-item {
    margin-bottom: 0.5rem;
}

.tgbp-toc-link {
    color: var(--tgbp-text);
    text-decoration: none;
    transition: var(--tgbp-transition);
    display: block;
    padding: 0.25rem 0;
    border-radius: 4px;
}

.tgbp-toc-link:hover {
    color: var(--tgbp-primary);
    background: var(--tgbp-secondary);
    padding-left: 0.5rem;
}

.tgbp-toc-sublist {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.25rem;
}

.tgbp-toc-level-3 .tgbp-toc-link {
    font-size: 0.9rem;
    color: var(--tgbp-text-light);
}

.tgbp-toc-level-4 .tgbp-toc-link {
    font-size: 0.85rem;
    color: var(--tgbp-text-light);
}

/* Sticky TOC */
.tgbp-toc-sticky {
    position: sticky;
    top: 2rem;
}

/* Author Bio */
.tgbp-author-bio {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
    margin-bottom: 2rem;
}

.tgbp-author-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tgbp-author-avatar {
    flex-shrink: 0;
}

.tgbp-author-avatar img {
    border-radius: 50%;
}

.tgbp-author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tgbp-text);
    margin-bottom: 0.5rem;
}

.tgbp-author-description {
    color: var(--tgbp-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tgbp-author-links {
    display: flex;
    gap: 1rem;
}

.tgbp-author-links a {
    color: var(--tgbp-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--tgbp-transition);
}

.tgbp-author-links a:hover {
    color: var(--tgbp-accent);
}

/* Post Navigation */
.tgbp-post-navigation {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
    margin-bottom: 2rem;
}

.tgbp-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tgbp-nav-previous,
.tgbp-nav-next {
    padding: 1.5rem;
    border-radius: var(--tgbp-radius);
    background: var(--tgbp-secondary);
    transition: var(--tgbp-transition);
}

.tgbp-nav-next {
    text-align: right;
}

.tgbp-nav-previous:hover,
.tgbp-nav-next:hover {
    background: var(--tgbp-border);
}

.tgbp-nav-label {
    font-size: 0.9rem;
    color: var(--tgbp-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tgbp-nav-title {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.tgbp-nav-title a {
    color: var(--tgbp-text);
    text-decoration: none;
    transition: var(--tgbp-transition);
}

.tgbp-nav-title a:hover {
    color: var(--tgbp-primary);
}

/* Related Posts */
.tgbp-related-posts {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
    margin-bottom: 2rem;
}

.tgbp-related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tgbp-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tgbp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tgbp-related-item {
    border: 1px solid var(--tgbp-border);
    border-radius: var(--tgbp-radius);
    overflow: hidden;
    transition: var(--tgbp-transition);
}

.tgbp-related-item:hover {
    box-shadow: var(--tgbp-shadow);
    transform: translateY(-3px);
}

.tgbp-related-thumbnail {
    height: 150px;
    overflow: hidden;
}

.tgbp-related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--tgbp-transition);
}

.tgbp-related-item:hover .tgbp-related-thumbnail img {
    transform: scale(1.05);
}

.tgbp-related-content {
    padding: 1rem;
}

.tgbp-related-post-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tgbp-related-post-title a {
    color: var(--tgbp-text);
    text-decoration: none;
    transition: var(--tgbp-transition);
}

.tgbp-related-post-title a:hover {
    color: var(--tgbp-primary);
}

.tgbp-related-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--tgbp-text-light);
    margin-bottom: 0.5rem;
}

.tgbp-related-excerpt {
    font-size: 0.9rem;
    color: var(--tgbp-text-light);
    line-height: 1.5;
}

/* Sidebar Widgets for Single Post */
.tgbp-post-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.tgbp-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tgbp-stats-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--tgbp-border);
}

.tgbp-stats-list li:last-child {
    border-bottom: none;
}

.tgbp-stat-label {
    font-weight: 600;
    color: var(--tgbp-text);
}

.tgbp-stat-value {
    color: var(--tgbp-primary);
    font-weight: 600;
}

.tgbp-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tgbp-related-list li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--tgbp-border);
}

.tgbp-related-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tgbp-related-list a {
    color: var(--tgbp-text);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: var(--tgbp-transition);
}

.tgbp-related-list a:hover {
    color: var(--tgbp-primary);
}

/* Pagination */
.tgbp-pagination {
    text-align: center;
    margin-top: 3rem;
}

.tgbp-pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    background: white;
    border: 1px solid var(--tgbp-border);
    border-radius: var(--tgbp-radius);
    color: var(--tgbp-text);
    text-decoration: none;
    transition: var(--tgbp-transition);
}

.tgbp-pagination .page-numbers:hover,
.tgbp-pagination .page-numbers.current {
    background: var(--tgbp-primary);
    color: white;
    border-color: var(--tgbp-primary);
}

/* Reading Time */
.tgbp-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--tgbp-text-light);
}

/* No Posts */
.tgbp-no-posts {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: var(--tgbp-radius);
    box-shadow: var(--tgbp-shadow);
}

.tgbp-no-posts h2 {
    color: var(--tgbp-text);
    margin-bottom: 1rem;
}

.tgbp-no-posts p {
    color: var(--tgbp-text-light);
    margin-bottom: 2rem;
}

.tgbp-search-form {
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tgbp-blog-layout,
    .tgbp-post-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tgbp-blog-sidebar,
    .tgbp-post-sidebar {
        position: static;
    }
    
    .tgbp-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tgbp-blog-title,
    .tgbp-single-post .tgbp-post-title {
        font-size: 2rem;
    }
    
    .tgbp-post-nav {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tgbp-nav-next {
        text-align: left;
    }
    
    .tgbp-author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tgbp-sharing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tgbp-reactions {
        flex-direction: column;
        align-items: center;
    }
    
    .tgbp-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tgbp-blog-layout,
    .tgbp-post-content-wrapper {
        padding: 0 0.5rem;
    }
    
    .tgbp-blog-title,
    .tgbp-single-post .tgbp-post-title {
        font-size: 1.75rem;
    }
    
    .tgbp-post-content,
    .tgbp-sidebar-widget,
    .tgbp-post-actions,
    .tgbp-author-bio,
    .tgbp-post-navigation,
    .tgbp-related-posts {
        padding: 1rem;
    }
    
    .tgbp-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tgbp-share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tgbp-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading States */
.tgbp-loading {
    opacity: 0.6;
    pointer-events: none;
}

.tgbp-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--tgbp-border);
    border-top-color: var(--tgbp-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .tgbp-blog-sidebar,
    .tgbp-post-sidebar,
    .tgbp-post-actions,
    .tgbp-post-navigation,
    .tgbp-related-posts {
        display: none;
    }
    
    .tgbp-post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tgbp-post-content {
        box-shadow: none;
        border: 1px solid var(--tgbp-border);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --tgbp-primary: #4a9eff;
        --tgbp-secondary: #1a1a1a;
        --tgbp-accent: #ff7849;
        --tgbp-text: #e1e1e1;
        --tgbp-text-light: #a1a1a1;
        --tgbp-border: #333333;
        --tgbp-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        --tgbp-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    
    .tgbp-post-card,
    .tgbp-sidebar-widget,
    .tgbp-post-content,
    .tgbp-post-actions,
    .tgbp-author-bio,
    .tgbp-post-navigation,
    .tgbp-related-posts,
    .tgbp-toc-wrapper {
        background: #1a1a1a;
        border-color: var(--tgbp-border);
    }
    
    .tgbp-blog-header {
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    }
    
    .tgbp-reaction-btn,
    .tgbp-pagination .page-numbers {
        background: #1a1a1a;
        border-color: var(--tgbp-border);
        color: var(--tgbp-text);
    }
    
    .tgbp-toc-header {
        background: #2a2a2a;
    }
}