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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.txvlog-header-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.txvlog-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txvlog-logo-section h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.txvlog-brand-link {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.txvlog-brand-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.txvlog-nav-menu {
    display: flex;
    gap: 2rem;
}

.txvlog-nav-item {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.txvlog-nav-item:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.txvlog-nav-item.active {
    background-color: rgba(255,255,255,0.25);
}

.txvlog-hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.txvlog-banner-content {
    position: relative;
    height: 100%;
}

.txvlog-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txvlog-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.txvlog-banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.txvlog-banner-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.txvlog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.txvlog-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
    position: relative;
    padding-left: 1rem;
}

.txvlog-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 2px;
}

.txvlog-featured-section {
    padding: 3rem 0;
    background-color: #fff;
}

.txvlog-comic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.txvlog-comic-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.txvlog-comic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.txvlog-comic-cover {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.txvlog-comic-info {
    padding: 1.5rem;
}

.txvlog-comic-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.txvlog-comic-desc {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.txvlog-comic-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.txvlog-hot-section {
    padding: 3rem 0;
    background-color: #f5f7fa;
}

.txvlog-hot-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.txvlog-hot-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.txvlog-hot-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateX(8px);
}

.txvlog-hot-thumb {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.txvlog-hot-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.txvlog-hot-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.txvlog-hot-info {
    color: #718096;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.txvlog-hot-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

.txvlog-category-section {
    padding: 3rem 0;
    background-color: #fff;
}

.txvlog-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.txvlog-category-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.txvlog-category-item:hover {
    transform: scale(1.05);
}

.txvlog-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txvlog-category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.txvlog-update-section {
    padding: 3rem 0;
    background-color: #f5f7fa;
}

.txvlog-update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.txvlog-update-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.txvlog-update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.txvlog-update-cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.txvlog-update-card h4 {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.txvlog-update-time {
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
    color: #a0aec0;
}

.txvlog-footer-wrapper {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.txvlog-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.txvlog-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.txvlog-footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.txvlog-footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.txvlog-footer-links {
    list-style: none;
}

.txvlog-footer-links li {
    margin-bottom: 0.5rem;
}

.txvlog-footer-links a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.txvlog-footer-links a:hover {
    color: #fff;
}

.txvlog-footer-link {
    color: #fff;
    font-weight: 600;
}

.txvlog-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e0;
    font-size: 0.9rem;
}

.txvlog-breadcrumb-nav {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.txvlog-breadcrumb-nav .txvlog-container {
    display: flex;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.95rem;
}

.txvlog-breadcrumb-nav a {
    color: #667eea;
}

.txvlog-breadcrumb-nav a:hover {
    text-decoration: underline;
}

.txvlog-comics-main {
    padding: 3rem 0;
}

.txvlog-filter-bar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.txvlog-filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.txvlog-filter-group:last-child {
    margin-bottom: 0;
}

.txvlog-filter-label {
    font-weight: 600;
    color: #2d3748;
    min-width: 60px;
}

.txvlog-filter-btn {
    padding: 0.5rem 1.2rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #4a5568;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.txvlog-filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.txvlog-filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.txvlog-comics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.txvlog-comic-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.txvlog-comic-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.txvlog-comic-poster {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.txvlog-comic-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.txvlog-comic-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.txvlog-comic-intro {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.txvlog-comic-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.txvlog-tag {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.txvlog-status {
    font-size: 0.85rem;
    color: #48bb78;
    font-weight: 500;
}

.txvlog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.txvlog-page-btn,
.txvlog-page-num {
    padding: 0.6rem 1.2rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #4a5568;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.txvlog-page-btn:hover:not(.disabled),
.txvlog-page-num:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.txvlog-page-num.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.txvlog-page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.txvlog-ranking-main {
    padding: 3rem 0;
}

.txvlog-ranking-tabs {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.txvlog-tab-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #4a5568;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.txvlog-tab-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.txvlog-tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.txvlog-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.txvlog-rank-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.txvlog-rank-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateX(8px);
}

.txvlog-rank-badge,
.txvlog-rank-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
}

.txvlog-rank-badge.gold {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #fff;
}

.txvlog-rank-badge.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: #fff;
}

.txvlog-rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
    color: #fff;
}

.txvlog-rank-number {
    background: #f7fafc;
    color: #4a5568;
}

.txvlog-rank-cover {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.txvlog-rank-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.txvlog-rank-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.txvlog-rank-desc {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.txvlog-rank-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

.txvlog-category-showcase {
    padding: 3rem 0;
}

.txvlog-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

.txvlog-category-block {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.txvlog-category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.txvlog-category-banner {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.txvlog-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.txvlog-category-subtitle {
    font-size: 1rem;
    color: #718096;
}

.txvlog-category-comics {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.txvlog-mini-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.txvlog-mini-card:hover {
    transform: translateY(-5px);
}

.txvlog-mini-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.txvlog-mini-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
}

.txvlog-about-hero {
    padding: 3rem 0;
    background: #fff;
}

.txvlog-about-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.txvlog-about-intro {
    max-width: 800px;
    margin: 0 auto;
}

.txvlog-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.txvlog-about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
}

.txvlog-mission-section {
    padding: 3rem 0;
    background-color: #f5f7fa;
}

.txvlog-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.txvlog-mission-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.txvlog-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.txvlog-mission-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.txvlog-mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.txvlog-mission-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #718096;
}

.txvlog-features-section {
    padding: 3rem 0;
    background: #fff;
}

.txvlog-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.txvlog-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f7fafc;
    transition: all 0.3s ease;
}

.txvlog-feature-item:hover {
    background: #edf2f7;
    transform: translateX(8px);
}

.txvlog-feature-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.txvlog-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.txvlog-feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #718096;
}

.txvlog-stats-section {
    padding: 3rem 0;
    background-color: #f5f7fa;
}

.txvlog-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.txvlog-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.txvlog-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.txvlog-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.txvlog-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.txvlog-contact-section {
    padding: 3rem 0;
    background: #fff;
}

.txvlog-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.txvlog-contact-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.txvlog-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.txvlog-contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.txvlog-contact-item p {
    font-size: 1rem;
    color: #718096;
}

@media (max-width: 768px) {
    .txvlog-header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .txvlog-nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .txvlog-banner-title {
        font-size: 2rem;
    }

    .txvlog-banner-subtitle {
        font-size: 1rem;
    }

    .txvlog-comic-grid,
    .txvlog-comics-grid,
    .txvlog-category-grid,
    .txvlog-update-grid {
        grid-template-columns: 1fr;
    }

    .txvlog-filter-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .txvlog-contact-content {
        grid-template-columns: 1fr;
    }

    .txvlog-category-header {
        flex-direction: column;
    }

    .txvlog-category-banner {
        width: 100%;
    }
}