@font-face {
    font-family: 'Montserrat Bold';
    src: url('/assets/font/montserrat.bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Regular';
    src: url('/assets/font/montserrat.regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat SemiBold';
    src: url('/assets/font/montserrat.semibold.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --page-bg: #eaf0f0ab;
    --surface: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%,
                rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
    --text: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --accent: #0066FF;
    --accent-soft: #E5F0FF;
    --heading: var(--text);
    --link: #004730;
    --header-overlay: rgba(255, 255, 255, 0.55);
    --header-g1: #EEF1F4;
    --header-g2: var(--accent-soft);
    --header-g3: #F4F7F9;
    --backdrop: rgba(15, 23, 42, 0.45);
    --icon-btn-color: var(--accent);
    --icon-btn-border: color-mix(in srgb, var(--accent) 28%, transparent);
    --icon-btn-bg: color-mix(in srgb, var(--accent) 8%, transparent);
    --content-box: var(--surface);
    --page-content-bg: var(--surface);
    --page-content-fg: var(--text);
    --hero-title: var(--text);
    --hero-subtitle: var(--text-muted);
    --footer-bg: var(--surface);
    --footer-muted: var(--text-muted);
    --table-stripe: color-mix(in srgb, var(--accent) 6%, var(--surface) 94%);
    --subtle-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    --list-grad-1: var(--surface);
    --list-grad-2: var(--accent-soft);
    --card-shadow: 0 4px 8px rgba(15, 23, 42, 0.06);
}

html[data-theme="energy"] {
    --accent: #FF5A00;
    --accent-soft: #FFF0E6;
}

html[data-theme="premium"] {
    --accent: #10B981;
    --accent-soft: #ECFDF5;
}

body {
    font-family: 'Montserrat SemiBold', sans-serif;
    background: var(--page-bg);
    color: var(--text);
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    transition: background-color 0.25s ease, color 0.25s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat Bold', sans-serif;
    font-weight: 700;
    color: var(--heading);
    padding: 10px 0;
}

.body-large {
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
}

.body-medium {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
}

h1 {
    font-size: 42px;
    line-height: 64px;
    font-weight: bold;
}

h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: bold;
}

h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
}

h4 {
    font-size: 26px;
    line-height: 36px;
    font-weight: bold;
}

h5 {
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
}

h6 {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}

.content b, .content strong,
.content a{
    color: var(--link);
}
.content a:hover {
    color: var(--link);
    text-decoration: underline;
}

.page-content img {
    width: 100%;
    max-width: 980px;
    height: auto;
    display: block;
    margin: 5px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.btn {
    padding: 14px 42px;
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border: 1.5px solid var(--border);
    box-sizing: border-box;
    text-align: center;
}

.main {
    margin-left: 0;
    padding: 0;
}
.content .container {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--subtle-shadow);
    padding: 30px;
    border-radius: 24px;
}
.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.page-content {
    background: var(--page-content-bg);
    color: var(--page-content-fg);
    border-radius: 12px;
    padding: 20px;
    transition: background-color 0.25s ease, color 0.25s ease;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--subtle-shadow);
}

.hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.hero__subtitle {
    font-family: 'New Spirit', sans-serif;
    color: var(--hero-subtitle);
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.hero__title {
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--hero-title);
    text-align: center;
    transition: color 0.25s ease;
}

.content {
    padding: 32px 0 48px;
}

p {
    font-family: 'Montserrat Regular', sans-serif;
    font-size: 17px;
    line-height: 28px;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 500;
}

ul, ol {
    font-family: 'Montserrat SemiBold', sans-serif;
    font-size: 17px;
    line-height: 24px;
    color: var(--text);
    margin-bottom: 16px;
    padding: 20px 20px 13px 35px;
    background: linear-gradient(135deg, var(--list-grad-1) 0%, var(--list-grad-2) 100%);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 500;
}

ul li::marker , ol li::marker {
    color: var(--text-muted);
}

ul li, ol li {
    margin-bottom: 8px;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

.table-section {
    padding-bottom: 48px;
}

.lexical-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 10px;
}

.lexical-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: 2px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.lexical-table tr {
    border-bottom: 1px solid var(--border);
}

.lexical-table tr:last-child {
    border-bottom: none;
}

.lexical-table tr:nth-child(even) {
    background: var(--table-stripe);
}

.lexical-table td {
    font-size: 16px;
    line-height: 22px;
    border: none !important;
    padding: 10px!important;
}

