body {
    background: #111827 !important;
}

/* breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    border-radius: 0.5rem;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
    color: #2563eb;
}
/* tag */
.tag-container .tag {
    background: #1f2937;
    color: var(--text-white);
    transition: all 0.5s ease;
}
.tag-container .tag:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    transition: all 0.4s ease;
}
/* share */
.share-container .share {
    background: #1f2937;
    width: 40px;
    height: 40px;
    color: var(--text-white);
    transition: all 0.5s ease;
}
.share-container .share:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #4c8fff;
    box-shadow: 0 0 15px rgba(76, 143, 255, 0.5);
    transition: all 0.4s ease;
    transform: translateY(-6px);
}
/* you might like */
.you-might-like {
    background-color: var(--bg-gray);
    padding: 60px 0;
}
.you-might-like h2 {
    font-weight: 700;
    color: var(--color-primary-dark);
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-content {
    padding: 20px;
}
.blog-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark, #111827);
    margin-bottom: 10px;
}
.blog-content p {
    font-size: 0.95rem;
    color: var(--color-secondary, #64748b);
    margin-bottom: 15px;
}
.read-more {
    color: var(--color-primary, #2563eb);
    text-decoration: none;
    font-weight: 500;
}
.read-more:hover {
    text-decoration: underline;
}
.swiper {
    padding-bottom: 50px;
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
}
.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #1c1c1c;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.vote-btn i {
    font-size: 16px;
}

.vote-btn:hover {
    background-color: #2c2c2c;
}

