/* Sports Landing Page Custom Styles */

/* Imigongo Pattern Styles */
.imigongo-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/><path d="M50,0 L50,100 M0,50 L100,50" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.imigongo-pattern-side {
  position: absolute;
  width: 150px;
  height: 100%;
  top: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 1;
  pointer-events: none;
}

.imigongo-pattern-side.left {
  left: 0;
}

.imigongo-pattern-side.right {
  right: 0;
}

.imigongo-pattern-top {
  position: absolute;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 1;
  pointer-events: none;
}

.imigongo-pattern-accent {
  position: absolute;
  width: 50px;
  height: 100%;
  top: 0;
  right: 30px;
  background: linear-gradient(
    to bottom,
    rgba(220, 38, 38, 0.1),
    rgba(220, 38, 38, 0.05),
    rgba(220, 38, 38, 0.02)
  );
  z-index: 1;
  pointer-events: none;
}

.imigongo-divider {
  height: 4px;
  width: 60px;
  background: linear-gradient(to right, #ef4444, transparent);
  margin: 15px 0;
}

/* Hero Section */
.sports-hero-section {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.home-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.banner-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.banner-description {
  font-size: 1.1rem;
}

/* Breaking News Ticker */
.breaking-news-ticker {
  padding: 10px 0;
  color: white;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
}

.ticker-label {
  background: linear-gradient(135deg, #1e5273, #1e293b);
  padding: 5px 15px;
  font-weight: bold;
  margin-right: 15px;
  white-space: nowrap;
}

.ticker-content {
  flex: 1;
  overflow: hidden;
}

.ticker-swiper .swiper-slide {
  font-size: 1rem;
  padding: 0 10px;
}

/* Featured News */
.featured-news-section {
  position: relative;
}

.featured-news-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.featured-image {
  position: relative;
  height: 300px;
}

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

.category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #dc2626;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
}

.featured-content {
  padding: 20px;
  color: white;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.featured-excerpt {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.featured-meta {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.btn-read-more {
  display: inline-block;
  padding: 8px 16px;
  background-color: #dc2626;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-read-more:hover {
  background-color: #b91c1c;
  color: white;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-item {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.1);
}

.news-thumbnail {
  width: 100px;
  height: 80px;
  flex-shrink: 0;
}

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

.news-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.news-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Fixtures & Results */
.fixtures-results-section {
  position: relative;
}

.fixtures-card,
.results-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.card-title {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 15px;
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: 2px solid rgba(220, 38, 38, 0.5);
}

.fixtures-content,
.results-content {
  padding: 15px;
}

.fixture-date,
.result-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  margin-top: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixture-row,
.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-side {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 40%;
}

.team-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background-color: white;
  padding: 2px;
}

.team-name {
  font-size: 0.9rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-info,
.match-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
}

.match-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: #dc2626;
}

.match-status {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.match-stadium {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  display: none;
}

.score-display {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.btn-view-all {
  display: block;
  text-align: center;
  margin: 15px auto 5px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  width: fit-content;
}

.btn-view-all:hover {
  background-color: #dc2626;
  color: white;
}

.no-data-message {
  padding: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* League Table */
.standings-section {
  position: relative;
}

.standings-table-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: auto;
}

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

.standings-table th,
.standings-table td {
  padding: 12px 15px;
  text-align: center;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.standings-table th {
  background-color: rgba(0, 0, 0, 0.2);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.team-column {
  text-align: left !important;
  min-width: 200px;
}

.team-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}

.team-logo-small {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-logo-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-column {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.form-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.form-w {
  background-color: #10b981;
}

.form-d {
  background-color: #f59e0b;
}

.form-l {
  background-color: #ef4444;
}

.champions-league {
  border-left: 3px solid #10b981;
}

.europa-league {
  border-left: 3px solid #f59e0b;
}

.relegation {
  border-left: 3px solid #ef4444;
}

.standings-legend {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  padding: 0 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.champions-league .legend-marker {
  background-color: #10b981;
}

.europa-league .legend-marker {
  background-color: #f59e0b;
}

.relegation .legend-marker {
  background-color: #ef4444;
}

/* Player Statistics */
.player-stats-section {
  position: relative;
  background: #f3f4f6;
}

.stats-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.stats-card-title {
  background: #1e293b;
  color: white;
  padding: 15px;
  margin: 0;
  font-weight: 600;
  border-bottom: 3px solid #dc2626;
}

.stats-list {
  padding: 0;
}

.stats-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.player-rank {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  width: 30px;
  text-align: center;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.player-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.player-details {
  display: flex;
  flex-direction: column;
}

.player-name {
  font-weight: 600;
  color: #1e293b;
}

.player-team {
  font-size: 0.8rem;
  color: #64748b;
}

.stats-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #dc2626;
  width: 40px;
  text-align: center;
}

/* Live Matches */
.live-matches-section {
  position: relative;
}

.live-pulse {
  display: inline-block;
  margin-right: 10px;
  color: #dc2626;
  animation: pulse 1.5s infinite;
}

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

.live-matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.live-match-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

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

.live-match-front {
  padding: 20px;
  height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.live-badge {
  background-color: #dc2626;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

.minute-badge {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 3px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
}

.live-score-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.team-logo-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  padding: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 30%;
}

.score-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.score-divider {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.match-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.meta-item {
  font-size: 0.8rem;
}

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

.quality-badge {
  background-color: rgba(16, 185, 129, 0.8);
  color: white;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 2px;
}

.viewer-count {
  font-size: 0.8rem;
}

.watch-button-container {
  text-align: center;
}

.btn-watch-live {
  display: inline-block;
  padding: 10px 20px;
  background-color: #dc2626;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-watch-live:hover {
  background-color: #b91c1c;
  transform: scale(1.05);
}

.upcoming-broadcasts {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.upcoming-title {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 15px;
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

.upcoming-list {
  padding: 15px;
}

.upcoming-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.upcoming-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  width: 30%;
}

.upcoming-teams {
  font-weight: 600;
  color: white;
  text-align: center;
  width: 40%;
}

.btn-set-reminder {
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
  text-decoration: none;
  width: 30%;
  text-align: center;
}

.btn-set-reminder:hover {
  background-color: #dc2626;
  color: white;
}

/* Match Analysis */
.match-analysis-section {
  background: #f3f4f6;
}

.analysis-video-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.analysis-thumbnail {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(220, 38, 38, 0.8);
  border: none;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: #dc2626;
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.analysis-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
}

.analysis-title {
  color: white;
  font-weight: 600;
  margin-bottom: 5px;
}

.analysis-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.analysis-text-content {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.analysis-header {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dc2626;
}

.match-stat-card {
  margin-bottom: 20px;
}

.stat-header {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.stat-bar-container {
  margin-bottom: 15px;
}

.team-names {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #64748b;
}

.stat-bar {
  height: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}

.stat-fill {
  height: 100%;
  background-color: #dc2626;
  border-radius: 5px;
}

.stat-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
}

.analyst-quote {
  display: flex;
  gap: 15px;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.quote-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.quote-content {
  font-style: italic;
  color: #1e293b;
}

.quote-content cite {
  display: block;
  margin-top: 5px;
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
}

.btn-full-analysis {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #1e293b;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-full-analysis:hover {
  background-color: #dc2626;
}

/* Fan Zone */
.fan-zone-section {
  position: relative;
}

.fan-zone-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.fan-card-title {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 15px;
  margin: 0;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid rgba(220, 38, 38, 0.5);
}

.poll-question {
  padding: 15px;
  color: white;
}

.poll-question h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.poll-options {
  margin-bottom: 20px;
}

.poll-option {
  margin-bottom: 10px;
}

.poll-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 5px;
}

.poll-option input[type="radio"] {
  margin-right: 10px;
}

.option-text {
  font-size: 0.9rem;
}

.poll-result {
  margin-left: 25px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.poll-bar {
  height: 6px;
  background-color: #dc2626;
  border-radius: 3px;
}

.poll-percentage {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn-vote {
  width: 100%;
  padding: 10px;
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-vote:hover {
  background-color: #b91c1c;
}

.prediction-content {
  padding: 15px;
  color: white;
}

.prediction-match {
  margin-bottom: 15px;
}

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

.team {
  font-weight: 600;
}

.vs {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.prediction-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.prediction-form {
  margin-bottom: 20px;
}

.score-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.score-input {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: white;
}

.score-separator {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn-predict {
  width: 100%;
  padding: 10px;
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-predict:hover {
  background-color: #b91c1c;
}

.prediction-prizes {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 4px;
}

.prize-label {
  font-weight: 600;
  margin-bottom: 5px;
}

.prize-item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.social-feed-content {
  padding: 15px;
  color: white;
}

.social-post {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.post-content {
  flex: 1;
}

.post-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.post-name {
  font-weight: 600;
}

.post-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.post-text {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

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

.post-like,
.post-comment {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
}

.post-like:hover,
.post-comment:hover {
  color: #dc2626;
}

.btn-join-community {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #dc2626;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-join-community:hover {
  background-color: #b91c1c;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .live-matches-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .team-name {
    font-size: 0.8rem;
  }

  .match-info,
  .match-result {
    width: 30%;
  }

  .team-side {
    width: 35%;
  }

  .standings-table th,
  .standings-table td {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .team-column {
    min-width: 150px;
  }
}

@media (max-width: 767px) {
  .sports-hero-section {
    height: unset;
  }
  .hero-container {
    padding: 5px !important;
  }

  .banner-title {
    font-size: 1.5rem;
  }

  .banner-description {
    font-size: 1rem;
  }

  .featured-image {
    height: 200px;
  }

  .featured-title {
    font-size: 1.2rem;
  }

  .news-thumbnail {
    width: 80px;
    height: 60px;
  }

  .news-title {
    font-size: 0.9rem;
  }

  .live-match-front {
    height: 250px;
  }

  .team-logo-container {
    width: 40px;
    height: 40px;
  }

  .score-number {
    font-size: 1.5rem;
  }

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

  .team-column {
    min-width: 120px;
  }

  .form-badge {
    width: 15px;
    height: 15px;
    font-size: 0.6rem;
  }
}
