/* =============================================
   湘BA前线 - 湖南体育资讯站
   Hunan Basketball News Portal
   ============================================= */

/* --- CSS 变量 --- */
:root {
    --primary: #e85d04;
    --primary-dark: #d44c00;
    --primary-light: #ff8a2e;
    --secondary: #004e89;
    --secondary-dark: #003b68;
    --accent: #ffd60a;
    --accent-dark: #e6b800;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --gray-900: #16213e;
    --gray-800: #1e2a4a;
    --gray-700: #2a3a5c;
    --gray-600: #3d4f70;
    --gray-400: #8899b0;
    --gray-300: #b0c0d0;
    --gray-200: #d0d8e0;
    --gray-100: #e8ecf0;
    --white: #ffffff;
    --bg-light: #f5f7fa;
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;

    --font-main: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Global --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    line-height: 1;
    animation: bounceBall 2s infinite ease-in-out;
}

@keyframes bounceBall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--gray-400);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(232, 93, 4, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 214, 10, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 78, 137, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, var(--darker) 0%, var(--dark) 30%, var(--gray-900) 70%, var(--darker) 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--darker) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--gray-300);
    margin-bottom: 50px;
    letter-spacing: 6px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.hero-stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 1rem;
    color: var(--gray-400);
    letter-spacing: 2px;
}

.pulse {
    animation: pulseNum 2s infinite;
}

@keyframes pulseNum {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* --- Section通用 --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
}

.section-dark .section-title,
.section-dark .section-desc {
    color: var(--white);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-icon {
    font-size: 1.8rem;
}

.section-desc {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 50px;
    font-size: 1rem;
}

/* --- Match / 赛程 --- */
.match-controls {
    text-align: center;
    margin-bottom: 30px;
}

.match-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.match-tab {
    padding: 10px 24px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition);
}

.match-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.match-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.match-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.match-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--gray-200);
}

