:root {
    --header-bg-color: #111111;
    --main-bg-color: #1E1E1E;
    --footer-bg-color: #111111;
    --main-text-color: #FFFFFF;
    --button-text-color: #000000;
    --button-bg-color: #B08630;
    --button-second-bg-color: #478800;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

html {
    box-sizing: border-box;
}

body {
    font-family: Montserrat, sans-serif;
    line-height: 1.6;
    color: var(--main-text-color);
}

button {
    font-family: Montserrat, sans-serif;
    cursor: pointer;
    border: none !important;
}

a {
    color: var(--button-text-color);
}

a:hover {
    text-decoration: none;
    color: var(--main-text-color);
}

h1,
h2,
h3,
h4 {
    color: var(--main-text-color);
}

h1 {
    font-size: 45px;
    font-weight: 900;
    line-height: 45px;
    margin-bottom: 30px;
    text-align: center;
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 30px;
        line-height: 42px;
    }
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
    h2 {
        font-size: 30px;
        line-height: 44px;
    }
}

h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
    h3 {
        font-size: 24px;
        line-height: 32px;
    }
}

p {
    font-size: 16px;
    letter-spacing: normal;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 24px;
}

@media screen and (max-width: 992px) {
    p {
        font-size: 14px;
        line-height: 29px;
    }
}

strong {
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    white-space: nowrap;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

table p {
    margin: 0;
}

tbody {
    width: calc(100% - 2px);
    display: table;
}

th {
    background: var(--footer-bg-color);
}

th,
td {
    border: 1px solid var(--main-text-color);
    padding: 8px;
    box-sizing: border-box;
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

table::-webkit-scrollbar {
    height: 8px;
}

table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}



tr:nth-child(even) {
    /*background: #efefef;*/
}

footer,
header,
nav,
section,
main {
    display: block;
    position: relative;
}

main {
    background-color: var(--main-bg-color);
}

section {
    padding: 20px 0;
}

@media screen and (max-width: 768px) {
    section {
        padding: 20px 0;
    }
}

.casinoextra-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .casinoextra-container {
        max-width: 100%;
        padding: 0 15px;
    }
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.casinoextra-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.casinoextra-col:first-child {
    width: 820px;

}

.casinoextra-col:last-child {
    flex: 0 0 330px;
}

@media (max-width: 1030px) {
    .casinoextra-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .casinoextra-col:first-child,
    .casinoextra-col:last-child {
        width: 100%;
        flex: auto;
    }
}

.casinoextra-jc-end {
    justify-content: end !important;
}

.casinoextra-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: initial;
    height: auto;
    padding: 10px 24px;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.casinoextra-btn:hover {
    transform: scale(1.1);
}

.casinoextra-btn__wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .casinoextra-btn__wrapper {
        gap: 20px;
    }
}

.casinoextra-btn-primary {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    box-shadow: 0px 0px 10px 2px var(--button-bg-color);
}

.casinoextra-btn-primary:hover {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
}

.casinoextra-btn-secondary {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
    box-shadow: 0px 0px 10px 2px var(--button-second-bg-color);
}

.casinoextra-btn-secondary:hover {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
}

.casinoextra-btn-pulse {
    animation: pulse 1.5s infinite;
}

.casinoextra-btn-uppercase {
    text-transform: uppercase;
}

