
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

:root {
    --primary-color: #1a6dff;
    --secondary-color: #ff4a1c;
    --accent-color: #00c853;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --border-color: #e2e8f0;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
html {
  scroll-behavior: smooth;
}
body {
    background-color: #f9fafb;
    color: #334155;
    line-height: 1.6;
}

a{
    text-decoration: none;
    color: #334155;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo i {
    color: var(--primary-color);
    font-size: 32px;
}

.logo h1 {
    font-size: 24px;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions button {
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.register-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.user-actions button:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

/* 主要内容区 */
main {
    padding: 30px 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.section-title h2 {
    font-size: 22px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-color);
}

.live-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--secondary-color);
}

/* 直播模块 */
.live-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.live-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.live-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.live-header {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-sport {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.live-content {
    padding: 20px;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.team-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 24px;
}

.team-name {
    font-weight: 600;
    text-align: center;
}

.vs {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-color);
}

.match-info {
    text-align: center;
    color: var(--gray-color);
    font-size: 14px;
    margin-top: 10px;
}

/* 录像模块 */
.replay-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.replay-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}

.replay-card:hover {
    transform: translateY(-3px);
}

.replay-thumbnail {
    height: 160px;
    background-color: #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    font-size: 48px;
}

.replay-play-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
}

.replay-info {
    padding: 15px;
}

.replay-title {
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.replay-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray-color);
    font-size: 14px;
}

/* 对阵模块 */
.fixtures-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.fixture-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.fixture-league {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.fixture-league i {
    color: var(--accent-color);
}

.fixture-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}

.fixture-teams {
    flex: 1;
}

.fixture-time {
    color: var(--gray-color);
    font-size: 14px;
}

/* 新闻模块 */
.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.news-image {
    height: 160px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    font-size: 40px;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 18px;
}

.news-excerpt {
    color: var(--gray-color);
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray-color);
    font-size: 14px;
}