.match-round {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
    min-width: 60px;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.match-team {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.match-vs {
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 600;
}

.match-score {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 80px;
    text-align: center;
}

.match-score .badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}

.badge-win {
    background: #e8f8f0;
    color: var(--success);
    font-weight: 600;
}

.badge-live {
    background: #fef0e6;
    color: var(--primary);
    font-weight: 600;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.match-upcoming .match-score {
    color: var(--gray-400);
    font-size: 1rem;
}

.match-venue {
    font-size: 0.8rem;
    color: var(--gray-400);
    min-width: 120px;
    text-align: right;
}

.match-date {
    font-size: 0.8rem;
    color: var(--gray-500);
    min-width: 100px;
    text-align: left;
}

/* --- 积分榜 --- */
.standings-container {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    padding: 4px;
    overflow-x: auto;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.standings-table th {
    padding: 18px 16px;
    text-align: left;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.standings-table td {
    padding: 16px;
    font-size: 0.95rem;
    color: var(--gray-200);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.standings-table tbody tr {
    transition: var(--transition);
    cursor: default;
}

.standings-table tbody tr:hover {
    background: rgba(255,255,255,0.04);
}

.standings-table .team-col {
    min-width: 150px;
}

.standings-table .team-name {
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.standings-table .team-rank {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
}

.rank-1 { background: var(--accent); color: var(--dark); }
.rank-2 { background: var(--gray-400); color: var(--dark); }
.rank-3 { background: #cd7f32; color: var(--white); }
.rank-other { background: rgba(255,255,255,0.08); color: var(--gray-300); }

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.status-win { background: var(--success); }
.status-loss { background: var(--danger); }

/* --- 新闻 --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-card-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.news-card-body {
    padding: 20px;
}

.news-card-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tag-hot { background: #fef0e6; color: var(--primary); }
.tag-match { background: #e8f4fd; color: var(--secondary); }
.tag-player { background: #e8f8f0; color: var(--success); }

.news-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* --- 数据统计 --- */
.stats-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stats-tab {
    padding: 10px 28px;
    border: 2px solid rgba(255,255,255,0.15);
    background: transparent;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
    transition: var(--transition);
}

.stats-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.stats-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}

.stats-list {
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    margin-bottom: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(4px);
}

.stat-rank-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.08);
    color: var(--gray-300);
}

.stat-rank-1 { background: var(--accent); color: var(--dark); }
.stat-rank-2 { background: var(--gray-400); color: var(--dark); }
.stat-rank-3 { background: #cd7f32; color: var(--white); }

.stat-player-name {
    flex: 1;
    font-weight: 600;
    color: var(--white);
}

.stat-player-team {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.stat-player-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 40px;
    text-align: right;
}

.stat-player-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* --- 关于 --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--gray-700);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-contact {
    padding: 30px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.about-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-contact p {
    margin-bottom: 12px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-contact i {
    width: 20px;
    color: var(--primary);
}

.contact-note {
    margin-top: 20px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
    background: var(--darker);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 10px;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

/* --- 响应式 --- */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 6px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .match-card {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }

    .match-teams {
        width: 100%;
    }

    .match-venue,
    .match-date {
        text-align: center;
        min-width: unset;
    }

    .hero-stats {
        gap: 30px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .standings-table {
        font-size: 0.85rem;
    }

    .standings-table th,
    .standings-table td {
        padding: 12px 10px;
    }
}

/* --- 管理入口按钮 --- */
.admin-entry {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1.2rem;
    z-index: 999;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.admin-entry:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(30deg);
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 2px;
        font-size: 2.5rem;
    }

    .hero-subtitle {
        letter-spacing: 3px;
        font-size: 0.9rem;
    }

    .hero-stat-num {
        font-size: 2rem;
    }

    .match-tabs {
        gap: 6px;
    }

    .match-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }

    .match-card {
        padding: 16px;
        gap: 8px;
    }

    .match-team {
        font-size: 0.95rem;
    }

    .match-score {
        font-size: 1.2rem;
        min-width: 60px;
    }

    .news-card-title {
        font-size: 1rem;
    }

    .stats-tab {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .standings-table {
        font-size: 0.78rem;
    }

    .standings-table th,
    .standings-table td {
        padding: 10px 8px;
    }

    .stat-item {
        padding: 12px 16px;
        gap: 12px;
    }

    .container {
        padding: 0 14px;
    }

    .hero {
        min-height: 85vh;
    }

    .about-contact {
        padding: 20px;
    }
}

/* 针对超小屏优化积分榜横滑 */
.standings-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
}

/* 触屏设备点击反馈 */
@media (hover: none) {
    .match-card:active,
    .news-card:active,
    .stat-item:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }

    .match-tab:active,
    .stats-tab:active {
        transform: scale(0.95);
    }

    .nav-link:active {
        background: rgba(255,255,255,0.12);
    }
}

/* === 新增移动端专项优化 === */

/* 积分榜 - 手机上更紧凑 */
@media (max-width: 640px) {
    .standings-table th:nth-child(3),
    .standings-table td:nth-child(3),
    .standings-table th:nth-child(4),
    .standings-table td:nth-child(4),
    .standings-table th:nth-child(5),
    .standings-table td:nth-child(5),
    .standings-table th:nth-child(6),
    .standings-table td:nth-child(6) {
        display: table-cell;
    }

    /* 比赛卡 - 更紧凑 */
    .match-card {
        padding: 14px 12px !important;
        margin-bottom: 10px;
    }

    .match-round {
        font-size: 0.75rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 2px 8px;
    }

    /* 导航 - 顶部更紧凑 */
    .header {
        height: 60px;
    }

    .logo-text .logo-name {
        font-size: 1rem;
    }

    .logo-text .logo-sub {
        display: none;
    }

    /* 互动专区卡片 - 手机横排变竖排 */
    .section-dark .container > div[style*="flex"] {
        flex-direction: column !important;
        align-items: center !important;
    }

    .section-dark .container > div[style*="flex"] > a {
        max-width: 100% !important;
        width: 100%;
    }
}

/* 极小屏优化 */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2rem !important;
    }

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

    .hero-stat-num {
        font-size: 1.5rem !important;
    }

    .standings-table {
        font-size: 0.7rem;
    }

    .standings-table th,
    .standings-table td {
        padding: 8px 5px;
    }

    .team-col {
        min-width: 50px;
    }

    .stats-tabs {
        gap: 4px;
    }

    .stats-tab {
        padding: 6px 12px;
        font-size: 0.72rem;
    }
}

/* 手机横屏适配 */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }
}

/* 触摸优化 - 按钮最小尺寸 */
@media (pointer: coarse) {
    .match-tab,
    .stats-tab,
    .guess-team,
    .nav-link,
    .guess-submit,
    .vote-btn {
        min-height: 44px;
    }

    .admin-entry {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        bottom: 24px;
        right: 24px;
    }
}
