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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.txlg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.txlg-navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txlg-logo-area a {
    text-decoration: none;
}

.txlg-logo-area h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.txlg-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.txlg-nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.txlg-nav-menu li a:hover,
.txlg-nav-menu li a.txlg-active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.txlg-banner-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.txlg-slider-container {
    position: relative;
    height: 100%;
}

.txlg-slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.txlg-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.txlg-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
}

.txlg-slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.txlg-slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.txlg-btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

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

.txlg-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.txlg-prev-btn,
.txlg-next-btn {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.txlg-prev-btn:hover,
.txlg-next-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.txlg-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e3c72;
    position: relative;
    padding-bottom: 15px;
}

.txlg-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.txlg-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

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

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

.txlg-video-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.txlg-video-card:hover img {
    transform: scale(1.05);
}

.txlg-video-info {
    padding: 20px;
}

.txlg-video-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.txlg-video-desc {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
}

.txlg-video-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.txlg-featured-section,
.txlg-movie-section,
.txlg-series-section,
.txlg-variety-section {
    padding: 60px 0;
}

.txlg-dual-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.txlg-list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.txlg-list-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.txlg-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.txlg-list-item img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.txlg-item-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.txlg-item-info p {
    color: #7f8c8d;
    font-size: 14px;
}

.txlg-features-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.txlg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.txlg-feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.txlg-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.txlg-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.txlg-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txlg-feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.txlg-feature-item p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.8;
}

.txlg-footer-section {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.txlg-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.txlg-footer-about h3 a {
    text-decoration: none;
}

.txlg-footer-about h3 h1 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.txlg-footer-about p {
    color: #bdc3c7;
    line-height: 1.8;
}

.txlg-footer-links h4,
.txlg-footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.txlg-footer-links ul,
.txlg-footer-contact ul {
    list-style: none;
}

.txlg-footer-links li,
.txlg-footer-contact li {
    margin-bottom: 12px;
}

.txlg-footer-links a,
.txlg-footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.txlg-footer-links a:hover,
.txlg-footer-contact a:hover {
    color: white;
}

.txlg-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

.txlg-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.txlg-page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.txlg-page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.txlg-filter-section {
    padding: 30px 0;
    background: white;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.txlg-filter-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.txlg-filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.txlg-filter-label {
    font-weight: 600;
    color: #2c3e50;
}

.txlg-filter-btn {
    padding: 8px 20px;
    background: #f0f0f0;
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.txlg-filter-btn:hover,
.txlg-filter-btn.txlg-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

.txlg-latest-movies,
.txlg-hot-series,
.txlg-hot-variety,
.txlg-new-anime {
    padding: 40px 0;
}

.txlg-action-movies,
.txlg-classic-movies,
.txlg-chinese-series,
.txlg-us-series,
.txlg-korean-series,
.txlg-reality-show,
.txlg-music-show,
.txlg-talkshow,
.txlg-chinese-anime,
.txlg-classic-anime,
.txlg-healing-anime {
    padding: 40px 0;
    background: white;
    margin: 40px 0;
    border-radius: 12px;
}

.txlg-about-hero {
    padding: 60px 0;
}

.txlg-about-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.txlg-about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.txlg-about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.txlg-about-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.txlg-advantage-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.txlg-advantage-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.txlg-advantage-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.txlg-advantage-card p {
    color: #7f8c8d;
    line-height: 1.8;
}

.txlg-about-mission {
    padding: 80px 0;
}

.txlg-mission-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.txlg-mission-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.txlg-mission-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.txlg-mission-text h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.txlg-mission-text p {
    color: #555;
    line-height: 1.8;
}

.txlg-about-timeline {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.txlg-timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

.txlg-timeline-item::before {
    content: '';
    position: absolute;
    left: 180px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.txlg-timeline-date {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
}

.txlg-timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.txlg-timeline-content p {
    color: #555;
    line-height: 1.6;
}

.txlg-about-contact {
    padding: 80px 0;
}

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

.txlg-contact-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.txlg-contact-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.txlg-contact-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.txlg-contact-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.txlg-contact-info {
    font-weight: 600;
    color: #667eea;
}

.txlg-about-policies {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.txlg-policy-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.txlg-policy-section h3 {
    margin-bottom: 20px;
}

.txlg-policy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.txlg-terms-list {
    list-style: none;
    padding-left: 0;
}

.txlg-terms-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.txlg-terms-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #667eea;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .txlg-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .txlg-dual-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .txlg-nav-menu {
        gap: 15px;
    }

    .txlg-nav-menu li a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .txlg-banner-section {
        height: 400px;
    }

    .txlg-slide-content h2 {
        font-size: 32px;
    }

    .txlg-slide-content p {
        font-size: 16px;
    }

    .txlg-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .txlg-section-title {
        font-size: 24px;
    }

    .txlg-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .txlg-about-intro {
        grid-template-columns: 1fr;
    }

    .txlg-mission-item {
        grid-template-columns: 1fr;
    }

    .txlg-timeline-item {
        grid-template-columns: 1fr;
    }

    .txlg-timeline-item::before {
        display: none;
    }
}