@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Regular';
    src: url('../font/Inter_28pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Light';
    src: url('../font/Inter-Light-BETA.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@keyframes pulse-white {
    0% {
        box-shadow: 
            0 0 5px 0 rgba(255, 215, 0, 0.6),
            0 0 15px 0 rgba(255, 140, 0, 0.4),
            0 0 30px 0 rgba(255, 69, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 10px 5px rgba(255, 215, 0, 0.8),
            0 0 25px 10px rgba(255, 140, 0, 0.5),
            0 0 50px 15px rgba(255, 69, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 0 5px 0 rgba(255, 215, 0, 0.6),
            0 0 15px 0 rgba(255, 140, 0, 0.4),
            0 0 30px 0 rgba(255, 69, 0, 0.2);
    }
}

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

body {
    font-family: 'Inter Regular', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    background-image: url(../img/body.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    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 a{
    color: rgb(255 215 0);
}
.content strong {
    font-family: 'Poppins',sans-serif;
    color: rgb(255 215 0);
    font-weight: 700;
}
.content a:hover {
    color: rgb(255 215 0);
    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 {
    position: sticky;
    top: 0;
    background: rgb(6 13 45);
    z-index: 100;
    padding: 10px 0;
}

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

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

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

.hamburger img {
    width: 30px;
    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;
}

.btn {
    padding: 14px 42px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    border: 1.5px solid #101827;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.btn--login {
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    background:rgb(38 54 109);
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter Regular', sans-serif;
    text-align: center;
}

.btn--register {
    font-size: 11px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    background:rgb(255 191 0);
    border-radius: 8px;
    color: rgb(0 0 0);
    transition: all 0.3s ease;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter Regular', sans-serif;
    text-align: center;
}


.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    padding-block: 17px;
    padding-inline: 70px 60px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
    border-start-end-radius: 9px;
    border-end-end-radius: 9px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 191, 0, 0.25) 35%,
        rgb(255 191 0) 70%,
        rgb(255 191 0) 100%
    );
}

.hero-button::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background: url('/assets/img/favicon%20.ico') center / contain no-repeat;
    z-index: 1;
}

.hero-button::after {
    content: "›";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-55%);
    color: #fff;
    font-size: 54px;
    line-height: 1;
    font-weight: 500;
    z-index: 1;
}

.hero-button:hover {
    filter: brightness(1.06);
}

.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: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    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: 8px;
    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-left: 0;
    padding: 0;
}

.m-nav {
    display: none;
}

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

