﻿body {
    background-color: #1D2836;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}
h1 {
    font-size: 40px;
    font-weight: 900;
}
h2 {
    font-size: 35px;
    font-weight: 900;
    margin: 40px 0 30px 0;
}
h3 {
    font-size: 25px;
    font-weight: 900;
    margin-top: 40px;
}
h4 {
    margin-top: 40px;
}


/* BUTTONS */
.casino-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.casino-buttons a {
    text-align: center; /* Центрируем текст, если это требуется */
}

.casino-buttons a button {
    background-color: #33cc33;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    font-size: 1em;
    width: 250px !important; /* Устанавливаем фиксированную ширину */
}

.casino-buttons a .download-apk {
    background-color: #0099cc;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    .casino-buttons {
        flex-direction: column !important;
    }

    .columnsh1 {
        flex-direction: column !important;
    }

    .columnsh1 > .wp-block-column {
        flex: 1 !important;
        margin-bottom: 10px !important;
    }

    .columnsh1 > .wp-block-column:last-child {
        margin-bottom: 0 !important;
    }
}




/* Admin bar and menu */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

#content {
    padding-top: 70px;
}
body.admin-bar #content {
    padding-top: 70px;
}
@media screen and (max-width: 782px) {
    body.admin-bar #content {
        padding-top: 74px;
    }
}



/* Links */
a {
    color: #55DE16;
    text-decoration: none;
}
a:hover {
    color: #40BB07;
    text-decoration: none;
}



/* Site header */
.site-header {
    background-color: #0D151D;
    box-shadow: 0 5px 10px -5px black;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 9999;
    left: 0;
    top: 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
}

.site-branding img {
    max-width: 200px;
    height: auto;
}



/* HOME HEADER */
.home-header {
    background-color: #171F2A;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-header .container {
    max-width: 1300px;
    margin: 0 auto;
    background-image: url('../image/home-header.webp');
    background-size: cover;
    background-position: right;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.home-header .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
    display: none;
}

@media (max-width: 768px) {
    .home-header .container::before {
        display: block;
    }
}

.home-header .row {
    display: flex;
    width: 100%;
}

.home-header .col-left {
    flex: 1;
    color: #ffffff
}

.home-header .col-left h1 {
    margin: 0;
}

.home-header .col-left p {
    margin: 20px 0;
}

.home-header .buttons {
    display: flex;
    gap: 20px;
}

.home-header .buttons .btn {
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 5px;
}

.home-header .buttons .btn-secondary {
    background-color: #6c757d;
}



.five-columns {
    background-color: #0D151D;
    padding: 10px 0;
    width: 100%;
    position: relative;
}

.five-columns::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #4F555E;
}

.five-columns .container {
    max-width: 1300px;
    margin: 0 auto;
}

.five-columns .row {
    display: flex;
    justify-content: space-between;
}

.five-columns .column {
    flex: 1;
    padding: 10px;
    color: #ffffff;
    text-align: center;
    margin-bottom: -10px;
}

.five-columns .column .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.content-area {
    padding: 0px;
    background-color: #1D2836;
    color: #ffffff;
}



/*Quick Facts*/
.quick-facts {
	border-radius: 10px;
	color: #000;
}
.quick-facts h3 {
  padding-top: -10px;
}


