/* =========================
   RESET I PODSTAWOWE STYLE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  background-color: #f4f6fa;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
.main-header {
    background: #002244;
    color: white;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

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

.site-title {
    font-size: 18px;
    font-weight: bold;
}

/* MENU DESKTOP */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-menu ul li a:hover {
    background-color: #0066cc;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* =========================
   MENU MOBILNE
========================= */
@media (max-width: 900px) {
    /* Pokaż hamburgera */
    .hamburger {
        display: flex;
        z-index: 2000;
    }

    /* Ukryj menu na mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #002244;
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        box-shadow: -3px 0 8px rgba(0, 0, 0, 0.3);
        z-index: 1500;
        flex-direction: column;
    }

    /* Pokaz menu po kliknięciu */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .nav-menu ul li a {
        display: block;
        font-size: 18px;
        padding: 12px;
        width: 100%;
    }
}

/* =========================
   HERO SECTION
========================= */
#hero {
  background: url("../assets/hero-bg.jpg") center/cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

#hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

#hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: bold;
}

#hero p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.cta-btn {
  display: inline-block;
  padding: 14px 26px;
  background-color: #ff4500;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
  background-color: #e03d00;
  transform: scale(1.05);
}

/* =========================
   TIMER
========================= */
#timer {
  text-align: center;
  border-radius: 12px;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#timer h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
}

#countdown {
  font-size: 40px;
  font-weight: bold;
  color: #002244;
  background-color: white;
  border-radius: 8px;
}

/* =========================
   MECZ NA ŻYWO
========================= */
#live-section {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  text-align: center;
}

#live-section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #222;
}

#live-match-box {
  font-size: 18px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* =========================
   O TURNIEJU
========================= */
#about {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
}

#about h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #002244;
}

/* === SPONSORZY === */
#sponsors {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

#sponsors h2 {
  font-size: 32px;
  margin-bottom: 35px;
  color: #002244;
  font-weight: bold;
  position: relative;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #222;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.sponsor-card img {
  width: 100%;
  max-width: 180px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

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

.sponsor-card h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  color: #002244;
}

.sponsor-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}


/* =========================
   ORGANIZATORZY
========================= */
#organizers {
  padding: 50px 20px;
  background: #f5f5f5;
  text-align: center;
}

.organizers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.organizer-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 15px;
  width: 220px;
  transition: transform 0.3s;
}

.organizer-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.organizer-card:hover {
  transform: scale(1.05);
}

/* =========================
   MAPA
========================= */
#location {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#location h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

/* === FOOTER === */
footer {
  background: #002244;
  color: white;
  text-align: center;
  padding: 30px 20px 15px;
  margin-top: 50px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 8px;
}

.footer-title {
  font-size: 16px;
  font-weight: bold;
  max-width: 700px;
  line-height: 1.4;
  color: #fff;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

/* =========================
   SEKCJA DRUŻYN
========================= */
.teams-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.teams-header {
  text-align: center;
  margin-bottom: 25px;
}

.teams-header h2 {
  font-size: 28px;
  color: #002244;
  margin-bottom: 5px;
}

.teams-header p {
  font-size: 15px;
  color: #666;
}

.teams-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.team-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #f5f5f5;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-header h3 {
  font-size: 20px;
  color: #002244;
}

/* TABELA ZAWODNIKÓW */
.players-table-wrapper {
  overflow-x: auto;
}

.players-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.players-table thead {
  background-color: #002244;
  color: white;
}

.players-table th, 
.players-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.players-table tbody tr:hover {
  background-color: #f8f8f8;
}

.no-players {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
  font-style: italic;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .teams-section {
    padding: 10px;
  }

  .team-header h3 {
    font-size: 18px;
  }

  .players-table th,
  .players-table td {
    padding: 8px;
    font-size: 13px;
  }
}