.casinoextra-header {
    background-color: var(--header-bg-color);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.casinoextra-header ul,
.casinoextra-header ol,
.casinoextra-header li,
.casinoextra-footer ul,
.casinoextra-footer ol,
.casinoextra-footer li {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

.casinoextra-header__inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.casinoextra-header__inner-primary {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.casinoextra-header__inner-second {
    display: flex;
    align-items: center;
    gap: 10px;
}

.casinoextra-header__row {
    flex-direction: row;
    height: 80px;
}

.casinoextra-header__inner-second .casinoextra-header__row {
    flex-direction: row;
    gap: 10px;
    height: auto;
}

.casinoextra-header__col {
    flex-direction: column;
}

.casinoextra-header__inner-second.casinoextra-header__col {
    padding: 10px 0;
}

.casinoextra-header__logo {
    display: flex;
    max-height: 60px;
    height: 100%;
}

.casinoextra-header__logo a {
    text-decoration: none;
    display: flex;
}

.casinoextra-header__logo img {
    object-fit: contain;
    border-radius: initial;
}

.casinoextra-header__nav {
    display: flex;
}

.casinoextra-header__nav ul {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.casinoextra-header__nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

.casinoextra-header__nav ul li a {
    color: var(--button-text-color);
    text-decoration: none;
    padding: 10px;
}

.casinoextra-header__nav ul li a:hover {
    color: var(--main-text-color);
}

.casinoextra-section img {
    max-width: 1063px;
    display: block;
    margin: auto;
}

.casinoextra-section--main .casinoextra-container> :not(:last-child) {
    margin-bottom: 30px;
}

.casinoextra-btn__wrapper-main {
    max-width: 300px;
    width: 100%;
    margin: auto;
}

.casinoextra-btn__wrapper-main .casinoextra-btn-primary {
    padding: 20px 70px;
    border-radius: 30px;
}

.casinoextra-burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.casinoextra-burger-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--main-text-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.casinoextra-burger-menu.casinoextra-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.casinoextra-burger-menu.casinoextra-active span:nth-child(2) {
    opacity: 0;
}

.casinoextra-burger-menu.casinoextra-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.casinoextra-section--content h1:first-of-type,
.casinoextra-section--content h2:first-of-type,
.casinoextra-section--content h3:first-of-type,
.casinoextra-section--content h4:first-of-type {
    margin-top: 0;
    margin-bottom: 30px;
}

.casinoextra-section--content h1:not(:first-of-type),
.casinoextra-section--content h2:not(:first-of-type),
.casinoextra-section--content h3:not(:first-of-type),
.casinoextra-section--content h4:not(:first-of-type) {
    margin: 30px 0;
}

footer {
    background-color: var(--footer-bg-color);
    ;
    color: var(--main-text-color);
}

.casinoextra-footer__wrapper {
    display: flex;
    flex-direction: column;
    justify-self: center;
    padding: 20px 0;
    gap: 17px;
}

.casinoextra-footer__nav,
.casinoextra-footer__icons,
.casinoextra-footer__inner {
    display: flex;
    justify-content: center;
}

.casinoextra-footer__icons--link img {
    border-radius: initial;
}

.casinoextra-footer__nav--list {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 42px;
}

.casinoextra-footer__nav--link {
    text-decoration: none;
}

.casinoextra-footer__nav--link:hover {
    color: var(--main-text-color);
}

.casinoextra-footer__icons {
    gap: 24px;
    flex-wrap: wrap;
}

.casinoextra-footer__inner p {
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 8px var(--button-bg-color);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
}

@media screen and (max-width: 768px) {
    .casinoextra-burger-menu {
        display: flex;
    }

    .casinoextra-header__inner {
        justify-content: space-between;
    }

    .casinoextra-header__logo {
        max-height: 50px;
    }

    .casinoextra-header__logo img {
        max-width: 100px;
    }

    #casinoextra-nav-menu {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--header-bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start !important;
        display: none;
    }

    .casinoextra-header__nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .casinoextra-header__nav ul li {
        padding: 10px 0;
    }

    #casinoextra-nav-menu .casinoextra-btn__wrapper {
        position: relative;
        flex-direction: row;
        padding: 10px 0;
    }

    #casinoextra-nav-menu.casinoextra-active {
        display: flex;
    }

    .casinoextra-header__row {
        height: 68px;
    }

    .casinoextra-header__inner-second.casinoextra-header__col {
        flex-direction: row;
    }

    .casinoextra-footer__nav--list {
        gap: 20px;
    }
}