:root {
    --mtgones-black: #231f20;
    --mtgones-red: #de1b22;
    --mtgones-alert: #f6b9bb;
    --mtgones-white: snow;
}

@font-face {
    font-family: 'MatrixBold';
    src: url('matrix_bold.woff2') format('woff2');
}

*, *::before, *::after {
    box-sizing: border-box;
}

p {
    padding: 0;
    margin: 0;
}

.red {
    color: var(--mtgones-red);
}

.bold {
    font-weight: bold;
}

body {
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
    line-height: 1.6;
}

.logo-background {
    background-image: linear-gradient(#3f3b38 50%, #2b2c27, #0b0b0b);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.main-background {
    background-color: #0b0b0b;
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.container {
    display: flex;
    flex-direction: column;
}

.language {
    font-family: MatrixBold, serif;
    color: var(--mtgones-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.2em;
    margin-bottom: 24px;
}

.logo {
    max-width: 700px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-family: MatrixBold, serif;
    color: var(--mtgones-white);
    font-size: 2em;
    text-align: center;
    text-decoration: none;
}

.tournaments {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.tournament {
    flex-wrap: wrap;
    background-color: var(--mtgones-white);
    border-radius: 2px;
    padding: 10px 20px;
    min-width: 350px;
    max-width: 600px;
}

.tournament-title {
    font-family: MatrixBold, serif;
    font-size: 1.6em;
    text-decoration: none;
}

.recap-item-container {
    margin-bottom: 15px;
}

.recap-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.recap-item-lots {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.list-lots {
    list-style: none;
    padding: 0;
    margin: 0;
}