.hero {
    position: relative;
    overflow: hidden;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    background-image: url('../img/banner.webp');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero::before{
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #fff0, #26325c, #fff0);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .0588235294) ;
    border-bottom: 1px solid rgba(255, 255, 255, .0588235294);
    border-radius: 8px;
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 400px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__subtitle {
    font-family: 'Poppins', sans-serif;
    color: #0c1221;
    background: linear-gradient(90deg, #ffd214 0%, #fca814 100%);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 3px 10px;
    border-radius: 8px;
}

.hero__title {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

p {
    font-family: 'Inter Light', sans-serif;
    font-size: 17px;
    line-height: 28px;
    color: #dcd2ff;
    margin-bottom: 16px;
    font-weight: 300;
}

ul, ol {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 16px;
    font-weight: 300;
    padding: 20px 35px;
    border: 1px solid #ffffff33;
    border-radius: 12px;
    background: #ffffff0d;
    color: rgb(255 255 255);
}

ul li::marker , ol li::marker {
   color: rgb(255 191 0);
}

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: #00000052;
    border-radius: 2px;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.lexical-table tr:nth-child(even) {
    background: rgb(15 24 67);
}

.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: #6F758F;
    font-weight: 500;
    width: 50%;
}

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

.featured img {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px #9bbaf887;
}

.payments {
    background: linear-gradient(180deg, #CDDCFB 0%, #9BBAF8 100%);
    border: 1px solid #9BBAF8;
    padding: 40px 0;
    margin-top: 40px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

.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 {
    padding: 30px 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__nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer__link {  
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Inter Light', sans-serif;
}

.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) {
    body {
        padding-bottom: 94px;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .sidebar {
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #031D41;
        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 {
        margin-left: 0;
        padding: 0;
    }

    .container {
        padding: 20px;
    }

    .content {
        padding: 0!important;
    }
    
    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
        padding: 0 16px;
    }

    .header__logo {
        flex: 0 1 auto;
        display: flex;
        justify-content: flex-start;
    }

    .header__logo img {
        height: 44px;
        object-fit: contain;
    }

    .header__actions {
        position: static;
        width: auto;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        background: transparent;
    }
    .btn--login,
    .btn--register {
        font-size: 12px;
        padding: 10px 18px;
        width: auto;
    }

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

    .m-nav {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1002;
        background: #09153d;
        border-top: 1px solid rgba(114, 158, 255, 0.35);
        box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.45);
    }

    .m-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: center;
        min-height: 65px;
        background: #0f172f;
        border: none;
    }

    .m-nav ul li.menu {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .m-nav ul li.menu a {
        position: relative;
        margin-top: -8px;
        padding: 12px 34px 10px;
        min-width: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: #ffffff;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        line-height: 1;
    }

    .m-nav ul li.menu a span {
        position: relative;
        z-index: 6;
    }

    .m-nav__menu-icon svg {
        width: 25px;
        height: 24px;
        display: block;
    }

    .m-nav ul li.menu a > span:last-child {
        font-size: 10px;
        font-weight: 700;
        margin-top: 20px;
    }

    .m-nav ul li.menu a::before {
        background: url('/assets/img/favicon%20.ico') center / 100% 100% no-repeat !important;
        position: absolute;
        width: 27px;
        height: 27px;
        display: block;
        content: "";
        z-index: 7;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .m-nav ul li.menu a::after {
        background: url('../img/m-effect-C_3-3ZoB.gif');
        position: absolute;
        width: 85px;
        height: 85px;
        display: block;
        content: "";
        z-index: 5;
        background-size: 100% 100%;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    .hero {
        min-height: 335px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background-image: url('../img/mobile-banner.webp');
        background-position: center;
        margin-bottom: 0px;
    }
    .hero .container {
        z-index: 1;
        padding: 0 10px;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, #061034 0, #050e3300 200px, rgba(17, 24, 48, 0) 100%);
        z-index: 0;
        pointer-events: none;
    }


    .hero__content {
        position: static;
        text-align: center;
        align-items: center;
    }

    .hero__title {
        font-size: 35px;
        margin-bottom: 10px;
    }

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

    .hero-button {
        padding-block: 15px;
        padding-inline: 60px 45px;
        font-size: 20px;
        border-start-end-radius: 9px;
        border-end-end-radius: 9px;
    }

    .hero-button::before {
        left: 18px;
        width: 29px;
        height: 29px;
    }

    .hero-button::after {
        right: 20px;
        font-size: 30px;
    }

    .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: 32px;
        line-height: 34px;
    }

    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: 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: 160px;
    }

    .footer__nav {
        flex-direction: column;
        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;
    }

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

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

    .header__link {
        color: #6750A4;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color 0.3s ease;
        position: relative;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.4px;
    }

    .header__link:hover {
        color: #4a29a3;
    }

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

    .btn {
        padding: 10px 35px;
    }

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

}

[dir="rtl"] .hero .container {
    display: flex;
    justify-content: flex-end;
}

[dir="rtl"] .hero__content {
    text-align: center;
}

[dir="rtl"] .hero-button {
    background: linear-gradient(
        to left,
        transparent 0%,
        rgba(255, 191, 0, 0.25) 35%,
        rgb(255 191 0) 70%,
        rgb(255 191 0) 100%
    );
}

[dir="rtl"] .hero-button::before {
    left: auto;
    right: 24px;
}

[dir="rtl"] .hero-button::after {
    right: auto;
    left: 28px;
}


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