/*
Author: Your Name
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Helvetica Neue, Tahoma, Roboto, Open Sans, sans-serif;
    line-height: 27px;
    color: rgb(255, 255, 255);
}

ul {
    list-style-type: disc;
    list-style-position: inside;
}

ol {
    list-style-type: decimal;
    list-style-position: inside;
}

ul ul, ol ul {
    list-style-type: circle;
    list-style-position: inside;
    margin-left: 15px;
}

ol ol, ul ol {
    list-style-type: lower-latin;
    list-style-position: inside;
    margin-left: 15px;
}

a {
    text-decoration: none;
}

h1 {
    display: block;
    margin: 0 0 1rem;
    font-size: 2.4em;
    font-weight: bold;
    line-height: 45px;
}

h2 {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 1rem;
}

h3 {
    display: block;
    font-size: 1.17em;
    font-weight: bold;
}

h4 {
    display: block;
    font-weight: bold;
}

p {
    margin: 0 0 1rem;

    font-size: 15px;
}

button {
    cursor: pointer;
}

.container {
    display: block;
    max-width: 1250px;
    padding: 0 16px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.gap {
    gap: 20px;
}

.btn {
    font-weight: 700;
    background-color: transparent;
    border: 0;
    transition: 0.3s all ease-in;
    border-radius: 4px;
    padding: 0px 16px;
    font-size: 16px;
    height: 32px;
}

.btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255);
    min-width: 96px;
    &:hover {
        filter: brightness(75%);
    }
}

.btn-sec {
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(17, 17, 17);
    background-color: rgb(255, 231, 31);
    border: 2px solid rgb(255, 231, 31);
    min-width: 96px;

    &:hover {
        filter: brightness(75%);
    }
}

.btn-grn {
    display: block;     
    margin: 35px auto 0; 
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    color: rgb(255, 255, 255);
    background-color: rgb(20, 123, 69);
    padding: 0px 30px;
    font-size: 15px;
    height: 43px;
    &:hover {
        filter: brightness(75%);
    }
}

@media (min-width: 767px) {
    p {
        font-size: 19px;
        line-height: 1.5;
    }
}


.header {
    position: fixed;
    width: 100%;
    padding: 0;
    background-color: rgb(20, 123, 69);
    z-index: 100;
    border-bottom: 1px solid rgb(62, 171, 55);
}

.header__link {
    display: block;
}

.header__logo {
    margin-top: 10px;
}

.header__logo-img {
    width: 100px;
    height: auto;
}

.header__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 55px;
    list-style: none;
}

.header__menu a {
    display: block;
    padding: 21px 0 22px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 700;

    &:hover {
        color: rgb(227, 227, 227);
    }
}

.header__menu li:first-of-type a {
    position: relative;
}

.header__nav {
    list-style: none;
    margin-left: 100px;
}

.header__nav li button {
    color: rgb(255, 255, 255);
    font-size: 1rem;

    background-color: transparent;
    border: none;
}

.header__btn {
    margin-left: auto;
}

.menu__conteiner {
    display: flex;
    height: 70px;
    align-items: center;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu div {
    width: 30px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    margin: 3px 0;
    border-radius: 5px;
}


@media (max-width: 860px) {
    .nav {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: rgb(20, 123, 69);
        flex-direction: column;
        justify-content: start;
        padding: 16px 16px;
        transition: right 0.3s ease;
        border-left: 2px solid rgb(62, 171, 55);
        align-items: start;
    }

    .nav.active {
        right: 0;
    }

    .nav li {
        text-align: center;
        justify-content: start;
    }

    .header__menu {
        display: block;
        width: 100%;
    }

    .header__menu li a {
        padding: 10px 0;
        text-align: center;
    }

    .header__menu li:first-of-type a {
        position: static;
    }

    .mobile-menu {
        display: flex;
    }

    .header__btn .btn-main {
        display: none;
    }

    .header__logo {
        margin-left: 30px;
        margin-top: 14px;
    }

    .header__logo-img {
        width: 80px;
        height: auto;
}
}

.main {
    padding: 70px 0 0;
    background-color: rgb(40, 40, 40);
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: linear-gradient(rgba(17, 17, 17, 0.02) 0%, rgb(17, 17, 17) 100%), url('../assets/images/unibet-bg.webp') no-repeat;
    border-bottom: 2px solid rgb(62, 171, 55);
    background-size: cover;
}

.slider__container {
    display: block;
    max-width: 1340px;
    padding: 0 16px;
    margin: 0 auto;
}

.slider__box {
    border-radius: 16px;
    max-width: 560px;
    padding: 24px;
    background-color: rgb(17, 17, 17);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    opacity: 85%;
    border: 1px solid rgb(62, 171, 55);
    margin: 50px 0;
}

.slider__box h1 {
    font-size: 30px;
    line-height: 48px;
    text-transform: uppercase;
}

.slider__box p {
    text-align: center;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: rgb(255, 255, 255);
}

.btn-slider {
    height: 40px;
    width: 100%; 
}

.slider__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.slider-img {
    width: 60px;
    height: auto;
}


@media (max-width: 460px) {
    .slider {
        height: 70dvh;
    }
    .slider__container {
        padding: 0;
    }
}

.games {
    background-color: rgb(34, 34, 34);
    padding: 35px 0 15px;
}

.games__types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 5px 0;
}

.games__icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 80px;
    border: 2px solid rgb(62, 171, 55);
    background-color: rgb(17, 17, 17);
    transition: 0.3s ease-in-out;
     &:hover {
            background-color: rgb(34, 34, 34);
    }
}

.games__item {
    flex: 1 1 100px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color:rgb(255, 255, 255);
    margin-bottom: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

.games__img {
    width: 25px;
}

.games__title {
    font-size: 16px;
    text-align: center;
}


@media (max-width: 680px) {
    .games__item {
        flex: 1 1 30%; 
    }

    .dn {
        display: none;
    }
}


.promotions {
    background-color: rgb(51, 51, 51);
    padding: 40px 0;
}

.promotions__block {
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.promotions__title {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 10px;
}

.promotions__text {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
    padding: 0 0 15px;
}

.promotions__item {
    width: 32%;
    background-color: rgb(17, 17, 17);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
}

.promotions__image {
    width: 100%;
    border-radius: 16px 16px 0 0; 
}

.promotions__descr {
    padding: 0 20px 15px;
}

.promotions__bonus-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin: 15px 0px 8px;
    word-break: break-word;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
}

.promotions__bonus-info {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    word-break: break-word;
    flex: 1 1 0%;
    text-align: left;
}

.promotions__btn {
    width: 100%;
    margin: 10px auto 10px;
    height: 40px;
    font-weight: 500;
}


@media (max-width: 680px) {
    .promotions__item {
        width: 100%;
    }
    .promotions__item:not(:last-child) {
        margin-bottom: 30px;
    }
}



.betting {
    padding: 30px 0 10px;
    background-color: rgb(34, 34, 34);
}

.betting__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0 0;
}

.betting__icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 80px;
    background-color: rgb(68, 68, 68);
    transition: 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 3px;
     &:hover {
    background-color: rgb(227, 227, 227);
    }
}

.betting__item {
    flex: 1 1 82px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color:rgb(255, 255, 255);
    font-size: 15px;
    margin-bottom: 20px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.betting__img {
    width: 28px;
}

.betting__title {
    text-align: center;
}


@media (max-width: 1080px) {
    .betting__item {
        flex: 1 1 15%; 
    }
}


@media (max-width: 680px) {
    .betting__item {
        flex: 1 1 25%; 
    }
}

@media (max-width: 480px) {
    .betting__item {
        flex: 1 1 30%; 
    }
}



.slots {
  padding: 40px 0;
  background-color: rgb(51, 51, 51);
}

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

.slot-card {
    position: relative;
    overflow: hidden;
}

.slot-image {
  position: relative;
}

.slot-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: filter 0.5s ease;
}

.play-btn {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(219, 199, 28);
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 5px;
}

.slot-card:hover img {
    filter: blur(3px) brightness(0.7);
}

.slot-card:hover .play-btn {
    opacity: 1;
}

.slot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0px 8px;
  font-size: 12px;
  color: rgb(255, 255, 255);
  background-color: rgb(1, 84, 30);
}

.slot-title {
    padding-top: 5px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.slot-provider {
  font-size: 12px;
  color: rgb(153, 153, 153);
}



@media (max-width: 1140px) {
  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 780px) {
  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}


.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0 20px;
}

.stat-box {
    background-color: rgb(17, 17, 17);
    padding: 30px 25px;
    border-radius: 8px;
    width: 23%;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
}

.stat-box span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

.stat-box .value {
    font-size: 28px;
    font-weight: 900;
    color: rgb(20, 123, 69);
    line-height: 1.1;
}


@media (max-width: 780px) {
    .stat-box {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .stat-box {
        width: 100%;
        margin-bottom: 20px;
    }
}


.content {
    padding: 0 0 30px;
    background-color: rgb(17, 17, 17);
}

.content h2 {
    text-transform: uppercase;
} 

.content__header {
    margin: 0 0 219px;
    color: rgb(255, 255, 255);
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.content__image img {
    display: block;
    margin: 0 0 16px;
    width: 100%;
    object-fit: cover;
}

.content__text p,
.content__text a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.content__text a {
    color: rgb(40, 255, 187);
}

.content__text a:hover {
    color: rgb(255, 223, 27);
}

.theme-hu {
  background: rgb(17, 17, 17);
  color: rgb(232, 232, 232);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

.theme-hu .container {
  max-width: 1080px;
  padding: 24px;
}

.theme-hu .content__text > *:first-child {
  margin-top: 0;
}

.theme-hu .content__text p,
.theme-hu .content__text ul,
.theme-hu .content__text ol,
.theme-hu .content__text figure,
.theme-hu .content__text table {
  margin: 0 0 16px;
}

.theme-hu .content__text h2.wp-block-heading,
.theme-hu .content__text h2,
.theme-hu .content__text h3.wp-block-heading,
.theme-hu .content__text h3 {
  color: rgb(245, 245, 245);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 28px 0 14px;
  line-height: 1.25;
  position: relative;
  padding-left: 14px;
}

.theme-hu .content__text h2.wp-block-heading::before,
.theme-hu .content__text h2::before,
.theme-hu .content__text h3.wp-block-heading::before,
.theme-hu .content__text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: calc(100% - 12px);
  background: rgb(20, 123, 69);
  border-radius: 3px;
}

.theme-hu .content__text h3.wp-block-heading,
.theme-hu .content__text h3 {
  font-size: 1.25rem;
}

.theme-hu .content__text h3.wp-block-heading::before,
.theme-hu .content__text h3::before {
  background: rgb(219, 199, 29);
}

.theme-hu .content__text p {
  color: rgb(232, 232, 232);
}

.theme-hu .content__text a {
  color: rgb(20, 123, 69);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in oklab, rgb(20, 123, 69) 60%, transparent);
  transition: color .2s ease, border-color .2s ease;
}
.theme-hu .content__text a:hover {
  color: rgb(18, 164, 90);
  border-bottom-color: rgb(18, 164, 90);
}

.theme-hu .content__text ul,
.theme-hu .content__text ol {
  padding-left: 1.25rem;
}

.theme-hu .content__text ul li,
.theme-hu .content__text ol li {
  margin: 8px 0;
}

.theme-hu .content__text ul {
  list-style: none;
}
.theme-hu .content__text ul li {
  position: relative;
  padding-left: 22px;
}
.theme-hu .content__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: rgb(20, 123, 69);
  border-radius: 2px;
  box-shadow: 0 0 0 2px color-mix(in oklab, rgb(20, 123, 69) 25%, transparent);
}

.theme-hu .content__text ol {
  counter-reset: hu-counter;
}
.theme-hu .content__text ol li {
  list-style: none;
  counter-increment: hu-counter;
  position: relative;
  padding-left: 34px;
}
.theme-hu .content__text ol li::before {
  content: counter(hu-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: rgb(29, 29, 29);
  border: 1px solid rgb(20, 123, 69);
  color: rgb(232, 232, 232);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, rgb(20, 123, 69) 35%, transparent);
}


.theme-hu .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wp-block-table thead {
    border:0;
}

.theme-hu table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}


.theme-hu table th,
.theme-hu table td {
    padding: 12px 14px;
    text-align: left;
    color: rgb(232, 232, 232);
    border: 0
}

.theme-hu table th {
    color: rgb(243, 243, 243);
    font-weight: 700;
    border: 0;
}

.theme-hu table tbody tr:nth-child(even) {
    background: rgb(21, 21, 21);
}
.theme-hu table tbody tr:hover {
    background: color-mix(in oklab, rgb(20, 123, 69) 6%, rgb(21, 21, 21));
}

.theme-hu .wp-block-table {
    margin: 16px 0;
}

.theme-hu img {
  border-radius: 20px;
  padding: 12px;
}

.theme-hu .tc {
    background: rgb(17, 17, 17);
    padding: 10px 0;
    border-radius: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
}

.theme-hu .tc::-webkit-scrollbar {
    height: 6px;
}

.theme-hu .tc::-webkit-scrollbar-thumb {
    background-color: rgb(20, 123, 69);
    border-radius: 3px;
}

.theme-hu .toc-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 0;
    padding: 0 !important;
    white-space: nowrap;
}

.theme-hu .toc-list li {
    flex: 0 0 auto;
}

.theme-hu .toc-list li a {
    color: rgb(232, 232, 232);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
    background: rgb(26, 26, 26);
}

.theme-hu .toc-list li a:hover {
    background: rgb(20, 123, 69);
    color: rgb(255, 255, 255);
}



@media (max-width: 768px) {
  .theme-hu .container {
    padding: 16px;
  }
  .theme-hu .content__text h2.wp-block-heading,
  .theme-hu .content__text h2 {
    font-size: 1.35rem;
  }
  .theme-hu .content__text h3.wp-block-heading,
  .theme-hu .content__text h3 {
    font-size: 1.1rem;
  }
  .theme-hu table th,
  .theme-hu table td {
    padding: 10px 12px;
  }
}

.theme-hu a:focus,
.theme-hu button:focus,
.theme-hu .btn:focus,
.theme-hu input[type="submit"]:focus {
  outline: 2px solid color-mix(in oklab, rgb(20, 123, 69) 75%, rgb(255, 255, 255));
  outline-offset: 2px;
  border-radius: 8px;
}


.schema-faq {
    color: rgb(238, 238, 238);
}

.schema-faq-section {
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.schema-faq-answer {
    display: none;
    margin-top: 5px;
    padding-left: 10px;
    color: rgb(51, 51, 51);
    font-size: 14px;
}

.schema-faq-question {
    cursor: pointer;
    user-select: none;
    display: block;
    padding: 12px 15px;
    background-color: rgb(34, 34, 34);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    color: rgb(221, 221, 221);
    transition: background-color 0.3s ease;
    position: relative;
}

.schema-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 20px;
    color: rgb(187, 187, 187);
    transition: transform 0.3s ease;
    transform: translateY(-50%);
}

.schema-faq-question.active {
    background-color: rgb(68, 68, 68);
    color: rgb(255, 255, 255);
}

.schema-faq-question.active::after {
    content: '−';
    color: rgb(255, 255, 255);
}


.footer {
    padding-top: 20px;
    background-color: rgb(51, 51, 51);
}

.footer-border {
    border-bottom: 1px solid rgb(17, 17, 17);
}

.footer__socials {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 0;
}

.footer__icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__icons li {
    display: flex;
    justify-content: center;
}


.footer__bottom {
    display: flex;
    justify-content: space-between;
}

.footer__nav {
    list-style: none;
}

.footer__bottom .footer__nav {
    display: flex;
    flex-wrap: wrap;
}

.footer__nav a {
    height: 20px;
    padding: 0;
    color: rgb(255, 255, 255);
    background-color: transparent;
    border: none;
    text-decoration: underline;
    &:hover {
        color: rgb(211, 211, 211);
    }
}

.footer__nav li {
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
}

.footer__nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: rgb(255, 255, 255);
}

.footer__ad, .footer__cr {
    padding: 20px 0;
}

.ad__left {
    display: flex;
    gap: 20px;
    align-items: center;
    color: rgb(153, 153, 153);
    font-size: 14px;
}


.footer__cr p {
    font-size: 13px;
    color: rgb(153, 153, 153);
}

.footer__rg {
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
}


.nf-container {
    padding: 100px 0;
    text-align: center;
}


.footer__cr a{
    color: rgb(62, 171, 55);
}



@media (max-width: 860px) {
    .footer__socials {
        justify-content: center;
    }

    .fi {
        width: 100%;
    }
}