/* 友情链接模块 */
.links-container {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    margin-bottom: 40px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.link-item {
    background-color: #f8fafc;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

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

/* 底部样式 */
footer {
    background-color: var(--dark-color);
    color: #cbd5e1;
    padding: 40px 0 20px;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-links li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-links li:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 14px;
}

/* 响应式设计 */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .intro-container {
                flex-direction: column;
                text-align: center;
            }
            
            .intro-content p {
                margin: 0 auto 20px;
            }
            
            .intro-features {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .live-container,
            .replay-container,
            .fixtures-container,
            .news-container {
                grid-template-columns: 1fr;
            }
            
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .user-actions {
                width: 100%;
                justify-content: center;
            }
            
            .site-intro {
                padding: 30px 0;
            }
            
            .intro-content h2 {
                font-size: 28px;
            }
            
            .intro-content p {
                font-size: 16px;
            }
            
            .stats-value {
                font-size: 36px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .links-grid {
                grid-template-columns: 1fr;
            }
            
            .intro-content h2 {
                font-size: 24px;
            }
            
            .intro-features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-item {
                width: 100%;
                justify-content: center;
            }
        }
.cursor_pointer{
    cursor:pointer;
}

/* 网站介绍模块 */
        .site-intro {
            background: linear-gradient(135deg, #1a6dff 0%, #4d94ff 100%);
            color: white;
            padding: 40px 0;
            margin-bottom: 30px;
            border-radius: 0 0 12px 12px;
        }
        
        .intro-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .intro-content {
            flex: 1;
            min-width: 300px;
        }
        
        .intro-content h2 {
            font-size: 32px;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .intro-content p {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.95;
            max-width: 600px;
        }
        
        .intro-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
        }
        
        .feature-item i {
            font-size: 14px;
        }
        
        .intro-stats {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 12px;
            min-width: 250px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .stats-value {
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
        }
        
        .stats-label {
            font-size: 16px;
            margin-top: 8px;
            opacity: 0.9;
        }
.team-logo img{
    width: 100%;
}
.time{
    text-align: center;
    display: block;
}
.countdown-module {
  width: 100%;
  background: #fff;
  border-radius: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .02), 0 1px 2px rgba(0, 0, 0, .03), 0 0 0 1px #eaeef4 inset;
  padding: 2rem 1.8rem 2.2rem;
  text-align: center;
}

.title-section {
  margin-bottom: 1.8rem;
}

.tournament {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f4fa;
  padding: 5px 16px;
  border-radius: 60px;
  margin-bottom: 1rem;
}

.tournament span:first-child,
.tournament span:last-child {
  font-size: 1.2rem;
  opacity: .7;
}

.tournament-name {
  font-weight: 550;
  font-size: .85rem;
  letter-spacing: .5px;
  color: #2c4c6c;
}

h2 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #1a3e54;
  letter-spacing: -.3px;
  margin-bottom: 6px;
}

.host {
  font-size: .8rem;
  color: #6f8ea3;
  background: #f0f4f9;
  display: inline-block;
  padding: 3px 14px;
  border-radius: 30px;
  font-weight: 450;
}

.date-note {
  font-size: .75rem;
  color: #8da3b3;
  margin-top: 8px;
  border-top: 1px solid #e6edf4;
  display: inline-block;
  padding-top: 8px;
}

.countdown-container {
  margin: 1.8rem 0 1rem;
}

.timer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.time-card {
  background: #fafcff;
  border-radius: 32px;
  padding: .9rem 1rem;
  min-width: 108px;
  text-align: center;
  transition: all .2s ease;
  border: 1px solid #eef2f8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
}

.time-card:hover {
  background: #fff;
  border-color: #dce5ef;
  transform: translateY(-3px);
}

.time-number {
  font-size: 3.8rem;
  font-weight: 650;
  color: #1f618d;
  line-height: 1.1;
  font-family: 'Inter', 'SF Mono', 'JetBrains Mono', monospace;
  letter-spacing: 2px;
}

.time-unit-label {
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: #7c99ae;
  margin-top: 8px;
}

.subtle-message {
  background: #f3f7fc;
  border-radius: 60px;
  padding: 8px 18px;
  width: fit-content;
  margin: 12px auto 0;
  font-size: .8rem;
  font-weight: 450;
  color: #3b6e8b;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-info {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: .7rem;
  color: #96aeba;
  border-top: 1px solid #eef3f9;
  padding-top: 1.3rem;
}

.footer-info span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dot {
  width: 4px;
  height: 4px;
  background: #cbdae3;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

@media (max-width: 560px) {
  .countdown-module {
    padding: 1.5rem 1rem;
    border-radius: 36px;
  }
  h2 {
    font-size: 1.5rem;
  }
  .time-number {
    font-size: 2.8rem;
  }
  .time-card {
    min-width: 80px;
    padding: .7rem .5rem;
  }
  .timer-grid {
    gap: .7rem;
  }
}

@media (max-width: 450px) {
  .time-number {
    font-size: 2.2rem;
  }
  .time-card {
    min-width: 70px;
  }
  .time-unit-label {
    font-size: .65rem;
    letter-spacing: 1px;
  }
}


.match-info div:first-child {
    font-weight: bold;
    color: #333;
}
.watch-now-btn {
    text-align: center;
    margin-top: 1em;
}
.btn-watch {
    display: inline-block;
    background: linear-gradient(90deg, #ff5722, #ff784b);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}
.btn-watch:hover {
    background: linear-gradient(90deg, #ff784b, #ff5722);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255,87,34,0.4);
    color: white;
    text-decoration: none;
}

.world-clock-adaptive{width:100%;height:auto;background:rgba(248,250,252,0.96);border-radius:1.5rem;box-shadow:0 2px 8px rgba(0,0,0,0.03),0 1px 2px rgba(0,0,0,0.03);padding:0.9rem 1rem 1rem;font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',sans-serif;transition:all 0.1s ease;border:1px solid #eef2f6}.adaptive-header{text-align:center;margin-bottom:0.8rem;display:flex;align-items:baseline;justify-content:center;gap:6px;flex-wrap:wrap}.adaptive-header h3{font-size:clamp(0.85rem,4vw,1.05rem);font-weight:580;color:#2c4b5e;letter-spacing:-0.2px;background:#eef3f8;display:inline-block;padding:0.2rem 0.7rem;border-radius:40px;white-space:nowrap}.adaptive-header span{font-size:clamp(0.6rem,3vw,0.7rem);color:#6a7e8f;white-space:nowrap}.local-strip-adaptive{background:#f1f5f9;border-radius:2rem;padding:0.4rem 1rem;margin-bottom:1rem;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:8px;font-size:clamp(0.7rem,3.5vw,0.8rem);border:1px solid #e4e9ef}.local-label-adaptive{display:flex;align-items:center;gap:6px;flex-wrap:wrap;background:#ffffffb3;padding:0.2rem 0.8rem;border-radius:2rem}.local-label-adaptive span:first-child{font-weight:550;color:#2c6a82;font-size:clamp(0.7rem,3vw,0.8rem)}.local-date-cn{font-size:clamp(0.65rem,3vw,0.75rem);color:#3c6277;white-space:nowrap}.live-time-adaptive{font-family:'JetBrains Mono','SF Mono',monospace;font-weight:500;background:#1f2f38;color:#f0f6fe;padding:0.2rem 0.7rem;border-radius:2rem;font-size:clamp(0.75rem,3.5vw,0.85rem);letter-spacing:0.3px}.cities-grid-adaptive{display:grid;grid-template-columns:repeat(auto-fill,minmax(165px,1fr));gap:0.75rem;width:100%}.city-card-adaptive{background:#ffffffdd;border-radius:1.2rem;padding:0.7rem 0.8rem 0.75rem 0.9rem;transition:all 0.15s;border:1px solid #ecf1f6;box-shadow:0 1px 2px rgba(0,0,0,0.02);width:100%}.city-card-adaptive:hover{background:#fff;border-color:#d6e2ed;transform:translateY(-1px)}.city-name-adaptive{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:0.35rem;font-size:clamp(0.75rem,3.5vw,0.88rem);font-weight:600;color:#1f495e;border-bottom:1px dashed #e2e8f0;padding-bottom:0.2rem;flex-wrap:wrap;gap:4px}.city-main-adaptive{font-size:clamp(0.78rem,3.5vw,0.9rem);font-weight:620;white-space:nowrap}.offset-adaptive{font-size:clamp(0.55rem,2.8vw,0.65rem);font-family:monospace;background:#eef2f7;padding:0.1rem 0.45rem;border-radius:20px;color:#2c6280;white-space:nowrap}.time-adaptive{font-family:'JetBrains Mono','SF Mono',monospace;font-size:clamp(1.1rem,5vw,1.55rem);font-weight:550;letter-spacing:0.5px;color:#0a2b38;margin:0.3rem 0 0.2rem;line-height:1.2;word-break:keep-all}.date-adaptive{font-size:clamp(0.55rem,2.8vw,0.68rem);color:#7b8e9e;display:flex;gap:6px;flex-wrap:wrap;margin-top:4px}.date-adaptive span{background:#eff3f8;padding:0.1rem 0.5rem;border-radius:16px;white-space:nowrap}@media(max-width:480px){.cities-grid-adaptive{grid-template-columns:1fr;gap:0.6rem}.time-adaptive{font-size:1.25rem}.local-strip-adaptive{flex-direction:column;align-items:stretch;text-align:center}.local-label-adaptive{justify-content:center}.city-name-adaptive{flex-direction:row;justify-content:space-between}}@media(min-width:1200px){.cities-grid-adaptive{grid-template-columns:repeat(6,minmax(150px,1fr))}}@media(min-width:800px) and (max-width:1199px){.cities-grid-adaptive{grid-template-columns:repeat(auto-fill,minmax(170px,1fr))}}.hidden-footer{display:none}