@font-face {
    font-family: 'Albertus Nova';
    src: url('../font/AlbertusNova-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Albertus Nova';
    src: url('../font/AlbertusNovaLight.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

body {
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 300;
    background: linear-gradient(180deg, #130500e6 0.03%, #130500e6 47.15%), url(../img/body.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    font-size: 18px;
    position: relative;
}

a {
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 700;
    color: #F4DFBD;
    padding: 5px 0 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;
}

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: rgb(254 216 61);
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 700;
}
.content a:hover {
    color: rgb(254 216 61);
    text-decoration: underline;
}


.page-content {
    position: relative;
    box-sizing: border-box;
    margin: 16px 0;
    padding: 20px!important;
    border: 2px solid transparent;
    border-image-source: url('../img/ornament.png');
    /* 90×4 asset: тройное деление по ширине (30+30+30), по высоте остаётся средняя полоса 2px */
    border-image-slice: 1 30 1 30;
    border-image-width: 2px;
    border-image-outset: 0;
    border-image-repeat: round;
}

/* Углы: отдельные узлы — у каждого свой поворот на 45° «внутрь» (::before не умеет крутить слои по отдельности) */
.page-content__corner {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('../img/Frame.png') no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}

.page-content__corner--tl {
    top: 7px;
    left: 28px;
    transform-origin: top left;
    transform: rotate(135deg);
}

.page-content__corner--tr {
    top: 6px;
    right: 28px;
    transform-origin: top right;
    transform: rotate(-135deg);
}

.page-content__corner--bl {
    bottom: 6px;
    left: -14px;
    transform-origin: bottom left;
    transform: rotate(40deg);
}

.page-content__corner--br {
    bottom: 8px;
    right: -13px;
    transform-origin: bottom right;
    transform: rotate(316deg);
}

.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: url(../img/header.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 5px 5px;
}

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

.header__logo img {
   width: 145px;
   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: 40px;
    height: auto;
    margin-top: -6px;
}

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

.btn-left {
    flex-shrink: 0;
    width: 40px;
    background: url('../img/left.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-image: url('../img/center.png');
    background-repeat: repeat-x;
    background-position: center;
    /* integer tile size avoids subpixel seams with repeat-x (286×343 asset) */
    background-size: 38px 45px;
    margin: 0 -15px;
    padding: 0 12px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'Albertus Nova', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

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

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

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


.btn {
    padding: 14px 42px;
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.15s ease;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
}
.btn:hover {
    transform: scale(0.97);
}
.btn:active {
    transform: scale(0.94);
}

.btn--login {
    position: relative;
    padding: 12px 35px;
    color: #ffffff;
    background: rgb(34 47 185);
    background: #22b8f0;
    border: 2px solid #1f83dd;
}

.btn--login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--stb-button-bg);
    z-index: -1;
    transition: background-color 0.3s ease;
    border: 2px solid #1f83dd;
}

.header .btn--login:hover,
.btn--register::hover {
    background: #1f83dd;
}

.btn--register {
    position: relative;
    animation: pulse-btn 1.5s ease-in-out infinite;
    padding: 12px 35px;
    color: #ffffff;
    transition: all 0.5s ease;
    border: 2px solid #1f83dd;
}

.btn--register::before{
    content: '';
    position: absolute;
    inset: 0;
    background: #22b8f0;
    z-index: -1;
    transition: background-color 0.3s ease;
}

/* Hero: та же slice-вёрстка, другие картинки */
.custom-button.btn--hero {
    height: 80px;
}

.custom-button.btn--hero .btn-left {
    background-image: url('../img/left-w.png');
}

.custom-button.btn--hero .btn-center {
    background-image: url('../img/center-w.png');
    background-repeat: repeat-x;
    background-position: center;
    /* 155×56 asset at 64px height → integer tile width */
    background-size: 177px 64px;
    font-size: 22px;
    height: 64px;
    margin-bottom: 0;
    margin-left: -8px;
    margin-right: -8px;
    margin-top: 17px !important;
}

.custom-button.btn--hero .btn-right {
    background-image: url('../img/right-w.png');
}


.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;
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 300;
    font-style: italic;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #f4dfbd;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    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: 360px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(134, 60, 59, 0) 62.25%,
        rgba(90, 38, 31, 0.461538) 71.69%,
        #261104 100%
    );
    pointer-events: none;
    z-index: 1;
}

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

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 700;
}

.hero__subtitle {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #F3DAB5;    background: #381B06;
    padding: 8px 10px 5px 10px;
    border-radius: 15px;
}

.hero__text {
    max-width: 750px;
}

.hero__title {
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 700;
    color: #F3DAB5;
    font-size: 40px;
    line-height: 1.1;
    -webkit-text-stroke: 0.1px #000000;
    text-shadow: 0px 2px 0px #000000;
    text-align: center;
}

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

