/* ==============================
   2026 FIFA World Cup Theme
   White background, site-match style
   ============================== */

.wc6-hero {
  background: linear-gradient(135deg, #e8edf5 0%, #dce3ef 40%, #c5d0e4 100%);
  text-align: center;
  padding: 50px 24px 40px;
  border-bottom: 3px solid #990000;
  position: relative;
  overflow: hidden;
}
.wc6-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,215,0,0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(153,0,0,0.04) 0%, transparent 50%);
}

.wc6-hero-content { position: relative; z-index: 1; }
.wc6-hero-badge {
  display: inline-block;
  font-family: Arial;
  font-size: 11px;
  letter-spacing: 3px;
  color: #990000;
  padding: 3px 14px;
  border: 1px solid #990000;
  border-radius: 12px;
  margin-bottom: 12px;
}
.wc6-hero-title {
  font-family: Arial;
  font-size: 64px;
  font-weight: bold;
  color: #990000;
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 6px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.05);
}
.wc6-hero-sub {
  font-size: 18px;
  color: #555;
  letter-spacing: 6px;
  margin-bottom: 8px;
}
.wc6-hero-desc {
  font-size: 13px;
  color: #777;
  margin-bottom: 24px;
}

.wc6-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.wc6-cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.wc6-cd-num {
  font-family: Arial;
  font-size: 36px;
  font-weight: bold;
  color: #990000;
  line-height: 1;
  min-width: 48px;
  text-align: center;
}
.wc6-cd-label {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
.wc6-cd-sep {
  font-family: Arial;
  font-size: 28px;
  font-weight: bold;
  color: #ccc;
  padding-top: 4px;
}

/* Stats */
.wc6-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 0;
}
.wc6-stat {
  text-align: center;
  padding: 0 36px;
  border-right: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wc6-stat:last-child { border-right: none; }
.wc6-stat-num {
  font-family: Arial;
  font-size: 32px;
  font-weight: bold;
  color: #990000;
  line-height: 1;
}
.wc6-stat span:last-child {
  font-size: 12px;
  color: #888;
}

/* Section */
.wc6-section {
  padding: 30px 24px 40px;
}
.wc6-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.wc6-section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #990000;
  padding: 2px 12px;
  border: 1px solid #990000;
  border-radius: 10px;
  margin-bottom: 10px;
}
.wc6-section-header h2 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.wc6-section-desc {
  font-size: 13px;
  color: #888;
  max-width: 480px;
  margin: 0 auto;
}

