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

body {
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.txdm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.txdm-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.txdm-logo-area h1 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

.txdm-menu-links {
    display: flex;
    gap: 30px;
}

.txdm-menu-links a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.txdm-menu-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.txdm-menu-links a:hover::after,
.txdm-menu-links a.txdm-active::after {
    width: 100%;
}

.txdm-search-box {
    display: flex;
    gap: 10px;
}

.txdm-search-input {
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    width: 250px;
    font-size: 14px;
}

.txdm-search-btn {
    padding: 10px 25px;
    background: #fff;
    color: #667eea;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

.txdm-search-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.txdm-hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.txdm-banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.txdm-slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.txdm-slide-item.txdm-active-slide {
    opacity: 1;
}

.txdm-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txdm-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 60px 40px;
}

.txdm-slide-overlay h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.txdm-slide-overlay p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.txdm-read-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
}

.txdm-read-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.txdm-banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.txdm-prev-btn,
.txdm-next-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.txdm-prev-btn:hover,
.txdm-next-btn:hover {
    background: rgba(255,255,255,0.5);
}

.txdm-hot-section,
.txdm-updates-section,
.txdm-category-section,
.txdm-ranking-section {
    padding: 60px 0;
}

.txdm-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.txdm-section-header h2 {
    font-size: 32px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.txdm-section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.txdm-more-link {
    color: #667eea;
    font-size: 16px;
    font-weight: 500;
}

.txdm-more-link:hover {
    color: #764ba2;
}

.txdm-manga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

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

.txdm-manga-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txdm-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

.txdm-manga-card:hover .txdm-card-image img {
    transform: scale(1.1);
}

.txdm-hot-badge,
.txdm-new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.txdm-hot-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.txdm-new-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.txdm-card-info {
    padding: 20px;
}

.txdm-card-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.txdm-card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.txdm-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.txdm-tag {
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 15px;
    font-size: 12px;
    color: #667eea;
}

.txdm-chapter {
    font-size: 12px;
    color: #999;
    margin-left: auto;
}

.txdm-card-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666;
}

.txdm-update-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.txdm-update-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.txdm-update-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.txdm-update-thumb {
    width: 100px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.txdm-update-content {
    flex: 1;
}

.txdm-update-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.txdm-update-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.txdm-update-time {
    font-size: 12px;
    color: #999;
}

.txdm-update-chapter {
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.txdm-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

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

.txdm-category-card:hover {
    transform: scale(1.05);
}

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

.txdm-category-card:hover img {
    transform: scale(1.2);
}

.txdm-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 20px;
}

.txdm-category-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.txdm-category-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.txdm-ranking-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.txdm-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.txdm-rank-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.txdm-rank-item:hover {
    background: #f0f0f0;
    transform: translateX(10px);
}

.txdm-rank-item.txdm-rank-top {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.txdm-rank-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.txdm-rank-item.txdm-rank-top .txdm-rank-num {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.txdm-rank-item img {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.txdm-rank-info {
    flex: 1;
}

.txdm-rank-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.txdm-rank-info p {
    font-size: 14px;
    color: #666;
}

.txdm-footer-area {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

.txdm-footer-about h3,
.txdm-footer-links h4,
.txdm-footer-contact h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.txdm-footer-about p {
    line-height: 1.8;
    opacity: 0.9;
}

.txdm-footer-links ul {
    list-style: none;
}

.txdm-footer-links li {
    margin-bottom: 10px;
}

.txdm-footer-links a:hover {
    color: #667eea;
}

.txdm-footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.txdm-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

.txdm-page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.txdm-page-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.txdm-page-banner p {
    font-size: 18px;
    opacity: 0.9;
}

.txdm-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.txdm-filter-title {
    font-weight: bold;
    font-size: 16px;
}

.txdm-filter-btn {
    padding: 10px 25px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    color: #333;
}

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

.txdm-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.txdm-page-btn,
.txdm-page-num {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.txdm-page-btn:hover:not(.txdm-disabled),
.txdm-page-num:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

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

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

.txdm-time-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.txdm-time-btn {
    padding: 10px 30px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    color: #333;
}

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

.txdm-update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

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

.txdm-update-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.txdm-update-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.txdm-update-info {
    padding: 20px;
}

.txdm-update-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.txdm-update-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.txdm-update-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.txdm-new-chapter {
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px;
    font-size: 13px;
    font-weight: bold;
}

.txdm-update-time {
    font-size: 12px;
    color: #999;
}

.txdm-tags {
    display: flex;
    gap: 8px;
}

.txdm-category-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.txdm-category-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.txdm-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.txdm-category-header img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
}

.txdm-category-title h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.txdm-category-title p {
    font-size: 16px;
    opacity: 0.9;
}

.txdm-category-works {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 30px;
}

.txdm-work-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.txdm-work-item:hover {
    transform: translateY(-5px);
}

.txdm-work-item img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}

.txdm-work-item h4 {
    font-size: 14px;
    color: #333;
}

.txdm-rank-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.txdm-tab-btn {
    padding: 12px 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

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

.txdm-rank-full-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.txdm-rank-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.txdm-rank-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.txdm-rank-card.txdm-rank-top3 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.txdm-rank-badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.txdm-rank-badge.txdm-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    width: 60px;
    height: 60px;
    font-size: 28px;
}

.txdm-rank-badge.txdm-silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #333;
    width: 60px;
    height: 60px;
    font-size: 28px;
}

.txdm-rank-badge.txdm-bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #dda15e 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 28px;
}

.txdm-rank-card img {
    width: 100px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.txdm-rank-details {
    flex: 1;
}

.txdm-rank-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.txdm-rank-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.txdm-rank-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.txdm-stat-item {
    font-size: 13px;
    color: #555;
}

.txdm-rank-tags {
    display: flex;
    gap: 8px;
}

.txdm-about-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.txdm-about-image {
    width: 400px;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.txdm-intro-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.txdm-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.txdm-features {
    margin-bottom: 60px;
}

.txdm-features h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.txdm-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.txdm-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.txdm-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.txdm-feature-card img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
}

.txdm-feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.txdm-feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.txdm-stats {
    margin-bottom: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 12px;
}

.txdm-stats h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}

.txdm-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.txdm-stat-item {
    text-align: center;
    color: #fff;
}

.txdm-stat-num {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.txdm-stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.txdm-mission {
    margin-bottom: 60px;
}

.txdm-mission h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.txdm-mission-content {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.txdm-mission-content img {
    width: 350px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.txdm-mission-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.txdm-contact {
    margin-bottom: 60px;
}

.txdm-contact h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.txdm-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.txdm-contact-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.txdm-contact-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #667eea;
}

.txdm-contact-item p {
    font-size: 16px;
    color: #666;
}

.txdm-team {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.txdm-team h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.txdm-team-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.txdm-team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.txdm-value-item {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.txdm-value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.txdm-value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .txdm-nav-content {
        flex-direction: column;
    }

    .txdm-menu-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .txdm-search-input {
        width: 100%;
    }

    .txdm-manga-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .txdm-about-intro,
    .txdm-mission-content {
        flex-direction: column;
    }

    .txdm-about-image,
    .txdm-mission-content img {
        width: 100%;
    }
}
