/* 糖心影视 - 全局样式表 */

/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* 容器 */
.txys-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.txys-header-navigation {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.txys-header-navigation .txys-container-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txys-logo-section h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.txys-main-navigation {
    display: flex;
    gap: 2rem;
}

.txys-main-navigation a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.txys-main-navigation a:hover,
.txys-main-navigation a.txys-nav-active {
    background-color: rgba(255,255,255,0.2);
}

/* 首页样式 */
.txys-hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

.txys-watch-btn {
    background-color: #ff6b6b;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.txys-watch-btn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.6);
}

/* 内容区域 */
.txys-featured-movies,
.txys-trending-series,
.txys-variety-shows,
.txys-anime-zone,
.txys-features-section {
    padding: 3rem 0;
}

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

.txys-section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    position: relative;
    padding-left: 15px;
}

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

.txys-more-link {
    color: #667eea;
    font-size: 1rem;
    font-weight: 500;
}

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

/* 电影网格 */
.txys-movie-grid,
.txys-series-grid,
.txys-anime-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.txys-movie-card,
.txys-series-card,
.txys-anime-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

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

.txys-poster-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.txys-poster-wrapper:hover .txys-play-overlay {
    opacity: 1;
}

.txys-play-icon {
    font-size: 3rem;
    color: #fff;
}