/* Darck block */
.dark {
    background-color: #171F2A;
    padding: 40px 0 0 0;
    position: relative;
    width: 100vw;
    justify-content: center;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.copy-right a {
    color: #fff;
}




/* Other */
.max800 {max-width: 800px;}

.mt-10px { margin-top: 10px; }
.mt-20px { margin-top: 20px; }
.mt-30px { margin-top: 30px; }
.mt-40px { margin-top: 40px; }
.mt-50px { margin-top: 50px; }
.mt-60px { margin-top: 60px; }
.mt-70px { margin-top: 70px; }


.mb-0px { margin-bottom: 0px; }
.mb-10px { margin-bottom: 10px; }
.mb-20px { margin-bottom: 20px; }
.mb-30px { margin-bottom: 30px; }
.mb-40px { margin-bottom: 40px; }
.mb-50px { margin-bottom: 50px; }
.mb-60px { margin-bottom: 60px; }
.mb-70px { margin-bottom: 70px; }


.fs-12px { font-size: 12px; }
.fs-14px { font-size: 14px; }
.fs-16px { font-size: 16px; }
.fs-18px { font-size: 18px; }
.fs-20px { font-size: 20px; }

.r10 {border-radius: 10px;}
.rd10 img {border-radius: 10px;}






@media (min-width: 768px) {
    .nodesktop {
        display: none; /* NO VISIBLE DESCTOP */
    }
}




/* DESCTOP MENU */
#primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#primary-menu li {
    position: relative;
    margin: 0px;
}

#primary-menu a {
    color: white;
    text-decoration: none;
    padding: 25px;
    display: block;
		height: 70px;
		align-content: center;
    transition: background-color 0.3s;
}

#primary-menu a:hover,
#primary-menu li:hover > a {
    background-color: #060B0F;
}

#primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

#primary-menu .sub-menu li {
    width: 200px;
    background-color: #060B0F;
		height: 50px;
}

#primary-menu .sub-menu a {
    padding: 10px 15px;
    transition: background-color 0.3s;
		height: 50px;
}

#primary-menu .sub-menu a:hover {
    background-color: #3a3f50;
}

#primary-menu li:hover > .sub-menu {
    display: block;
    background-color: #181F30;
}

#primary-menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('../image/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-right: -5px;
    vertical-align: middle;
}
.menu-toggle {
    display: none;
}
/* End desctop menu */




/*MOBILE MENU*/
.menu-toggle {
    display: block;
}
.custom-mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #0D151D;
    height: 60px;
    padding: 0 15px;
    box-sizing: border-box;
}

.custom-mobile-menu .custom-logo {
    width: 200px;
}

.custom-mobile-menu-toggle {
    background: url('../image/menu.svg') no-repeat center center;
    background-size: contain;
    border: none;
    width: 24px;
    height: 24px;
    margin-left: auto;
    cursor: pointer;
}

.custom-mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    color: #0D151D;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow-y: auto;
    padding: 0;
}

.custom-mobile-menu-container.open {
    display: block;
}

.custom-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0D151D;
    padding: 0 15px;
    height: 70px;
    width: 100%;
    box-sizing: border-box;
}

.custom-logo-container {
    width: 200px;
    display: flex;
    align-items: center;
}

.custom-logo {
    width: 200px;
    height: auto;
}

.custom-mobile-menu-close {
    background: url('../image/close-menu.svg') no-repeat center center;
    background-size: contain;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.custom-mobile-menu-content {
    padding: 20px;
}

#custom-mobile-menu {
    list-style: none !important;
    padding: 0 !important;
}

#custom-mobile-menu li {
    margin-bottom: 15px;
    list-style: none !important;
    position: relative;
}

#custom-mobile-menu > li > a {
    color: #080E1D;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-mobile-menu .menu-item-has-children.open .custom-submenu-toggle img {
    transform: rotate(180deg);
}

.custom-mobile-menu .menu-item-has-children > ul {
    display: none;
    padding-left: 20px;
    margin-top: 15px;
}

.custom-mobile-menu .menu-item-has-children.open > ul {
    display: block;
}

#custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
}

#custom-overlay.show {
    display: block;
}

/* hide mobile menu on desctop */
@media (min-width: 1025px) {
    .custom-mobile-menu,
    #custom-overlay,
    .custom-mobile-menu-container {
        display: none !important;
    }
}
/* hide desctop menu on mobile */
@media (max-width: 1024px) {
    .main-navigation {
        display: none !important;
    }
}