@font-face {
    font-family: 'Roboto Light';
    src: url('../font/roboto-math-300-normal.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Regular';
    src: url('../font/roboto-math-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto SemiBold';
    src: url('../font/roboto-math-500-normal.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Bold';
    src: url('../font/roboto-math-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* RGB-компоненты для `rgb(var(--stb-neutral-900))` — соответствуют #28150b */
    --stb-neutral-900: 40, 21, 11;
}

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

body {
    font-family: 'Roboto Regular', Georgia, 'Times New Roman', serif;
    font-size: 18px;
    background-color: #0b0833;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Bold', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: #fff;
    padding: 12px 0;
    text-shadow: 2px 2px #28150b, 2px 0 #28150b, 0 2px rgb(var(--stb-neutral-900)), -2px -2px #28150b, -2px 0 #28150b, 0 -2px #28150b, -2px 2px #28150b, 2px -2px #28150b;
}

.content ul,
.content ol {
    font-family: 'Roboto Regular', Georgia, 'Times New Roman', serif;
}

button,
.custom-button,
.custom-button .btn-center,
.sidebar__link,
.sidebar__close {
    font-family: 'Roboto SemiBold', serif;
    color: #fff;
}

.header__nav,
.header__link,
.header__link .btn-center {
    font-family: 'Roboto Light', Georgia, 'Times New Roman', serif;
    font-weight: 300;
    color: #fff;
}

.hero__title,
.custom-button.btn--hero,
.custom-button.btn--hero .btn-center {
    font-family: 'Roboto Bold', serif;
    color: #fff;
}

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

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

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

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

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

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

.content b, .content strong,
.content a{
    color: #fff;
}
.content a:hover {
    color: #fff;
    text-decoration: underline;
}


.page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header {
    background-color: #0e1147;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px;
}

.header::after {
    content: "";
    z-index: 1;
    background: linear-gradient(180deg, #0d1147 0%, #0b083300 100%);
    width: 100%;
    height: 20px;
    display: block;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
}

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

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

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

.hamburger img {
    width: 24px;
    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 {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s;
    gap: 0;
}

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

.custom-button:active {
    transform: scale(0.94);
}

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

.custom-button .btn-center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/center.png') repeat-x center;
    background-size: auto 100%;
    margin: 0 -2px;
    position: relative;
    z-index: 1;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    padding: 0 12px;
    font-size: 24px;
    color: #fff;
}

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

/* Кнопки в шапке: без спрайтов left/center/right */
.header__actions .custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s;
    gap: 0;
    height: auto;
    min-height: 44px;
    background-color: #fff0;
    border: 1px solid #ffffff4d;
    border-radius: 6px;
    box-sizing: border-box;
}

.header__link {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 0 14px;
}

.header__actions .custom-button .btn-left,
.header__actions .custom-button .btn-right,
.header__link .btn-left,
.header__link .btn-right {
    display: none;
}

.header__actions .custom-button .btn-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 14px;
    background: none;
    background-image: none;
    text-shadow: none;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}

.header__link .btn-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 14px;
    background: none;
    background-image: none;
    text-shadow: none;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
}

.header__link:hover {
    transform: scale(0.97);
}

.header__link:active {
    transform: scale(0.94);
}

/* Hero CTA: те же капсулы, чуть крупнее подпись */
.btn--hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: 'Roboto SemiBold', serif;
    font-size: 28px;
    text-transform: uppercase;
    color: #fff;
    background-color: #069e83;
    padding: 20px 40px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 200px;
    height: calc(100vh - 90px);
    background: #0c1221;
    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: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    background: #07166b;
    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;
}

.sidebar__link::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: 
        radial-gradient(circle at 0% 70%, rgba(242, 96, 96, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 100% 90%, rgba(242, 96, 113, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, #ad202c 0%, transparent 50%);
    -webkit-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: 0 15px;
}

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

.hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-image: url('../img/bg-u-desktop.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    z-index: 1;
    background: linear-gradient(360deg, #0a0833 0%, #0b083300 100%);
    width: 100%;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-width: 0;
}

.hero__content {
    position: relative;
    z-index: 10;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

/* Справа: баннер + «шарики» (u-sequence.svg) */
.hero__aside {
    position: relative;
    z-index: 2;
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(52%, 520px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: center;
    gap: 0;
    margin-left: auto;
    pointer-events: none;
}

.hero__banner {
    width: 100%;
    max-width: 480px;
    line-height: 0;
}

.hero__banner img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

/* Важно: у родителя задана явная height, иначе height: 500% у .balls схлопывается в 0. */
.hero__balls {
    position: relative;
    width: 100%;
    height: min(360px, 50vh);
    min-height: min(280px, 40vh);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    pointer-events: none;
}

.balls {
    display: block;
    pointer-events: none;
    flex-shrink: 0;
    background-color: transparent;
    background-image: url('../img/u-sequence.svg');
    background-repeat: no-repeat;
    /* Первый кадр длинного спрайта (см. u-sequence.svg) */
    background-size: 100% 6000%;
    background-position: 50% 0%;
    width: 500%;
    height: 500%;
    transform: scale(1.72);
    transform-origin: 65% 50%;
}

.hero__subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    -webkit-text-fill-color: #fff;
    filter: drop-shadow(0 2px 0px rgba(0, 0, 0, 0.35)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

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

p {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 300;
}

ul, ol {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 300;
    padding: 20px 35px;
    position: relative;
    background: #0d1147;
    border: 1px solid #ffffff4d;
    border-radius: 4px;
}

ul::before,
ol::before {
    content: "";
    position: absolute;
    inset: 2px;
    background-color: #30180d;
    border-radius: 4px;
    z-index: -1;
}

ul li::marker , ol li::marker {
   color: #fff;
}

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

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

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

.lexical-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    border-radius: 2px;
    overflow: hidden;
    white-space: nowrap;
    background: #0d1147;
}

.lexical-table tr {
    border-bottom: 1px solid #4e1a0e;
}

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

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

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

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

.table-label {
    color: #fff;
    font-weight: 500;
    width: 50%;
}

.table-value {
    color: #fff;
    font-weight: normal;
    text-align: left;
}

.footer {
    background: #0a0833;
    font-family: 'Roboto Light',san-serif;
    font-weight: 300;
    padding: 20px 0 50px;
    margin-top: 64px;
    text-align: center;
}

.footer__logo {
    margin-bottom: 32px;
}

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

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

.footer__link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
}

.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: 35px;
    width: auto;
    object-fit: contain;
}

.footer__disclaimer {
    margin-bottom: 16px;
}

.footer__disclaimer p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 0;
}

.footer__copyright p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 0;
}

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

    .sidebar {
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #0a0833;
        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: #fff;
        transform: rotate(90deg);
    }

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

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

    .main {
        margin: 0;
    }

    .content {
        padding: 0!important;
    }
    
    .header .container {
        display: flex;
        align-items: center;
        gap: 0px;
        flex-wrap: wrap;
    }

    .header__logo {
        flex: 1;
        display: flex;
        justify-content: center;
        order: 2;
    }

    .header__logo img {
        width: 130px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .header__actions {
        position: absolute;
        top: 45px;
        justify-content: center;
        left: 0;
        width: 100%;
        display: flex;
        gap: 10px;
        padding: 5px;
        background: transparent;
        z-index: 100;
        background: #0e1147;
    }

    .header__actions .custom-button {
        flex: 1;
        min-width: 0;
        min-height: 40px;
        height: auto;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-image: url('../img/bg-u-desktop.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: 30px;
    }
    .hero::after {
        display: none;
    }
    .hero .container {
        z-index: 1;
        padding: 0;
        width: 100%;
        flex-direction: column-reverse;
        align-items: center;
    }

    .hero__aside {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 12px auto 0;
        align-self: stretch;
    }

    .hero__banner {
        max-width: 100%;
        padding: 0 12px;
    }

    .hero__banner img {
        max-width: 100%;
        max-height: 150px;
    }

    .hero__balls {
        display: flex;
        width: 100%;
        height: 200px;
        min-height: 200px;
        justify-content: center;
    }

    .hero__balls .balls {
        transform: scale(0.55);
        transform-origin: center;
    }

    .hero__content {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        text-align: center;
        gap: 10px;
    }

    .hero__title {
        font-size: 32px;
        text-align: center;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .custom-button.btn--hero {
        padding: 10px 40px;
        font-size: 20px;
    }

    .custom-button.btn--hero .btn-center {
        font-size: 17px;
        padding: 5px 10px 9px 10px;
    }

    .lexical-table-container {
        overflow-x: auto;
    }

    .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;
    }

    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 {
        font-size: 16px;
        line-height: 24px;
    }

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

    .footer {
        margin-top: 48px;
    }

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

    .footer__logo {
        margin-bottom: 24px;
    }

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

    .footer__nav {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 24px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer__link {
        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;
    }

    .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) {
    .hamburger {
        display: none;
    }

    .overlay {
        display: none;
    }

    .sidebar {
        display: none;
    }

    .header .container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        column-gap: 12px;
        padding-top: 4px;
        padding-bottom: 8px;
    }

    .header__logo {
        justify-self: start;
        display: flex;
        align-items: center;
    }

    .header__nav {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        justify-self: center;
        margin: 0;
        min-width: 0;
    }

    .header__link.active {
        filter: brightness(1.06);
    }

    .header__actions {
        display: flex;
        gap: 8px;
        justify-self: end;
    }

    .hero {
        min-height: 450px;
        display: flex;
        align-items: center;
    }

   
}
.footer__nav {
    gap: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
/* RTL-блоке */
[dir="rtl"] [style*="text-align: left"] {
    text-align: inherit !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;
  }
}