.txys-movie-title,
.txys-series-info h3,
.txys-anime-info h3 {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.txys-movie-meta {
    padding: 0 1rem 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.txys-rating {
    padding: 0 1rem 1rem;
    color: #f39c12;
    font-weight: bold;
}

/* 电视剧卡片 */
.txys-series-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.txys-series-info {
    padding: 1rem;
}

.txys-series-status {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.txys-hot-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
}

/* 综艺列表 */
.txys-variety-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.txys-variety-item {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.txys-variety-item:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.txys-variety-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.txys-variety-details {
    flex: 1;
    padding: 1.5rem;
}

.txys-variety-details h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.txys-variety-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.txys-variety-tag {
    display: inline-block;
    background: #e8f4f8;
    color: #3498db;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* 特色功能 */
.txys-features-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
}

.txys-center-title {
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.txys-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.txys-feature-box {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.txys-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.txys-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.txys-feature-box h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.txys-feature-box p {
    color: #555;
    line-height: 1.8;
}

/* 页脚 */
.txys-footer-section {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.txys-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.txys-footer-column p {
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

.txys-footer-links a {
    color: #bdc3c7;
}

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

.txys-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* 内页通用样式 */
.txys-page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.txys-banner-overlay {
    text-align: center;
    color: #fff;
    z-index: 10;
}

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

.txys-page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* 电影页面样式 */
.txys-filter-bar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.txys-filter-label {
    font-weight: bold;
    color: #2c3e50;
}

.txys-filter-btn {
    background: #f8f9fa;
    color: #555;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

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

.txys-movies-collection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.txys-movie-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

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

.txys-poster-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txys-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.txys-poster-image:hover .txys-hover-info {
    opacity: 1;
}

.txys-play-button {
    background: #ff6b6b;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.txys-play-button:hover {
    background: #ff5252;
}

.txys-brief-intro {
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
}

.txys-item-title {
    padding: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.txys-item-meta {
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.txys-year {
    color: #7f8c8d;
}

.txys-score {
    color: #f39c12;
    font-weight: bold;
}

/* 分页 */
.txys-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.txys-page-btn,
.txys-page-num {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #555;
}

.txys-page-btn:hover,
.txys-page-num:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

.txys-active-page {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

.txys-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.txys-disabled:hover {
    background: #fff;
    color: #555;
    border-color: #ddd;
}

/* 电视剧页面样式 */
.txys-category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.txys-tab-btn {
    background: #fff;
    color: #555;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.txys-series-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.txys-series-block {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.txys-series-block:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.txys-series-poster {
    position: relative;
    width: 280px;
    flex-shrink: 0;
}

.txys-series-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txys-update-badge,
.txys-complete-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

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

.txys-series-detail {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.txys-series-detail h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.txys-series-intro {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.txys-series-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.txys-series-tags span {
    background: #e8f4f8;
    color: #3498db;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.txys-watch-series-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    align-self: flex-start;
}

.txys-watch-series-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

/* 综艺页面样式 */
.txys-variety-filter {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.txys-filter-title {
    font-weight: bold;
    color: #2c3e50;
}

.txys-filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.txys-filter-tag {
    background: #f8f9fa;
    color: #555;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

.txys-filter-tag:hover,
.txys-selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.txys-subsection-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.txys-featured-variety {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.txys-variety-card-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.txys-variety-card-large img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.txys-variety-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    padding: 2rem;
    color: #fff;
}

.txys-variety-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.txys-variety-summary {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.txys-variety-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.txys-variety-play {
    background: #ff6b6b;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: bold;
}

.txys-variety-play:hover {
    background: #ff5252;
}

.txys-variety-grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.txys-variety-item-card {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.txys-variety-item-card:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.txys-variety-thumb {
    position: relative;
    width: 200px;
    flex-shrink: 0;
}

.txys-variety-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.txys-episode-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.txys-variety-info {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.txys-variety-info h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.txys-variety-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.txys-info-tags {
    display: flex;
    gap: 1rem;
}

.txys-tag-variety {
    background: #e8f4f8;
    color: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.txys-rating-variety {
    color: #f39c12;
    font-weight: bold;
    font-size: 0.9rem;
}

/* 动漫页面样式 */
.txys-anime-categories {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txys-category-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.txys-category-selector:last-child {
    margin-bottom: 0;
}

.txys-category-selector label {
    font-weight: bold;
    color: #2c3e50;
    min-width: 60px;
}

.txys-cat-btn {
    background: #f8f9fa;
    color: #555;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

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

.txys-anime-section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.txys-anime-new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.txys-anime-new-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.txys-anime-new-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.txys-anime-poster {
    position: relative;
}

.txys-anime-poster img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.txys-anime-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.txys-anime-new-card h4 {
    padding: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.txys-anime-desc {
    padding: 0 1rem;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.txys-anime-footer {
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txys-anime-type {
    background: #e8f4f8;
    color: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.txys-anime-score {
    color: #f39c12;
    font-weight: bold;
    font-size: 0.9rem;
}

.txys-anime-recommend-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.txys-anime-recommend-item {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.txys-anime-recommend-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.txys-anime-cover {
    width: 280px;
    flex-shrink: 0;
}

.txys-anime-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txys-anime-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.txys-anime-content h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.txys-anime-intro {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.txys-anime-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.txys-anime-details span {
    color: #7f8c8d;
}

.txys-anime-watch-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    align-self: flex-start;
}

.txys-anime-watch-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

/* 关于我们页面样式 */
.txys-about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.txys-about-hero-content {
    text-align: center;
    color: #fff;
}

.txys-about-main-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.txys-about-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.txys-about-introduction {
    padding: 3rem 0;
}

.txys-intro-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.txys-intro-text {
    flex: 1;
}

.txys-intro-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.txys-intro-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.txys-intro-image {
    width: 400px;
    flex-shrink: 0;
}

.txys-intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txys-platform-advantages {
    padding: 4rem 0;
    background: #f8f9fa;
}

.txys-section-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.txys-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.txys-advantage-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.txys-advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.txys-advantage-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.txys-advantage-card p {
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.txys-core-values {
    padding: 4rem 0;
}

.txys-values-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.txys-value-item {
    text-align: center;
    padding: 2rem;
}

.txys-value-item h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: bold;
}

.txys-value-item p {
    color: #555;
    line-height: 1.8;
}

.txys-contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.txys-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.txys-contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.txys-contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.txys-contact-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.txys-contact-card p {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.txys-contact-desc {
    font-size: 0.9rem !important;
    color: #7f8c8d !important;
}

.txys-contact-message {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txys-contact-message p {
    color: #555;
    line-height: 1.8;
    text-align: center;
    font-size: 1.05rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .txys-movie-grid,
    .txys-series-grid,
    .txys-anime-grid,
    .txys-movies-collection,
    .txys-anime-new-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .txys-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .txys-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .txys-main-navigation {
        gap: 1rem;
    }

    .txys-main-navigation a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

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

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

    .txys-movie-grid,
    .txys-series-grid,
    .txys-anime-grid,
    .txys-movies-collection,
    .txys-anime-new-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .txys-features-grid,
    .txys-advantages-grid,
    .txys-values-layout,
    .txys-contact-info {
        grid-template-columns: 1fr;
    }

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

    .txys-variety-item,
    .txys-series-block,
    .txys-anime-recommend-item {
        flex-direction: column;
    }

    .txys-variety-item img,
    .txys-series-poster,
    .txys-anime-cover {
        width: 100%;
    }

    .txys-featured-variety,
    .txys-variety-grid-list {
        grid-template-columns: 1fr;
    }

    .txys-intro-content {
        flex-direction: column;
    }

    .txys-intro-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .txys-logo-section h1 {
        font-size: 1.3rem;
    }

    .txys-main-navigation {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .txys-movie-grid,
    .txys-series-grid,
    .txys-anime-grid,
    .txys-movies-collection,
    .txys-anime-new-grid {
        grid-template-columns: 1fr;
    }
}