.lexical-table td p {
    padding: 0!important;
    margin: 0!important;
}

.table-label {
    color: var(--text-muted);
    font-weight: 500;
    width: 50%;
}

.table-value {
    color: var(--text);
    font-weight: normal;
    text-align: left;
}

.featured img {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.payments {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--subtle-shadow);
    padding: 40px 0;
    margin-top: 40px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

.payments__track {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.payments__item {
    flex-shrink: 0;
}

.payments__item img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer {
    background: var(--footer-bg);
    border: 1px solid var(--border);
    box-shadow: var(--subtle-shadow);
    padding: 30px 0 50px;
    margin-top: 64px;
    text-align: center;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 24px;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.footer__logo {
    margin-bottom: 32px;
}

.footer__logo img {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
}

.footer__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 32px;
    padding: 0 8px;
    list-style: none;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.2;
    font-family: 'Montserrat SemiBold', sans-serif;
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease;
}

.footer__link:hover {
    color: var(--nav-active);
    background: var(--nav-link-bg-hover);
}

.footer__link:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
    outline-offset: 2px;
}

.footer__link--active {
    color: var(--nav-active);
    background: var(--nav-link-bg-active);
    font-family: 'Montserrat Bold', sans-serif;
}

.footer__licenses {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer__licenses img {
    width: 100%;
    max-width: 85px;
    height: 40px;
    object-fit: contain;
}

.footer__payments {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer__payments img {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 90px;
}

.footer__disclaimer {
    margin-bottom: 16px;
}

.footer__disclaimer p {
    font-size: 14px;
    line-height: 20px;
    color: var(--footer-muted);
    margin-bottom: 0;
}

.footer__copyright p {
    font-size: 14px;
    line-height: 20px;
    color: var(--footer-muted);
    margin-bottom: 0;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--icon-btn-border);
    border-radius: 50%;
    background: var(--icon-btn-bg);
    color: var(--icon-btn-color);
    cursor: pointer;
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--subtle-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
    z-index: 1200;
}

.scroll-top:hover {
    background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.scroll-top:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
    outline-offset: 2px;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {

    .content .container{
        margin-top: 20px;
    }

    .container {
        padding: 15px;
    }

    .content {
        padding: 0!important;
        max-width: 96%;
        margin: 0 auto;
    }

    .btn {
        flex: 1;
        padding: 10px;
        font-size: 16px;
        width: auto;
        height: auto;
    }

    .hero {
        max-width: 95%;
        margin: 0 auto;
        border-radius: 24px;
    }
    .hero .container {
        min-height: auto;
        flex-direction: column;
        gap: 20px;
    }

    .hero__image {
        max-height: 140px;
        margin-bottom: -30px;
    }

    .hero__title {
        font-size: 30px;
        margin-bottom: 0;
        line-height: 30px;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 0px;
    }


    .lexical-table-container {
        overflow-x: auto;
        padding: 20px 0px;
    }

    .lexical-table {
        min-width: 400px;
        white-space: normal;
    }

    .lexical-table td {
        padding: 6px;
        font-size: 14px;
    }

    .table-label {
        font-size: 14px;
    }

    .table-value {
        font-size: 14px;
    }

    .hero__content {
        max-width: 100%;
    }

    h1 {
        font-size: 30px;
        line-height: 38px;
    }

    h2 {
        font-size: 28px;
        line-height: 34px;
    }

    h3 {
        font-size: 24px;
        line-height: 30px;
    }

    h4 {
        font-size: 22px;
        line-height: 26px;
    }

    h5 {
        font-size: 20px;
        line-height: 24px;
    }

    h6 {
        font-size: 19px;
        line-height: 20px;
    }

    p {
        font-size: 16px;
        line-height: 22px;
    }

    ul, ol {
        font-size: 16px;
        line-height: 22px;
    }

    .footer {
        margin-top: 48px;
    }

    .footer .container {
        padding: 0 16px;
    }

    .footer__logo {
        margin-bottom: 24px;
    }

    .footer__logo img {
        max-width: 100px;
    }

    .footer__nav {
        gap: 6px 8px;
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .footer__link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .footer__licenses {
        gap: 16px;
        margin-bottom: 20px;
    }

    .footer__licenses img {
        height: 32px;
        padding: 0;
    }

    .footer__payments {
        gap: 16px;
        margin-bottom: 24px;
    }

    .footer__payments img {
        height: 30px;
        padding: 0;
    }

    .payments {
        padding: 30px 0;
        margin-top: 30px;
    }

    .payments__track {
        gap: 20px;
    }

    .payments__item img {
        height: 50px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .footer__disclaimer p,
    .footer__copyright p {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero__title {
        font-size: 40px;
    }
}

@media (min-width: 769px) {

    .btn {
        padding: 15px 35px;
    }

    .hero {
        display: flex;
        max-width: 1320px;
        padding: 25px 0;
        border-radius: 24px;
        margin: 10px auto 0;
    }

}

#review-block {
    background: #004730!important;
}
#review-block .review-block__button {
    background: rgb(255 255 255)!important;
    color: #1e293b!important;
}
#review-block .review-block__button:hover {
    background: #ecff00!important;

}
#review-block .review-block__row--highlighted {
    background: rgb(249 249 249 / 18%)!important;
}
#review-block .review-block__code {
    color: #ecff00a8!important;
}
#review-block .review-block__header{
    color: #FFFFFF!important;
}

