/* ========================================
   AFCON 2026 PAGE STYLES
   ======================================== */

/* Hero Section */
.afcon-hero {
  position: relative;
  min-height: 400px;
  background: url('../images/Seko-Fofana.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  overflow: hidden;
}

.afcon-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
  background-size: 100px 100px;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.afcon-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-dates {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
}

/* Live Updates Section */
.live-updates-section {
  padding: 4rem 0;
  background: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.live-indicator {
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.view-all-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.view-all-link:hover {
  color: #1e40af;
}

.live-matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.live-match-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}

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

.match-status {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.match-status.live {
  background: #ef4444;
  color: white;
}

.match-status.upcoming {
  background: #3b82f6;
  color: white;
}

.match-status.finished {
  background: #6b7280;
  color: white;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.team-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

.team-name {
  font-weight: 600;
  color: #111827;
  flex: 1;
}

.team-score {
  font-size: 1.75rem;
  font-weight: 900;
  color: #374151;
  min-width: 35px;
  text-align: center;
}

.team-score.highlight {
  color: #10b981;
}

.vs {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  margin: 0 1rem;
}

.match-commentary {
  margin-bottom: 1rem;
}

.commentary-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.commentary-time {
  font-weight: 700;
  color: #2563eb;
  min-width: 40px;
}

.commentary-text {
  color: #374151;
}

.match-venue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.match-highlights {
  margin-bottom: 1rem;
}

.highlight-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #fef3c7;
  color: #92400e;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.match-details-link {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
}

.match-details-link:hover {
  color: #1e40af;
}

/* Latest News Section */
.latest-news-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.news-card.featured {
  grid-column: span 2;
}

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

.news-card.featured .news-image {
  height: 300px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.news-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-badge {
  background: #ef4444;
  color: white;
}

.news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-category {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.news-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.news-card.featured .news-content h3 {
  font-size: 1.5rem;
}

.news-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.news-content h3 a:hover {
  color: #2563eb;
}

.news-content p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Standings Section */
.standings-section {
  padding: 4rem 0;
  background: white;
}

.groups-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: thin;
}

.group-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.group-tab:hover {
  color: #2563eb;
}

.group-tab.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.group-content {
  display: none;
}

.group-content.active {
  display: block;
}

.standings-table-container {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.standings-table thead {
  background: #f9fafb;
}

.standings-table th {
  padding: 0.875rem 0.5rem;
  text-align: left;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.standings-table th.center {
  text-align: center;
}

.standings-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}

.standings-table tbody tr:hover {
  background: #f9fafb;
}

.standings-table tbody tr.qualified {
  background: #f0fdf4;
}

.standings-table td {
  padding: 1rem 0.5rem;
}

.standings-table td.center {
  text-align: center;
}

.position {
  font-weight: 700;
  color: #374151;
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #111827;
}

.table-flag {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.points {
  font-weight: 700;
  color: #111827;
  font-size: 1rem;
}

.positive {
  color: #10b981;
  font-weight: 600;
}

.negative {
  color: #ef4444;
  font-weight: 600;
}

.recent-matches {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 12px;
}

.recent-matches h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.result-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  min-width: 60px;
}

.result-match {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
}

.result-team {
  flex: 1;
  color: #374151;
}

.result-score {
  font-weight: 700;
  color: #111827;
  padding: 0.25rem 0.75rem;
  background: white;
  border-radius: 6px;
}

/* Top Scorers Section */
.top-scorers-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
  color: white;
}

.top-scorers-section .section-title {
  color: white;
}

.scorers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.scorer-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.scorer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.scorer-card.golden {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-color: #fbbf24;
  grid-column: span 1;
}

.scorer-card.silver {
  background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
}

.scorer-card.bronze {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.scorer-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.rank-number {
  font-size: 2rem;
  font-weight: 900;
}

.scorer-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

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

.scorer-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.scorer-country {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.scorer-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
}

.scorer-list-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.scorer-list-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.list-rank {
  font-size: 1.25rem;
  font-weight: 900;
  min-width: 30px;
}

.list-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.list-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.list-name {
  font-weight: 700;
  font-size: 0.875rem;
}

.list-country {
  font-size: 0.75rem;
  opacity: 0.8;
}

.list-goals {
  font-size: 1.5rem;
  font-weight: 900;
}

/* Feature Stories Section */
.feature-stories-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.story-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-card.large {
  grid-column: span 2;
}

.story-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.story-card.large .story-image {
  height: 350px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.story-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.story-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.story-card.large .story-content h3 {
  font-size: 1.5rem;
}

.story-content p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.story-link {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
}

.story-link:hover {
  color: #1e40af;
}

/* Host Section */
.host-section {
  padding: 4rem 0;
  background: white;
}

.host-banner {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 16px;
  padding: 3rem;
  color: white;
  margin-bottom: 2rem;
}

.host-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.host-flag {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

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

.host-details h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.host-details p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.host-stats {
  display: flex;
  gap: 2rem;
}

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

.host-stat .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.host-stat .stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.city-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.city-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.city-image {
  height: 180px;
  overflow: hidden;
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.city-content {
  padding: 1.5rem;
}

.city-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.city-role {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.stadium-info {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.875rem;
}

.stadium-name {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
}

.stadium-capacity {
  font-size: 0.75rem;
}

/* Multimedia Section */
.multimedia-section {
  padding: 4rem 0;
  background: #111827;
  color: white;
}

.multimedia-section .section-title {
  color: white;
}

.multimedia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.multimedia-featured {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.video-container {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.6);
}

.play-icon {
  width: 80px;
  height: 80px;
  color: white;
  opacity: 0.9;
  transition: all 0.3s;
}

.video-play-overlay:hover .play-icon {
  transform: scale(1.1);
  opacity: 1;
}

.multimedia-info {
  padding: 1.5rem;
}

.multimedia-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #ef4444;
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.multimedia-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.multimedia-info p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

.multimedia-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

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

.multimedia-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.multimedia-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.multimedia-item:hover .multimedia-thumb img {
  transform: scale(1.05);
}

.multimedia-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.multimedia-item h4 {
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Opinions Section */
.opinions-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.opinions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.opinion-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.opinion-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.opinion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.opinion-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.opinion-author {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.opinion-role {
  font-size: 0.75rem;
  color: #6b7280;
}

.opinion-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.opinion-content p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.opinion-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.75rem;
}

.opinion-category {
  padding: 0.25rem 0.75rem;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 12px;
  font-weight: 600;
}

.opinion-date {
  color: #9ca3af;
}

.opinion-card.highlight {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
}

.opinion-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.opinion-card.highlight .opinion-content h3 {
  color: white;
}

.opinion-card.highlight .opinion-content p {
  color: rgba(255, 255, 255, 0.9);
}

.opinion-card.poll {
  background: white;
}

.poll-options {
  margin: 1.5rem 0;
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.poll-team {
  min-width: 120px;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.poll-bar {
  flex: 1;
  height: 30px;
  background: #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.poll-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
  transition: width 0.3s;
}

.poll-percent {
  min-width: 45px;
  font-weight: 700;
  color: #111827;
  text-align: right;
}

.poll-vote-btn {
  width: 100%;
  padding: 0.75rem;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.poll-vote-btn:hover {
  background: #1e40af;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news-card.featured {
    grid-column: span 1;
  }
  
  .story-card.large {
    grid-column: span 1;
  }
  
  .multimedia-featured {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .afcon-logo-badge {
    width: 60px;
    height: 60px;
  }
  
  .afcon-logo-badge svg {
    width: 40px;
    height: 40px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .live-matches-grid,
  .news-grid,
  .stories-grid,
  .scorers-grid,
  .cities-grid,
  .multimedia-grid,
  .opinions-grid {
    grid-template-columns: 1fr;
  }
  
  .host-info {
    flex-direction: column;
    text-align: center;
  }
  
  .host-details h3 {
    font-size: 1.5rem;
  }
  
  .host-stats {
    justify-content: center;
  }
  
  .groups-tabs {
    gap: 0.25rem;
  }
  
  .group-tab {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .afcon-hero {
    min-height: 300px;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .team-flag {
    width: 30px;
    height: 30px;
  }
  
  .team-name {
    font-size: 0.875rem;
  }
  
  .team-score {
    font-size: 1.5rem;
  }
  
  .vs {
    margin: 0 0.5rem;
  }
  
  .host-banner {
    padding: 2rem 1.5rem;
  }
  
  .host-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .poll-team {
    min-width: 80px;
    font-size: 0.75rem;
  }
}

@media (max-width: 390px) {
  .afcon-hero {
    min-height: 250px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-dates {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  
  .group-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .news-card,
  .story-card,
  .city-card {
    margin: 0 -0.5rem;
  }
}
