* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    font-size: 15px;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: #172032;
}

.grid {
    width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

@media (min-width: 576px) {
    .grid {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .grid {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .grid {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .grid {
        width: 1140px;
    }
}

@media (max-width: 575px) {
    .grid {
        width: 100%;
    }
}

.header {
    background: #1f2d43;
}

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

.header_wrapper .logo {
    background-image: linear-gradient(to right, #ff3939, #ff3939, #fdfdfc);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: 10px;
}

.play-buttons a {
    background: #ff3939;
    color: #fefcfc;
    border-radius: 0;
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 500;
    margin-left: 10px;
}

.play-buttons a:last-child {
    background: #324064;
    color: #ff3939;
}

@media (max-width: 550px) {
    .play-buttons a:last-child {
        display: none;
    }
}

.collapse-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    height: 50px;
}

.collapse-menu div.logo {
    font-size: 22px;
    color: #fff;
}

.hamburger-menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #022946;
    background-image: linear-gradient(to bottom, #022946, #001C31);
}

.hamburger-menu>li {
    margin: 0 1rem;
    overflow: hidden;
}

.hamburger-menu>li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.menu-button-container {
    display: flex;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button, .menu-button::before, .menu-button::after {
    display: block;
    background-color: #ff3939;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

@media (min-width: 100px) {
    .menu-button-container {
        display: flex;
    }

    .hamburger-menu {
        z-index: 9999;
        position: absolute;
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle~.hamburger-menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.hamburger-menu li {
        display: flex;
        align-items: center;
        border: 0;
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .hamburger-menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
    }

    .hamburger-menu>li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
}

.content * {
    color: #c6c6c6;
}

.content h1, .content h2, .content h3 {
    line-height: 1.3;
    font-size: 26px;
    color: #fff;
    margin-bottom: 25px;
}

.content h2 {
    font-size: 22px;
}

.content h3 {
    font-size: 18px;
}

.content p {
    line-height: 1.5;
    margin-bottom: 25px;
}

.content p a {
    color: #38BDF8;
    text-decoration: none;
}

.content p a:hover {
    text-decoration: underline;
}

.content ul, .content ol {
    padding: 0 0 0 25px;
    margin: 0 0 25px;
}

.content ul li, .content ol li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.content ul li {
    padding-left: 10px;
}

.content ol li::marker {
    color: #ff3939;
}

.content ul li::marker {
    content: '⚽';
}

.content table, .main-table table {
    width: 100%;
    border-collapse: collapse;
}

.content tbody, .main-table tbody {
    background: #001C31;
}

.main-table tbody {
    background: #1f2d43;
}

.content table tr td, .main-table table tr td {
    border: 1px solid #324064;
    padding: 8px;
    font-size: 15px;
    line-height: 1.3;
    min-width: 100px;
}

.main-table table caption {
    line-height: 1.3;
    font-size: 16px;
    color: #ff3939;
    padding-bottom: 15px;
    font-weight: 500;
}

.content table tr td p {
    font-size: 15px;
}

.content table tr th {
    padding: 0 5px 10px;
    color: #38BDF8;
    line-height: 1.2;
}

.content table p {
    margin: 0;
}

.main-table {
    margin-bottom: 40px;
}

.main-table table tr td {
    color: #fff;
    font-size: 14px;
}

.main-table table tr td a {
    color: #fff;
    font-size: 14px;
}

.content blockquote {
    background: #022946;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 25px;
    position: relative;
}

.content blockquote * {
    margin: 0;
}

.content blockquote::before {
    content: '';
    background: url(/quote-left.svg) no-repeat;
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 5px;
}

.content blockquote::after {
    content: '';
    background: url(/quote-right.svg) no-repeat;
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    position: absolute;
    right: 5px;
    bottom: 5px;
}

.content summary {
    color: #ff3939;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.content details {
    margin-bottom: 40px;
}

.content mark {
    background: #ff3939;
    color: #000;
}

.responsive-table,
.main-table {
    overflow-x: auto;
    margin-bottom: 25px;
}

.image-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.image-wrapper img {
    width: auto;
    height: auto;
    max-width: 100%;
    border-style: none;
}

.anchors-section {
    background: #1f2d43;
    padding: 40px 20px 20px 50px;
    border-radius: 6px;
    margin-bottom: 25px;
    position: relative;
}

.anchors-section::before {
    content: '';
    background: url(/anchor.svg) no-repeat;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 5px;
}

.anchors-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.anchors-section ul li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.anchors-section ul li a {
    text-decoration: none;
    color: #bfc6e1;
    line-height: 1.3;
}

.anchors-section ul li a:hover {
    color: #bfc6e1;
}

.anchors-section ul li::marker {
    content: '#️';
    color: #ff3939;
}

.bitz-ban_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 30px 0 50px;
}

.bitz-ban a {
    display: inline-flex;
    background: #ff3939;
    border-radius: 2px;
    text-decoration: none;
    color: #fbfbfb;
    padding: 12px 24px;
    font-weight: 700;
    margin-top: 10px;
}

.date-updated {
    margin-bottom: 25px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer small {
    font-size: 13px;
    color: #ccc;
    margin: 20px 0;
}
.content-button{
    padding:20px 0;
    margin-bottom:25px;
    border-radius:4px;
    display:flex;
    justify-content:center;
    align-items:center
}
.content-button a{
    display:inline-flex;
    font-size:16px;
    border-radius:2px;
    border:1px solid #324064;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    font-weight:500;
    transition:.4s ease-out;
    background: #ff3939;
    
}
.content-button a:hover{
    color:#011320;
    background:#fff000
}
.block-content {
    background: #1f2d43;
    padding: 30px 40px 20px 40px;
    border-radius: 6px;
    margin-bottom: 25px;
    position: relative;
}