@import url('https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@400;600;700;900&display=swap');

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

:root {
    --deep-red: #9b1b30;
    --crimson: #c8102e;
    --gold: #d4a574;
    --gold-light: #e8c9a0;
    --dark-bg: #1a0a0e;
    --dark-bg-2: #2a1016;
    --dark-bg-3: #3d1820;
    --beige: #f5e6d3;
    --beige-dim: #c9b89f;
    --shadow: rgba(0, 0, 0, 0.5);
    --gradient-card: linear-gradient(145deg, #2a1016 0%, #1a0a0e 50%, #3d1820 100%);
    --gradient-red: linear-gradient(135deg, #9b1b30 0%, #c8102e 50%, #9b1b30 100%);
    --gradient-gold: linear-gradient(135deg, #d4a574 0%, #e8c9a0 50%, #d4a574 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif SC', serif;
    background-color: var(--dark-bg);
    color: var(--beige);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

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

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

/* ========== Header / Navigation ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26, 10, 14, 0.98) 0%, rgba(26, 10, 14, 0.95) 100%);
    border-bottom: 2px solid var(--deep-red);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 28px;
    color: var(--beige);
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(155, 27, 48, 0.6);
    position: relative;
}

.logo-icon::before {
    content: '♥';
    font-size: 24px;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.8);
}

.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a {
    color: var(--beige-dim);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--beige);
    background: rgba(155, 27, 48, 0.3);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(26, 10, 14, 0.8);
    border: 1px solid var(--deep-red);
    border-radius: 24px;
    padding: 6px 16px;
    gap: 8px;
    width: 240px;
    transition: border-color 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--gold);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--beige);
    font-size: 14px;
    width: 100%;
    font-family: inherit;
}

.search-box input::placeholder {
    color: var(--beige-dim);
}

.search-box button {
    background: var(--gradient-red);
    border: none;
    color: var(--gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.search-box button:hover {
    transform: scale(1.1);
}

/* ========== Hero Banner ========== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
    background: radial-gradient(ellipse at top, rgba(155, 27, 48, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at bottom right, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
                var(--dark-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%239b1b30' stroke-width='0.5' opacity='0.15'%3E%3Cpath d='M30 5 L35 25 L55 30 L35 35 L30 55 L25 35 L5 30 L25 25 Z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-banner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(155, 27, 48, 0.5);
}

.hero-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5e6d3 0%, #d4a574 50%, #f5e6d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--beige-dim);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-num {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 36px;
    color: var(--gold);
    display: block;
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
}

.hero-stats .stat-label {
    font-size: 13px;
    color: var(--beige-dim);
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--gold);
    box-shadow: 0 6px 25px rgba(155, 27, 48, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(155, 27, 48, 0.7);
    color: var(--gold-light);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--beige);
    border: 2px solid var(--deep-red);
}

.btn-outline:hover {
    background: rgba(155, 27, 48, 0.3);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-card {
    background: var(--gradient-card);
    border: 1px solid rgba(155, 27, 48, 0.4);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-card::before {
    content: '♥';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    color: var(--deep-red);
    opacity: 0.3;
    text-shadow: 0 0 40px rgba(155, 27, 48, 0.6);
}

.hero-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, #3d1820 0%, #1a0a0e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 10, 14, 0.4);
    transition: background 0.3s ease;
}

.play-btn {
    width: 72px;
    height: 72px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(155, 27, 48, 0.6);
    transition: transform 0.3s ease;
}

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

.play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--gold);
    margin-left: 4px;
}

.hero-card h3 {
    font-size: 24px;
    color: var(--beige);
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-card p {
    color: var(--beige-dim);
    font-size: 15px;
}

/* ========== Section Common ========== */
.section {
    padding: 70px 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title h2 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 36px;
    color: var(--beige);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title h2::before {
    content: '♥';
    color: var(--deep-red);
    font-size: 32px;
    text-shadow: 0 0 15px rgba(155, 27, 48, 0.6);
}

.section-title .more-link {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title .more-link:hover {
    color: var(--gold-light);
}

/* ========== Category Entry ========== */
.category-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--gradient-card);
    border: 1px solid rgba(155, 27, 48, 0.3);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.category-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(155, 27, 48, 0.5);
}

.category-card h3 {
    font-size: 20px;
    color: var(--beige);
    margin-bottom: 8px;
    font-weight: 700;
}

.category-card p {
    color: var(--beige-dim);
    font-size: 14px;
    margin-bottom: 16px;
}

.category-count {
    display: inline-block;
    background: rgba(155, 27, 48, 0.3);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

/* ========== Video Grid ========== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: var(--gradient-card);
    border: 1px solid rgba(155, 27, 48, 0.3);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #3d1820 0%, #1a0a0e 100%);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-red);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--beige);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(26, 10, 14, 0.3);
}

.video-card:hover .video-play {
    opacity: 1;
}

.video-play-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(155, 27, 48, 0.6);
}

.video-play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--gold);
    margin-left: 3px;
}

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

.video-info h3 {
    font-size: 18px;
    color: var(--beige);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--beige-dim);
}

.video-meta .rating {
    color: var(--gold);
    font-weight: 700;
}

.video-meta .views {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========== Filter / Tab ========== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-label {
    color: var(--beige-dim);
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--deep-red);
    color: var(--beige-dim);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gradient-red);
    color: var(--gold);
    border-color: var(--gold);
}

/* ========== Ranking ========== */
.ranking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ranking-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--deep-red);
    padding-bottom: 12px;
}

.ranking-tab {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 24px;
    color: var(--beige-dim);
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.ranking-tab:hover,
.ranking-tab.active {
    color: var(--gold);
    background: rgba(155, 27, 48, 0.2);
}

.ranking-list {
    list-style: none;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--gradient-card);
    border: 1px solid rgba(155, 27, 48, 0.2);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ranking-item:hover {
    transform: translateX(5px);
    border-color: var(--gold);
}

.ranking-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    background: rgba(155, 27, 48, 0.3);
    color: var(--beige-dim);
}

.ranking-item:nth-child(1) .ranking-num {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.ranking-item:nth-child(2) .ranking-num {
    background: linear-gradient(135deg, #ff8844, #cc6600);
    color: #fff;
}

.ranking-item:nth-child(3) .ranking-num {
    background: linear-gradient(135deg, #d4a574, #b8860b);
    color: #1a0a0e;
}

.ranking-thumb {
    width: 60px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3d1820 0%, #1a0a0e 100%);
}

.ranking-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-info h4 {
    font-size: 15px;
    color: var(--beige);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-info p {
    font-size: 12px;
    color: var(--beige-dim);
}

.ranking-score {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ========== About Page ========== */
.about-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(155, 27, 48, 0.4) 0%, transparent 60%), var(--dark-bg);
}

.about-hero h1 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 52px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    color: var(--beige-dim);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 70px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 36px;
    color: var(--beige);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--beige-dim);
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.story-img {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--gradient-card);
    border: 1px solid rgba(155, 27, 48, 0.3);
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--gradient-card);
    border: 1px solid rgba(155, 27, 48, 0.3);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--beige);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    color: var(--beige-dim);
    font-size: 15px;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--gradient-card);
    border: 1px solid rgba(155, 27, 48, 0.3);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, #3d1820 0%, #1a0a0e 100%);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 18px;
    color: var(--beige);
    margin-bottom: 6px;
}

.team-role {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-desc {
    color: var(--beige-dim);
    font-size: 13px;
    line-height: 1.6;
}

/* ========== Contact Page ========== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    background: var(--gradient-card);
    border: 1px solid rgba(155, 27, 48, 0.3);
    border-radius: 16px;
    padding: 36px;
}

.contact-card h2 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 28px;
    color: var(--beige);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card h2::before {
    content: '♥';
    color: var(--deep-red);
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(155, 27, 48, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--beige);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--beige-dim);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: var(--beige-dim);
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(26, 10, 14, 0.8);
    border: 1px solid var(--deep-red);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--beige);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========== Footer ========== */
.site-footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #12080b 100%);
    border-top: 2px solid var(--deep-red);
    padding: 60px 0 30px;
    margin-top: 60px;
}

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

.footer-col h4 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: var(--beige-dim);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--beige-dim);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(155, 27, 48, 0.3);
    border: 1px solid var(--deep-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: var(--gradient-red);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(155, 27, 48, 0.2);
}