/* About */
.wc6-about {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.wc6-about-text { flex: 1.2; }
.wc6-about-text p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}
.wc6-hosts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0.8;
}
.wc6-host {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 13px;
}
.wc6-host strong { color: #333; }
.wc6-host span { color: #888; margin-left: auto; font-size: 12px; }
.wc6-host-flag {
  width: 40px; height: 26px;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Venues */
.wc6-venues {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.wc6-venue {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.2s;
}
.wc6-venue:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #ccc;
  margin-top: -2px;
}
.wc6-venue-top {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial;
  font-size: 28px;
  font-weight: bold;
  color: rgba(255,255,255,0.3);
  letter-spacing: 4px;
}
.wc6-venue-body {
  padding: 14px;
}
.wc6-venue-body em {
  font-style: normal;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #990000;
  display: block;
  margin-bottom: 2px;
}
.wc6-venue-body h4 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 2px;
}
.wc6-venue-body p {
  font-size: 12px;
  color: #888;
}
.wc6-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 1px 8px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 1px;
}

/* Groups */
.wc6-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.wc6-group {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.wc6-group-hd {
  padding: 10px 14px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  font-weight: bold;
  font-size: 14px;
  color: #990000;
  letter-spacing: 2px;
}
.wc6-group-bd { padding: 8px 10px; }
.wc6-team {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.wc6-team + .wc6-team { border-top: 1px solid #f0f0f0; }
.wc6-team:hover { background: #fafafa; }
.wc6-flag {
  width: 24px; height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wc6-tn { flex: 1; color: #333; font-weight: 500; font-size: 12px; }
.wc6-tr {
  font-size: 10px;
  color: #aaa;
  padding: 1px 6px;
  border: 1px solid #eee;
  border-radius: 8px;
}

/* Schedule */
.wc6-schedule {
  max-width: 640px;
  margin: 0 auto;
}
.wc6-phase {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  position: relative;
  align-items: flex-start;
}
.wc6-phase-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #ccc;
  border: 3px solid #f5f5f5;
  margin-top: 3px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.wc6-phase-dot.gold {
  background: #990000;
  box-shadow: 0 0 0 3px rgba(153,0,0,0.15);
}
.wc6-phase-line {
  position: absolute;
  left: 6px;
  top: 22px;
  bottom: -18px;
  width: 2px;
  background: #e8e8e8;
}
.wc6-phase:last-child .wc6-phase-line { display: none; }
.wc6-phase-info h4 {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}
.wc6-phase-info h4 small {
  font-weight: normal;
  font-size: 12px;
  color: #990000;
  margin-left: 8px;
}
.wc6-phase-info p {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}
.wc6-phase-date {
  font-family: Arial;
  font-size: 11px;
  color: #990000;
  font-weight: bold;
  display: block;
  margin-bottom: 2px;
}

/* Stars */
.wc6-stars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.wc6-star {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.2s;
}
.wc6-star:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #ccc;
}
.wc6-star-top {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial;
  font-size: 32px;
  font-weight: bold;
  color: rgba(255,255,255,0.12);
  letter-spacing: 4px;
}
.wc6-star-body {
  padding: 16px;
}
.wc6-star-flag {
  width: 28px; height: 18px;
  border-radius: 2px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wc6-star-body h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 2px;
}
.wc6-star-body p {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}
.wc6-star-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.wc6-star-tags span {
  font-size: 11px;
  padding: 2px 8px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  color: #666;
  background: #fafafa;
}

/* History */
.wc6-h-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
}
.wc6-h-card {
  text-align: center;
}
.wc6-h-num {
  font-family: Arial;
  font-size: 40px;
  font-weight: bold;
  color: #990000;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.wc6-h-label {
  font-size: 12px;
  color: #888;
}

.wc6-h-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 36px;
  border-collapse: collapse;
}
.wc6-h-table th {
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  font-size: 12px;
  color: #666;
  text-align: center;
}
.wc6-h-table td {
  padding: 6px 12px;
  border: 1px solid #e8e8e8;
  text-align: center;
  font-size: 12px;
  color: #555;
}
.wc6-h-w, .wc6-h-r {
  display: inline-block;
  padding: 1px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.wc6-h-score {
  font-family: Arial;
  font-weight: bold;
  color: #990000;
}

.wc6-h-cups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.wc6-cup {
  padding: 14px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: #fafafa;
  text-align: center;
}
.wc6-cup span { font-size: 14px; font-weight: bold; color: #333; }
.wc6-cup small { display: block; font-size: 11px; color: #888; margin-top: 2px; }
.wc6-cup-n {
  font-family: Arial;
  font-size: 24px !important;
  color: #990000 !important;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

/* News */
.wc6-news {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.wc6-news-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.2s;
}
.wc6-news-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #ccc;
}
.wc6-news-top {
  height: 100px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.wc6-news-cat {
  padding: 2px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  font-size: 10px;
  letter-spacing: 1px;
  color: #fff;
}
.wc6-news-body {
  padding: 14px;
}
.wc6-news-date {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 1px;
}
.wc6-news-body h4 {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  margin: 6px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wc6-news-body p {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .wc6-hero-title { font-size: 42px; }
  .wc6-cd-num { font-size: 26px; min-width: 36px; }
  .wc6-cd-item { min-width: 40px; }
  .wc6-about { flex-direction: column; }
  .wc6-stats { flex-wrap: wrap; gap: 12px; padding: 16px 12px; }
  .wc6-stat { padding: 0 18px; border-right: none; }
  .wc6-stat-num { font-size: 24px; }
  .wc6-section { padding: 20px 16px 30px; }
  .wc6-venues { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .wc6-groups { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .wc6-h-cards { gap: 20px; }
  .wc6-h-cups { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

@media (max-width: 480px) {
  .wc6-hero-title { font-size: 32px; letter-spacing: 3px; }
  .wc6-hero-sub { font-size: 14px; letter-spacing: 3px; }
  .wc6-cd-num { font-size: 20px; min-width: 28px; }
  .wc6-cd-sep { font-size: 18px; }
  .wc6-stat { padding: 0 10px; }
  .wc6-stat-num { font-size: 20px; }
  .wc6-section-header h2 { font-size: 18px; }
  .wc6-stars { grid-template-columns: 1fr; }
  .wc6-news { grid-template-columns: 1fr; }
  .wc6-venues { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .wc6-groups { grid-template-columns: 1fr; }
}
