body {
  font-family: 'Rubik', sans-serif;
}

h1, h2, h3, .match-title, .ranking-title {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: capitalize;
}

section {
    padding: 1.5rem;
}

.title-screen {
    font-family: 'Bebas Neue';
    text-transform: capitalize;
    font-weight: bold;
}

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

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

.match-card {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.match-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.match-date-bg {
    font-size: 18px;
    color: #888;
    margin-bottom: 5px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
}

.team-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.team img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 6px;
}

.team-bg img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 6px;
}

.team-name {
    font-size: 12px;
    text-transform: uppercase;
}

.team-name-bg {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
}

.middle {
    text-align: center;
}

.score {
    font-size: 20px;
    font-weight: bold;
}

.score-bg {
    font-size: 40px;
    font-weight: bold;
}

.tickets-button {
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 11px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 16px;
    color: #888;
    cursor: pointer;
}

.tickets-button:hover {
    background-color: #eee;
}

/* ---------------- */
.ranking-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

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

.ranking-table thead {
    background: #f1f1f1;
    text-align: left;
}

.ranking-table th, .ranking-table td {
    padding: 12px 16px;
    font-size: 14px;
}

.ranking-table td img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
}

.ranking-table tbody tr {
    border-top: 1px solid #eee;
}

.player-name {
    display: flex;
    align-items: center;
}

/* tourney styles */
.t-card {
    width: 300px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.t-card a {
    text-decoration: none;
}

.t-card:hover {
    cursor: pointer;
}

.t-card-body {
    padding: 16px;
}

.t-tag {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.t-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.t-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.t-date {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.t-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

.t-announce {
    background-color: #EEEEEE;
    padding: 10px;
}

.t-data {
    font-size: 45px;
    font-weight: bold;
}

.t-icon {
    width: 40px;
}

.t-event-head {
    background: #f1f1f1;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    border-top: 1px solid #eee;
    font-weight: bold;
    margin-bottom: 3px;
}