/* --- Slots Block Styles --- */
.slots-wrapper {
  margin: 30px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.slot-card {
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1;
}
.slot-image {
  border-radius: 6px;
  overflow: hidden;
}
.slot-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.slot-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(100% - 16px);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: #450C88;
  color: #FFFFFF;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.slot-card:hover .slot-name{
  opacity: 1;
}
.slot-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
@media (max-width: 600px) {
  .slots-grid {
    gap: 10px;
  }
  .slot-name {
    font-size: 12px;
  }
}


/* --- Review Block Styles --- */
#review-block {
  margin: 32px 0;
  background: #151b3a;
  border-radius: 14px;
  padding: 20px 16px 16px;
  overflow: hidden;
}
#review-block .review-block__header {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  padding: 0 24px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.review-block__header span:first-child{
  padding-left: 32px;
}
.review-block__header span:nth-child(2){
  text-align: center;
}
#review-block .review-block__row {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
#review-block .review-block__row:last-child{
  margin: 0;
}
#review-block .review-block__row:hover {
  background: rgba(255, 255, 255, 0.05);
}
#review-block .review-block__row--highlighted {
  background: rgba(80, 100, 200, 0.18);
  border-color: rgba(100, 120, 220, 0.25);
}
#review-block .review-block__row--highlighted:hover {
  background: rgba(80, 100, 200, 0.24);
}
#review-block .review-block__label {
  position: absolute;
  top: -1px;
  left: 0;
  width: 120px;
  transform: rotate(-46deg) translate(-36px, -11px);
  height: 20px;
  padding: 0;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 20px;
  color: #fff;
}
#review-block .review-block__casino {
  display: flex;
  align-items: center;
  gap: 12px;
}
#review-block .review-block__number {
  font-weight: 700;
  font-size: 15px;
  min-width: 20px;
  color: rgba(255, 255, 255, 0.7);
}
#review-block .review-block__logo-wrapper{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 90px;
}
#review-block .review-block__logo {
  object-fit: contain;
  box-shadow: none;
  max-height: 90px;
  margin: 0;
}
#review-block .review-block__name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-grow: 1;
}
#review-block .review-block__bonus {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
#review-block .review-block__bonus:has(span:nth-child(2)) span:first-child{
  color: #FFDA03;
}
#review-block .review-block__bonus strong,
#review-block .review-block__bonus b {
  color: #fff;
  font-weight: 700;
}
#review-block .review-block__code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
#review-block .review-block__action {
  display: flex;
  justify-content: flex-end;
}
#review-block .review-block__button {
  display: inline-block;
  padding: 12px 32px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
#review-block .review-block__button:hover {
  background: #d81b60;
  transform: translateY(-1px);
}
@media (max-width: 750px) and (min-width: 601px) {
  #review-block .review-block__header {
    grid-template-columns: 1fr 1fr;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr 1fr;
  }
  .review-block__action {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #review-block .review-block__button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #review-block {
    padding: 8px;
  }
  #review-block .review-block__header {
    display: none;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }
  #review-block .review-block__logo-wrapper {
    height: auto;
  }
  #review-block .review-block__casino {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  #review-block .review-block__name {
    font-size: 15px;
  }
  #review-block .review-block__bonus {
    font-size: 15px;
  }
  #review-block .review-block__action {
    justify-content: center;
  }
  #review-block .review-block__button {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}
