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

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

.txvlog-main-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.txvlog-brand-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.txvlog-brand-link:hover {
    opacity: 0.9;
}

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

.txvlog-nav-item {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.txvlog-nav-item:hover,
.txvlog-nav-item.txvlog-active {
    color: #ffd700;
}

.txvlog-search-box {
    display: flex;
    gap: 0.5rem;
}

.txvlog-search-input {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 25px;
    width: 250px;
    font-size: 0.95rem;
    outline: none;
}

.txvlog-search-btn {
    padding: 0.6rem 1.5rem;
    background: #ffd700;
    color: #1e3c72;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.txvlog-search-btn:hover {
    background: #ffed4e;
}

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

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

.txvlog-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.txvlog-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

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

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

.txvlog-banner-btn {
    padding: 1rem 3rem;
    background: #ffd700;
    color: #1e3c72;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.txvlog-banner-btn:hover {
    transform: translateY(-3px);
    background: #ffed4e;
}

.txvlog-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.txvlog-section-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
}

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

.txvlog-movie-card {
    background: white;
    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;
}

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

.txvlog-card-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

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

.txvlog-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.txvlog-card-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.txvlog-card-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.txvlog-play-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.txvlog-play-btn:hover {
    transform: scale(1.05);
}

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

.txvlog-category-box {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.txvlog-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.txvlog-category-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.txvlog-main-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.txvlog-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.txvlog-footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.txvlog-footer-brand {
    color: #ffd700;
    text-decoration: none;
}

.txvlog-footer-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.txvlog-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.txvlog-copyright {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    color: #999;
}

.txvlog-page-banner {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.txvlog-page-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.txvlog-page-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.txvlog-page-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.txvlog-page-subtitle {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.txvlog-filter-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txvlog-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.txvlog-filter-label {
    font-weight: bold;
    color: #1e3c72;
    min-width: 60px;
}

.txvlog-filter-btn {
    padding: 0.5rem 1.5rem;
    background: #f0f0f0;
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.txvlog-filter-btn:hover {
    background: #e0e0e0;
}

.txvlog-filter-btn.txvlog-filter-active {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
}

.txvlog-about-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

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

.txvlog-about-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.txvlog-about-intro {
    font-size: 1.2rem;
    opacity: 0.95;
}

.txvlog-about-content {
    background: white;
}

.txvlog-about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.txvlog-about-reverse {
    direction: rtl;
}

.txvlog-about-reverse .txvlog-about-text {
    direction: ltr;
}

.txvlog-about-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.txvlog-about-heading {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.txvlog-about-paragraph {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.txvlog-about-list {
    list-style: none;
}

.txvlog-about-item {
    color: #555;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.txvlog-about-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.txvlog-contact-section {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.txvlog-center {
    text-align: center;
}

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

.txvlog-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txvlog-contact-title {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.txvlog-contact-info {
    color: #666;
    font-size: 1rem;
}

.txvlog-featured-section,
.txvlog-trending-section,
.txvlog-category-section,
.txvlog-movies-section,
.txvlog-series-section,
.txvlog-variety-section,
.txvlog-anime-section,
.txvlog-documentary-section {
    background: white;
    margin-bottom: 1px;
}

@media (max-width: 768px) {
    .txvlog-header-container {
        flex-direction: column;
        text-align: center;
    }

    .txvlog-nav-menu {
        justify-content: center;
    }

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

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

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

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

    .txvlog-about-section {
        grid-template-columns: 1fr;
    }

    .txvlog-about-reverse {
        direction: ltr;
    }
}