/* ============================================
   全局样式 - 体育新闻网站
   配色方案：深蓝 #0d1b2a + 翠绿 #00c853 + 金色 #ffd600
   ============================================ */

:root {
  --primary-dark: #0d1b2a;
  --primary-blue: #1b2838;
  --accent-green: #00c853;
  --accent-gold: #ffd600;
  --text-light: #e0e0e0;
  --text-white: #ffffff;
  --bg-card: #162232;
  --bg-section: #0f1923;
  --border-subtle: rgba(255,255,255,0.08);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: 'PingFang SC','Microsoft YaHei','Helvetica Neue',Arial,sans-serif;
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ============================================
   顶部导航
   ============================================ */

.site-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  border-bottom: 2px solid var(--accent-green);
  padding: 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

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

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  color: var(--text-light);
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-green);
  background: rgba(0,200,83,0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-green), #00e676) !important;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  margin-left: 12px;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold), #ffea00) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,200,83,0.3);
}

/* 移动端汉堡菜单 */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================
   Hero 横幅
   ============================================ */

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.6) 0%, rgba(13,27,42,0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent-green);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-green), #00e676);
  color: var(--primary-dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all var(--transition-med);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,200,83,0.4);
  color: var(--primary-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid var(--accent-green);
  transition: all var(--transition-med);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--accent-green);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================
   通用容器
   ============================================ */

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

.section-block {
  padding: 60px 0;
}

.section-block:nth-child(even) {
  background: var(--bg-section);
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-green);
  border-radius: 2px;
}

.section-heading p {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   新闻卡片网格
   ============================================ */

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

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-med);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-green);
}

.news-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

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

.news-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-green);
  color: var(--primary-dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.news-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(224,224,224,0.6);
}

/* ============================================
   实时数据模块
   ============================================ */

.live-data-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0a1628 100%);
}

.data-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.data-table thead {
  background: rgba(0,200,83,0.15);
}

.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-green);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.data-table tbody tr:hover {
  background: rgba(0,200,83,0.05);
}

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

.team-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* ============================================
   赛程模块
   ============================================ */

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

.schedule-item {
  display: grid;
  grid-template-columns: 120px 1fr 100px 1fr 120px;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.schedule-item:hover {
  border-color: var(--accent-green);
  box-shadow: 0 4px 20px rgba(0,200,83,0.1);
}

.schedule-time {
  text-align: center;
}

.schedule-time .date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.schedule-time .time {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

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

.schedule-team.away {
  flex-direction: row-reverse;
  text-align: right;
}

.schedule-team-name {
  font-weight: 600;
  color: var(--text-white);
  font-size: 1rem;
}

.schedule-vs {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-green);
}

.schedule-league {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(0,200,83,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================
   作者信息
   ============================================ */

.author-box {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-subtle);
  align-items: flex-start;
}

.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.author-info h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.author-info .author-title {
  font-size: 0.9rem;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.author-info p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   用户评论
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-subtle);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-white);
  font-size: 1rem;
}

.reviewer-city {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 10px;
}

.review-date {
  font-size: 0.8rem;
  color: rgba(224,224,224,0.5);
}

/* ============================================
   FAQ 手风琴
   ============================================ */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-white);
  font-size: 1rem;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(0,200,83,0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-green);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ============================================
   关于我们
   ============================================ */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ============================================
   牌照模块
   ============================================ */

.license-section {
  text-align: center;
}

.license-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.license-badge-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-subtle);
  width: 220px;
  text-align: center;
}

.license-badge-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border-radius: 50%;
}

.license-badge-item h4 {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.license-badge-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   客户支持
   ============================================ */

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

.support-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-med);
}

.support-card:hover {
  border-color: var(--accent-green);
  transform: translateY(-4px);
}

.support-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(0,200,83,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.support-card h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.support-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   面包屑导航
   ============================================ */

.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-light);
}

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

.breadcrumb span {
  color: rgba(224,224,224,0.5);
  margin: 0 8px;
}

/* ============================================
   页脚
   ============================================ */

.site-footer {
  background: linear-gradient(180deg, var(--primary-blue) 0%, #060d17 100%);
  border-top: 2px solid var(--accent-green);
  padding: 50px 0 0;
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 14px;
  color: var(--text-light);
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-green);
}

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

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

.footer-col ul li a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-green);
  color: var(--primary-dark);
}

.footer-payments {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-payments img {
  height: 32px;
  width: auto;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  padding: 4px 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(224,224,224,0.5);
  line-height: 1.8;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 10px auto;
}

.disclaimer-bar {
  background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin: 20px 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   内页样式
   ============================================ */

.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: var(--text-light);
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.article-content h2 {
  font-size: 1.6rem;
  color: var(--text-white);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-green);
}

.article-content h3 {
  font-size: 1.2rem;
  color: var(--accent-green);
  margin: 24px 0 12px;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.article-content figure {
  margin: 24px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.article-content figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 10px;
  background: var(--bg-card);
}

.article-content ul, .article-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

/* ============================================
   APP下载页面
   ============================================ */

.app-download-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.app-feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.app-feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(0,200,83,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.app-feature-card h3 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.app-feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ============================================
   体育小卡片
   ============================================ */

.sport-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.sport-mini-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-med);
  text-align: center;
}

.sport-mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
  box-shadow: 0 6px 20px rgba(0,200,83,0.15);
}

.sport-mini-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.sport-mini-card h4 {
  padding: 12px 10px 4px;
  font-size: 0.95rem;
  color: var(--text-white);
}

.sport-mini-card p {
  padding: 0 10px 14px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   响应式设计
   ============================================ */

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-item {
    grid-template-columns: 80px 1fr 60px 1fr 80px;
    padding: 14px 16px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 12px 0;
    gap: 4px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 12px 16px;
    width: 100%;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .schedule-item {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .schedule-team,
  .schedule-team.away {
    justify-content: center;
    flex-direction: row;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .app-features {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .section-heading h2 {
    font-size: 1.5rem;
  }
  .page-hero-content h1 {
    font-size: 1.6rem;
  }
  .sport-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .license-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero-section {
    min-height: 400px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .sport-cards-grid {
    grid-template-columns: 1fr;
  }
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}
