@font-face {
    font-family: 'Beaufort for LOL';
    src: url('../font/BeaufortforLOL-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../font/jost.book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(58, 255, 180, 0.4), 0 0 7px rgba(58, 255, 180, 0.3), 0 0 10px rgba(58, 255, 180, 0.2), inset 0 0 5px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 5px rgba(58, 255, 180, 0.6), 0 0 10px rgba(58, 255, 180, 0.5), 0 0 13px rgba(58, 255, 180, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

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

body {
    font-family: 'Jost', sans-serif;
    background: rgb(3 24 28);
    color: #ececec;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    padding: 10px 0;
}

h1, h2, h3, h5, h6 {
    color: #FFFFFF;
    text-shadow: 0 2px 2px #00000080;
    font-family: 'Beaufort for LOL', sans-serif;
}

h1 {
    font-size: 48px;
    line-height: 64px;
}

h2 {
    font-size: 40px;
    line-height: 46px;
}

h3 {
    font-size: 32px;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    line-height: 36px;
    color: #B5C9FF;
    font-family: 'Beaufort for LOL', sans-serif;
}

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

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

.payload-richtext a {
    color: #0ae310;
    font-weight: 800;
    font-family: 'Beaufort for LOL', sans-serif;
    text-decoration: none;
}

.payload-richtext a:hover {
    text-decoration: underline;
}
.main img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.header {
    position: sticky;
    top: 0;
    background-image: url(../img/header-bg-desk.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    box-shadow: 0px -3px 3px 0px #3F2419CC inset;
    box-shadow: 0px 1px 8px 0px #00000080;
    padding: 10px 0;
}

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

.header__logo img {
    max-width: 95px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
    align-items: center;
    z-index: 1001;
}

.hamburger img {
    width: 45px;
    height: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.header__nav {
    display: none;
}

.header__actions {
    display: flex;
    gap: 8px;
}

.custom-button {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    height: 45px;
    cursor: pointer;
    transition: transform 0.2s;
    gap: 0;
}

.custom-button:hover {
    transform: scale(1.02);
}

.btn-left {
    width: 35px;
    background: url(../img/h-btn-r.png) no-repeat center left;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

.btn-center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/h-btn-c.png) repeat-x center;
    background-size: 100% 100%;
    margin: 0 -2px;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'Beaufort for LOL', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    width: 100%;
}

.btn-right {
    width: 35px;
    background: url(../img/hbtn-l.png) no-repeat center right;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

.btn {
    padding: 14px 42px;
    font-family: 'Beaufort for LOL', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #155BA1;
    box-sizing: border-box;
    text-align: center;
}


/* Кнопка баннера — трёхчастная, как в хедере */
.banner-button {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    height: 60px;
    cursor: pointer;
    transition: transform 0.2s;
    gap: 0;
}

.banner-button:hover {
    transform: scale(1.02);
}

.banner-button .btn-left {
    width: 40px;
    background: url(../img/1Secondarypng%203.png) no-repeat center left;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

.banner-button .btn-center {
    background: url(../img/1Secondarypng%202.png) repeat-x center;
    background-size: 100% 100%;
    margin: 0 -2px;
    padding: 0 12px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'Beaufort for LOL', sans-serif;
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    text-transform: uppercase;
}

.banner-button .btn-right {
    width: 40px;
    background: url(../img/1Secondarypng%201.png) no-repeat center right;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 200px;
    height: calc(100vh - 90px);
    background: #031D41;
    border-right: 1px solid #155BA1;
    z-index: 50;
    transition: transform 0.3s ease;
}

.sidebar__close {
    display: none;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    padding: 5px;
    gap: 15px;
    margin-top: 30px;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #d0b194;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Beaufort for LOL', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    background: #7B542E66;
    border-radius: 4px;
    box-sizing: border-box;
}

.sidebar__link::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../img/icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
    order: -1;
}

.sidebar__link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1px;
    background: radial-gradient(circle at 0% 70%, rgba(58, 255, 180, 0.4) 0%, transparent 50%), radial-gradient(circle at 100% 90%, rgba(58, 255, 180, 0.4) 0%, transparent 50%), radial-gradient(circle at 50% 0%, #30ff36 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sidebar__link > * {
    position: relative;
    z-index: 1;
}

.sidebar__link:hover::before {
    opacity: 1;
}

.main {
    margin-left: 0;
    padding: 0;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 450px;
    display: flex;
    align-items: center;
    font-family: 'Beaufort for LOL', sans-serif;
    background-image: url(../img/banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    text-align: center;
}

.hero__subtitle {
    font-family: 'Beaufort for LOL', sans-serif;
    color: #E9F9FF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero__title {
    font-family: 'Beaufort for LOL', sans-serif;
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0px 1px 0px #101523;
}

.content {
    padding: 0 0 48px 0;
    font-family: 'Jost', sans-serif;
}

p, ul, ol {
    font-size: 17px;
    line-height: 28px;
    color: #e1e1e1;
    margin-bottom: 16px;
    font-family: 'Jost', sans-serif;
}

ul, ol {
    background: #062c33;
    padding: 20px 40px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
}

ol li::marker {
    color: #0ae310;
    font-weight: 800;
}
ul li {
    list-style: none;
    position: relative;
}

ul li::before {
    content: '••';
    position: absolute;
    left: -28px;
    color: #0ae310;
    font-weight: 800;
    letter-spacing: -4px;
    text-shadow: 0 0 8px rgba(10, 227, 16, 0.5);
}


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

ul {
    list-style-type: none;
}

ol {
    list-style-type: decimal;
}

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

.lexical-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0px -3px 3px 0px #3F2419CC inset;
    box-shadow: 0px 1px 8px 0px #00000080;
    margin-bottom: 20px;
}

.lexical-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgb(3 24 28);
    border-radius: 8px;
    overflow: hidden;
}

.lexical-table tr {
    border-bottom: 1px solid rgb(3 24 28);
}

.lexical-table p {
    margin: 0;
}

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

.lexical-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.lexical-table td {
    font-size: 16px;
    border: none !important;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    white-space: normal;
    word-wrap: break-word;
}

.table-label {
    color: #ffffff;
    font-weight: 500;
    width: 50%;
    font-family: 'Jost', sans-serif;
}

.table-value {
    color: #B5C9FF;
    font-weight: normal;
    text-align: left;
    font-family: 'Jost', sans-serif;
}

.featured img {
    width: 100%;
    height: auto;
    display: block;
}

.footer {
    background: #1E0D00;
    padding: 48px 0 32px;
    margin-top: 64px;
    text-align: center;
}

.footer__logo {
    margin-bottom: 32px;
}

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

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer__link {
    color: #d0b194;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Beaufort for LOL', sans-serif;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #30ff36;
}

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

.footer__licenses {
    margin-bottom: 24px;
}

.footer__payments {
    margin-bottom: 32px;
}

.footer__licenses img,
.footer__payments img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer__disclaimer {
    margin-bottom: 16px;
}

.footer__disclaimer p,
.footer__copyright p {
    font-size: 14px;
    line-height: 20px;
    color: #FAF3C1;
    margin-bottom: 0;
    font-family: 'Jost', sans-serif;
}

.hero::before {
    background: linear-gradient(360deg, #03171c 0%, #062c3300 9%, transparent 69%);
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 3;
    }

    .sidebar {
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgb(3 24 28);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
    }

    .sidebar.active {
        right: 0;
    }

    .sidebar__close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 40px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
    }

    .sidebar__close:hover {
        color: #30ff36;
        transform: rotate(90deg);
    }

    .sidebar__nav {
        margin-top: 80px;
        padding: 20px 10px;
    }

    .sidebar__link {
        font-size: 18px;
        padding: 14px 20px;
    }

    .main {
        padding-top: 40px;
    }

    .container {
        padding: 0 16px;
    }

    .content {
        padding: 16px 0;
    }

    .header .container {
        gap: 0;
        flex-wrap: wrap;
    }

    .header{
        box-shadow: none;
    }

    .header__logo {
        flex: 1;
        display: flex;
        order: 2;
    }

    .header__actions {
        position: absolute;
        background: #062c33;
        top: 65px;
        left: 0;
        width: 100%;
        gap: 20px;
        padding: 5px 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .custom-button {
        min-width: 45%;
    }

    .hero {
        min-height: 375px;
        flex-direction: column;
        justify-content: flex-end;
        margin-bottom: 0;
        background-image: url(../img/mob-banner.webp);
    }

    .hero__video {
        display: none;
    }

    .hero .container {
        z-index: 1;
    }

    .hero__content {
        position: static;
        text-align: center;
        padding: 20px 16px;
        max-width: 100%;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .banner-button {
        height: 60px;
    }

    .banner-button .btn-left,
    .banner-button .btn-right {
        width: 30px;
    }

    .banner-button .btn-center {
        font-size: 18px;
        padding: 0 8px;
    }

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

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

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

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

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

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

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

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

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

    p, ul, ol {
        font-size: 18px;
        line-height: 25px;
    }

    .footer {
        padding: 32px 0 24px;
        margin-top: 48px;
    }

    .footer__logo {
        margin-bottom: 24px;
    }

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

    .footer__nav {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .footer__link {
        font-size: 16px;
    }

    .footer__licenses,
    .footer__payments {
        gap: 16px;
    }

    .footer__licenses {
        margin-bottom: 20px;
    }

    .footer__payments {
        margin-bottom: 24px;
    }

    .footer__licenses img {
        height: 50px;
    }

    .footer__payments img {
        height: 50px;
    }

    .footer__disclaimer p,
    .footer__copyright p {
        font-size: 14px;
        line-height: 18px;
    }
    .hero::before {
        background: linear-gradient(360deg, #03171c 0%, #062c33 9%, transparent 69%);
    }
}

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

@media (min-width: 769px) {
    .hamburger,
    .overlay,
    .sidebar {
        display: none;
    }

    .header__logo {
        flex: 0 0 auto;
    }

    .header__nav {
        display: flex;
        gap: 32px;
        align-items: center;
        flex: 1;
        justify-content: center;
    }

    .header__link {
        color: #d0b194;
        text-decoration: none;
        font-family: 'Beaufort for LOL', sans-serif;
        font-size: 16px;
        position: relative;
    }

    .header__link:hover {
        color: #ffffff;
    }

}
/* RTL-блоке */
[dir="rtl"] [style*="text-align: left"] {
    text-align: inherit !important;
}
/* RTL-блоке */
[dir="rtl"] .hero {
    margin-right: calc(-50vw + 50%);
}

/* --- 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;
  }
}