/* === Ogólne sekcje === */
.tables-wrapper {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

/* === Bloki grup === */
.group-block {
    margin-bottom: 50px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.group-title {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3a3a3a;
}

/* === Tabele === */
.table-responsive {
    overflow-x: auto;
    margin-top: 10px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.ranking-table thead {
    background-color: #002244; /* Fiolet Pasterka FC */
    color: #fff;
    font-weight: bold;
}

.ranking-table th,
.ranking-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.ranking-table tbody tr {
    transition: background 0.2s ease-in-out;
}

.ranking-table tbody tr:hover {
    background-color: rgba(98, 0, 234, 0.05);
}

/* Punkty wyróżnione */
.ranking-table td.points {
    font-weight: bold;
    color: #002244;
}

/* Brak danych */
.no-data {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* === Faza pucharowa === */
.bracket-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bracket-stage {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #222;
}

.bracket-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.bracket-match {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bracket-match:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.bracket-match .teams {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.bracket-match strong {
    color: #6200ea;
    font-weight: 700;
    padding: 0 5px;
}

.bracket-date {
    font-size: 13px;
    color: #888;
}

/* === Divider === */
.divider {
    margin: 40px auto;
    width: 100%;
    max-width: 800px;
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
}

/* === Responsywność === */
@media (max-width: 768px) {
    .ranking-table th, .ranking-table td {
        padding: 10px;
        font-size: 13px;
    }

    .bracket-match {
        padding: 12px;
    }

    .section-title {
        font-size: 24px;
    }
}
/* === Sekcja ogólna === */
.stats-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
}

/* === Siatka kart === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* === Pojedyncza karta statystyk === */
.stats-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stats-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.stats-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === Listy zawodników === */
.stats-box ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-box li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    gap: 8px;
}

.stats-box li:last-child {
    border-bottom: none;
}

/* === Podział informacji w liście === */
.player-name {
    font-weight: 600;
    color: #222;
}

.player-team {
    color: #666;
    font-size: 13px;
    flex: 1;
    text-align: center;
}

/* Numer miejsca w rankingu */
.player-rank {
    font-weight: 700;
    color: #6200ea; /* Fiolet Pasterka FC */
    margin-right: 8px;
    min-width: 18px;
    text-align: right;
}


.player-value {
    font-weight: 700;
    color: #6200ea; /* Fiolet Pasterka FC */
}

/* === Kolorystyka kart === */
.top-scorers h3 {
    color: #2e7d32; /* Zielony */
}

.top-yellows h3 {
    color: #f9a825; /* Żółty */
}

.top-reds h3 {
    color: #d32f2f; /* Czerwony */
}

/* === Responsywność === */
@media (max-width: 768px) {
    .stats-title {
        font-size: 24px;
    }

    .stats-box {
        padding: 15px;
    }

    .stats-box h3 {
        font-size: 18px;
    }

    .stats-box li {
        font-size: 13px;
    }
}
/* === TERMINARZ === */
/* Kontener na boiska */
.fields-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Kolumna boiska */
.field-column {
    flex: 1;
    min-width: 380px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.field-column h3 {
    text-align: center;
    color: #222;
    margin-bottom: 15px;
}

/* Pudełko meczu */
.match-box {
    display: block;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.match-box:hover {
    background: #f0f8ff;
    transform: scale(1.02);
}

.match-box.live {
    background: #ffebee;
    border-left: 5px solid #e53935;
}

.match-box.finished {
    background: #e8f5e9;
    border-left: 5px solid #43a047;
}

.match-box.upcoming {
    background: #e3f2fd;
    border-left: 5px solid #1e88e5;
}

/* === STRONA POJEDYNCZEGO MECZU === */
.match-page {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Nagłówek meczu */
.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #6200ea, #3700b3);
    border-radius: 12px;
    color: #fff;
    box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.3);
}

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

.team-box img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.team-box h2 {
    margin-top: 10px;
    font-size: 18px;
}

/* Wynik meczu */
.match-score {
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 28px;
    font-weight: bold;
	font-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.match-score .score{
	color: white;
}

.match-score .score {
    display: block;
    font-size: 36px;
    margin-bottom: 6px;
}

.status {
    display: inline-block;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 6px;
    margin-top: 5px;
    font-weight: 600;
}

/* Kolory statusów */
.match-score.live .status {
    background: #ff1744;
    color: #fff;
}
.match-score.finished .status {
    background: #43a047;
    color: #fff;
}
.match-score.upcoming .status {
    background: #2196f3;
    color: #fff;
}

/* Wydarzenia meczu */
.match-events {
    margin-top: 30px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.match-events h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #222;
}

.match-events ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.match-events li {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    margin-bottom: 8px;
    border-left: 5px solid #6200ea;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.match-events li:hover {
    transform: translateX(3px);
    background: #f3e8ff;
}

.event-time {
    font-weight: bold;
    color: #6200ea;
    min-width: 45px;
    text-align: center;
    font-size: 16px;
}

.event-desc {
    color: #333;
    font-size: 15px;
}

/* Brak wydarzeń */
.no-events {
    text-align: center;
    color: #777;
    padding: 15px;
    font-size: 15px;
}

/* Responsywność */
@media (max-width: 800px) {
    .match-header {
        flex-direction: column;
        gap: 15px;
    }

    .team-box {
        width: 100%;
    }

    .match-score {
        order: -1;
    }
}
/* === KONTAKT === */
.contact-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
}

.contact-section h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-box:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 30px;
    width: 45px;
    height: 45px;
    background: #2196f3;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.contact-box h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.contact-box a {
    display: inline-block;
    color: #2196f3;
    text-decoration: none;
    font-size: 14px;
    margin-top: 3px;
    transition: color 0.2s;
}

.contact-box a:hover {
    color: #0d7ae6;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 600px) {
    .contact-box {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-bottom: 10px;
    }
}
/* === REGULAMIN === */
.rules-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', Arial, sans-serif;
}

.rules-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rules-section h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.rules-subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.rules-list {
    list-style: decimal;
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.rules-list li {
    margin-bottom: 12px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 4px solid #2196f3;
    border-radius: 5px;
    transition: background 0.2s ease;
}

.rules-list li:hover {
    background: #eef7ff;
}

.rules-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #555;
}

.rules-footer a {
    color: #2196f3;
    text-decoration: none;
    font-weight: bold;
}

.rules-footer a:hover {
    color: #0d7ae6;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 600px) {
    .rules-section {
        padding: 20px;
    }

    .rules-list {
        font-size: 15px;
    }
}


.bracket-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 30px;
}
.bracket-column {
  flex: 1;
  min-width: 220px;
}
.bracket-column h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.2em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}
.bracket-match {
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  font-size: 14px;
}
.bracket-match .teams {
  display: block;
  font-weight: bold;
  text-align: center;
}
.bracket-match .bracket-date {
  display: block;
  font-size: 12px;
  color: #666;
  text-align: center;
}