.footer-bottom p {
    color: var(--beige-dim);
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-bottom a {
    color: var(--gold);
    margin: 0 6px;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: var(--beige-dim);
}

.breadcrumb a {
    color: var(--beige-dim);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--deep-red);
}

.breadcrumb .current {
    color: var(--gold);
}

/* ========== Page Title ========== */
.page-title-section {
    padding: 40px 0 20px;
    text-align: center;
}

.page-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 42px;
    color: var(--beige);
    margin-bottom: 12px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: var(--beige-dim);
    font-size: 16px;
}

/* ========== Variety / Anime Tab ========== */
.tab-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-switch-btn {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 20px;
    padding: 10px 32px;
    background: transparent;
    border: 2px solid var(--deep-red);
    color: var(--beige-dim);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-switch-btn:hover,
.tab-switch-btn.active {
    background: var(--gradient-red);
    color: var(--gold);
    border-color: var(--gold);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-banner {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 44px;
    }

    .ranking-layout {
        grid-template-columns: 1fr;
    }

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

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

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

    .story-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
        gap: 12px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .search-box {
        width: 100%;
        max-width: 300px;
    }

    .hero {
        padding: 40px 0 50px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stats .stat-num {
        font-size: 28px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .page-title {
        font-size: 32px;
    }

    .ranking-tabs {
        flex-wrap: wrap;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
}