p {
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #f5c7a0;
    margin-bottom: 16px;
    font-weight: 300;
}

ul, ol {
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 16px;
    padding: 20px 35px;
    position: relative;
    background: #381b0673;
    border: 1px solid #703a11;
    border-radius: 7px;
}


ul li::marker , ol li::marker {
   color: rgb(254 216 61);
}

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

.lexical-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #703a11;
    white-space: nowrap;
}

.lexical-table tr {
    border-bottom: 1px solid #703a11;
}

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

.lexical-table tr:nth-child(even) {
    background: #50280a54;;
}

.lexical-table td {
    padding: 16px 20px;
    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: #fff;
    font-weight: 500;
    width: 50%;
}

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

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

.footer {
    background-image:linear-gradient(180deg, rgba(43, 9, 9, 0) 0.03%, #130500 47.15%),
        url('../img/footer.webp');
    background-position: center center, center center, center center;
    background-size: auto, auto, cover;
    background-repeat: no-repeat;
    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__nav {
    margin-bottom: 10px;
}
.footer__link {
    color: #f5c7a0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Albertus Nova', sans-serif;
    font-weight: 700;
    padding: 0 10px;
}

.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: #f5c7a0;
    margin-bottom: 0;
}

.footer__copyright p {
    font-size: 14px;
    line-height: 20px;
    color: #f5c7a0;
    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: linear-gradient(2.54444e-14deg, #381b06 0%, #261104 100%);
        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: #c31b1b;
        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: 13px;
        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: 190px;
        max-width: 100%;
        height: auto;
        margin-left: 50px;
        object-fit: contain;
    }

    .header__actions {
        position: absolute;
        flex-wrap: wrap;
        top: 60px;
        justify-content: center;
        left: 0;
        width: 100%;
        display: flex;
        gap: 10px;
        background: url(../img/header.webp);
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 100;
        padding: 10px;
    }
    .header__actions  .custom-button{
        height: 37px;
    }
    .header__actions .btn-right,
    .header__actions .btn-left {
        width: 26px;
    }
    .header__actions .btn-center {
        font-size: 12px;
        background-size: 31px 37px;
    }
    .btn {
        flex: 1;
        padding: 10px 20px;
        font-size: 16px;
        width: auto;
        height: auto;
        min-height: 40px;
    }

    .btn--login,
    .btn--register {
        padding: 8px 15px;
        background-size: 100% 100%;
        z-index: 2;
    }

    .hero {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        justify-content: flex-end;
        background-image: url('../img/hero-mob.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero__video {
        display: none;
    }

    .hero .container {
        z-index: 1;
        padding: 0;
        width: 100%;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(134, 60, 59, 0) 48.25%, rgba(90, 38, 31, 0.461538) 54.69%, #261104 100%);
        pointer-events: none;
        z-index: 1;
    }

    .hero__wrapper {
        display: flex;
        flex-direction: column;
        min-height: 250px;
    }

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

    .hero__text {
        flex: 1;
    }

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

    .hero__subtitle {
        font-size: 11px;
    }
    .lexical-table-container {
        overflow-x: auto;
    }
    .custom-button.btn--hero .btn-center {
        white-space: nowrap;
        background-image: url(../img/center-w.png);
        background-repeat: repeat-x;
        background-position: center;
        background-size: 147px 53px;
        font-size: 15px;
        height: 53px;
        margin-bottom: 0;
        margin-left: -8px;
        margin-right: -8px;
        margin-top: 13px !important;
    }
    .custom-button.btn--hero {
        height: 65px;
    }

    .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: 31px;
        line-height: 38px;
    }

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

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

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

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

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

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

    ul, ol {
        font-size: 17px;
        line-height: 23px;

    }

    .footer {
        margin-top: 48px;
    }

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

    .footer__logo {
        margin-bottom: 24px;
    }

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

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

    .footer__link {
        font-size: 14px;
        gap: 15px;
    }

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

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

    .header__logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

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

    .header__link {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color 0.3s ease;
        position: relative;
        font-family: 'Albertus Nova', sans-serif;
        font-weight: 700;

        -webkit-text-stroke: 0.2px #000000;
        text-shadow: 0px 1px 0px #000000;
        letter-spacing: 1px;
    }

    .header__link:hover {
        color: #FFCC56;
    }

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

    .btn {
        padding: 6px 25px;
    }

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

   
}

/* RTL-блоке */
[dir="rtl"] [style*="text-align: left"] {
    text-align: inherit !important;
}

[dir="rtl"] .hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width:767px) {
    [dir="rtl"] .hero .container {
        align-items: center;
    }
    [dir="rtl"] .hamburger {
        display: flex;
        order: 2;
    }
    .page-content__corner {
        display: none;
    }
    .page-content {
        border-image-source: none;
    }
}

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