* {
    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: #f5f5f5;
}

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

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

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

.txys-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.txys-logo-wrapper {
    flex-shrink: 0;
}

.txys-site-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.txys-logo-link {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.txys-logo-link:hover {
    color: #ffd700;
}

.txys-navigation-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.txys-nav-item {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.txys-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.txys-nav-item:hover::after,
.txys-nav-item.txys-active::after {
    width: 100%;
}

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

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

.txys-search-btn {
    padding: 10px 25px;
    background: #ffd700;
    color: #1e3c72;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.txys-search-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

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

.txys-banner-slider {
    width: 100%;
    height: 100%;
}

.txys-banner-item {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.txys-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.txys-banner-item::before {
    content: '';
    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));
    z-index: 1;
}

.txys-banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.txys-banner-desc {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.txys-banner-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ffd700;
    color: #1e3c72;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.txys-banner-btn:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

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

.txys-content-section {
    padding: 60px 0;
}

.txys-content-section.txys-alt-bg {
    background: #fff;
}

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

.txys-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    position: relative;
    padding-left: 15px;
}

.txys-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: #ffd700;
    border-radius: 3px;
}

.txys-more-link {
    color: #666;
    font-size: 16px;
    transition: color 0.3s ease;
}

.txys-more-link:hover {
    color: #1e3c72;
}

.txys-movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.txys-movie-grid.txys-large-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.txys-movie-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.txys-movie-poster {
    position: relative;
    padding-top: 140%;
    overflow: hidden;
}

.txys-poster-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.txys-movie-card:hover .txys-poster-image {
    transform: scale(1.1);
}

.txys-movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.txys-movie-card:hover .txys-movie-overlay {
    opacity: 1;
}

.txys-play-btn {
    padding: 12px 30px;
    background: #ffd700;
    color: #1e3c72;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.txys-play-btn:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.txys-episode-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 215, 0, 0.95);
    color: #1e3c72;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.txys-quality-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(30, 60, 114, 0.95);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.txys-movie-title {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.txys-movie-meta {
    padding: 0 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.txys-movie-rating {
    color: #ffd700;
    font-weight: 600;
}

.txys-featured-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.txys-featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.txys-featured-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.txys-feature-list {
    display: grid;
    gap: 25px;
}

.txys-feature-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.txys-feature-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.txys-feature-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.txys-feature-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.txys-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.txys-feature-img {
    width: 100%;
    height: auto;
}

.txys-footer-section {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.txys-footer-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.txys-footer-logo {
    color: #ffd700;
    font-weight: 700;
}

.txys-footer-desc {
    color: #ccc;
    line-height: 1.8;
    font-size: 14px;
}

.txys-footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffd700;
}

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

.txys-footer-links li {
    margin-bottom: 12px;
}

.txys-footer-link {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.txys-footer-link:hover {
    color: #ffd700;
}

.txys-footer-contact {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.txys-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.txys-social-icon {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    color: #ffd700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.txys-social-icon:hover {
    background: #ffd700;
    color: #1a1a1a;
}

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

.txys-copyright {
    color: #999;
    font-size: 14px;
}

.txys-page-banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.txys-page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.txys-page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.txys-filter-section {
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txys-filter-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

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

.txys-filter-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.txys-filter-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.txys-filter-btn {
    padding: 8px 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.txys-filter-btn:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

.txys-filter-btn.txys-filter-active {
    background: #1e3c72;
    color: #fff;
    border-color: #1e3c72;
}

.txys-about-content {
    padding: 60px 0;
}

.txys-about-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.txys-about-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 25px;
}

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

.txys-about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.txys-about-img {
    width: 100%;
}

.txys-mission-section,
.txys-values-section,
.txys-team-section,
.txys-contact-section {
    margin-bottom: 80px;
}

.txys-section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

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

.txys-mission-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.txys-mission-card:hover {
    transform: translateY(-5px);
}

.txys-mission-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.txys-mission-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
}

.txys-mission-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.txys-values-list {
    display: grid;
    gap: 40px;
}

.txys-value-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.txys-value-icon {
    width: 100%;
    border-radius: 10px;
}

.txys-value-title {
    font-size: 24px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 12px;
}

.txys-value-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.txys-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.txys-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1e3c72, #ffd700);
}

.txys-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.txys-timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffd700;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #1e3c72;
}

.txys-timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background: #1e3c72;
    color: #ffd700;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.txys-timeline-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 10px;
}

.txys-timeline-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

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

.txys-contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.txys-contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.txys-contact-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
}

.txys-contact-info {
    font-size: 18px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 10px;
}

.txys-contact-note {
    font-size: 14px;
    color: #666;
}

@media (max-width: 1024px) {
    .txys-navigation-menu {
        gap: 20px;
    }

    .txys-search-input {
        width: 180px;
    }

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

    .txys-featured-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .txys-header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .txys-navigation-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .txys-nav-item {
        font-size: 14px;
    }

    .txys-search-box {
        flex: 1;
    }

    .txys-banner-title {
        font-size: 32px;
    }

    .txys-banner-desc {
        font-size: 16px;
    }

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

    .txys-movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

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

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

    .txys-value-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .txys-value-icon {
        max-width: 200px;
        margin: 0 auto;
    }
}