/* Vavada Casino Styles - Modern Design Update */

/* Universal Font Family */
* {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Предотвращение горизонтальной прокрутки */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Убеждаемся, что все элементы не выходят за границы */
* {
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --danger-color: #ef4444;
    
    /* Background Colors */
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: #1e293b;
    --bg-glass: rgba(30, 41, 59, 0.8);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-accent: #fbbf24;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

        /* Beautiful Language Switcher */
        .ps-lang-switcher {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 25px;
            padding: 0.5rem 1rem;
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all var(--transition-normal);
        }

        .ps-lang-switcher:hover {
            border-color: rgba(99, 102, 241, 0.5);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
            transform: translateY(-1px);
        }

        .ps-lang-switcher a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.375rem 0.75rem;
            border-radius: 20px;
            transition: all var(--transition-normal);
            position: relative;
            font-weight: 500;
            white-space: nowrap;
        }

        .ps-lang-switcher a:hover {
            color: var(--text-primary);
            background: rgba(99, 102, 241, 0.1);
            transform: scale(1.05);
        }

        .ps-lang-switcher a[aria-current="true"] {
            color: #ffffff;
            background: var(--gradient-primary);
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
        }

        .ps-lang-switcher a[aria-current="true"]:hover {
            background: var(--gradient-primary);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        }

        .ps-lang-switcher .ps-sep {
            color: rgba(99, 102, 241, 0.6);
            font-weight: 600;
            font-size: 1rem;
            margin: 0 0.25rem;
        }

        /* Mobile Language Switcher */
        @media (max-width: 768px) {
            .ps-lang-switcher {
                padding: 0.375rem 0.75rem;
                font-size: 0.8rem;
                gap: 0.125rem;
            }

            .ps-lang-switcher a {
                padding: 0.25rem 0.5rem;
                font-size: 0.8rem;
            }

            .ps-lang-switcher .sep {
                font-size: 0.9rem;
                margin: 0 0.125rem;
            }
        }

        @media (max-width: 480px) {
            .ps-lang-switcher {
                padding: 0.25rem 0.5rem;
                font-size: 0.75rem;
            }

            .ps-lang-switcher a {
                padding: 0.2rem 0.4rem;
                font-size: 0.75rem;
            }
        }

        .ps-faq-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .ps-faq-section h2 {
            text-align: center;
            margin-bottom: 30px;
        }

        .ps-faq-item {
            margin-bottom: 25px;
        }

        .ps-faq-item h3 {
            font-size: 1.2em;
            color: #333;
            margin-bottom: 10px;
        }

        .ps-faq-item p {
            font-size: 1em;
            color: #555;
            line-height: 1.5;
        }

        .ps-box_checkbox input + label:before,
        .ps-box_checkbox_extralarge input + label:before,
        .ps-box_checkbox_large input + label:before,
        .ps-box_checkbox_small input + label:before,
        .ps-box_radio input + label:before,
        .ps-box_radio_extralarge input + label:before,
        .ps-box_radio_large input + label:before,
        .ps-box_radio_small input + label:before {
            display: inline-block;
            background-color: #191929;
            box-shadow: 0 1px 0 0.2px rgba(128, 128, 128, 0.4);
            margin-right: 10px;
        }

        .ps-box_checkbox [disabled] + label:focus:before,
        .ps-box_checkbox [disabled] + label:hover:before,
        .ps-box_checkbox input + label:before,
        .ps-box_checkbox_extralarge [disabled] + label:focus:before,
        .ps-box_checkbox_extralarge [disabled] + label:hover:before,
        .ps-box_checkbox_extralarge input + label:before,
        .ps-box_checkbox_large [disabled] + label:focus:before,
        .ps-box_checkbox_large [disabled] + label:hover:before,
        .ps-box_checkbox_large input + label:before,
        .ps-box_checkbox_small [disabled] + label:focus:before,
        .ps-box_checkbox_small [disabled] + label:hover:before,
        .ps-box_checkbox_small input + label:before,
        .ps-box_radio [disabled] + label:focus:before,
        .ps-box_radio [disabled] + label:hover:before,
        .ps-box_radio input + label:before,
        .ps-box_radio_extralarge [disabled] + label:focus:before,
        .ps-box_radio_extralarge [disabled] + label:hover:before,
        .ps-box_radio_extralarge input + label:before,
        .ps-box_radio_large [disabled] + label:focus:before,
        .ps-box_radio_large [disabled] + label:hover:before,
        .ps-box_radio_large input + label:before,
        .ps-box_radio_small [disabled] + label:focus:before,
        .ps-box_radio_small [disabled] + label:hover:before,
        .ps-box_radio_small input + label:before {
            box-shadow: 0 1px 0 0.2px rgba(128, 128, 128, 0.4);
        }

        .ps-box_checkbox input:checked + label:after,
        .ps-select:before {
            background-size: contain;
            background-repeat: no-repeat;
        }

        .ps-choices__list,
        menu,
        ol,
        ul {
            list-style: none;
        }

        .ps-glass,
        header {
            position: fixed;
        }

        .ps-mobile_menu .ps-profile_menu_list a,
        h1,
        h2,
        h3 {
            text-transform: none;
        }

        a,
        abbr,
        acronym,
        address,
        applet,
        article,
        aside,
        audio,
        b,
        big,
        blockquote,
        body,
        canvas,
        caption,
        center,
        cite,
        code,
        dd,
        del,
        details,
        dfn,
        div,
        dl,
        dt,
        em,
        embed,
        fieldset,
        figcaption,
        figure,
        footer,
        form,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        header,
        hgroup,
        html,
        i,
        iframe,
        img,
        ins,
        kbd,
        label,
        legend,
        li,
        main,
        mark,
        menu,
        nav,
        object,
        ol,
        output,
        p,
        pre,
        q,
        ruby,
        s,
        samp,
        section,
        small,
        span,
        strike,
        strong,
        sub,
        summary,
        sup,
        table,
        tbody,
        td,
        tfoot,
        th,
        thead,
        time,
        tr,
        tt,
        u,
        ul,
        var,
        video {
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: initial;
        }

        .ps-beam-categories .ps-nav-categories_list > :nth-child(odd):after,
        .ps-gamecard_favorite .ps-icon_heart_empty,
        .ps-payment_method a,
        .ps-ps-article,
        .ps-ps-aside,
        .ps-ps-details,
        .ps-figcaption,
        figure,
        footer,
        header,
        hgroup,
        main,
        menu,
        nav,
        section {
            display: block;
        }

        [hidden] {
            display: none;
        }

        body {
            line-height: 1;
        }

        blockquote,
        q {
            quotes: none;
        }

        blockquote:after,
        blockquote:before,
        q:after,
        q:before {
            content: "";
            content: none;
        }

        table {
            border-collapse: collapse;
            border-spacing: 0;
        }

        a,
        body,
        button,
        caption,
        div,
        footer,
        form,
        h1,
        h2,
        h3,
        header,
        html,
        img,
        input,
        label,
        li,
        menu,
        nav,
        ol,
        p,
        select,
        span,
        table,
        tbody,
        td,
        textarea,
        tfoot,
        th,
        thead,
        tr,
        ul {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        button,
        input,
        select,
        textarea {
            margin: 0;
            border: 0;
            border-radius: 0;
            padding: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: initial;
        }

        .ps-content p,
        h1,
        h2,
        h3 {
            margin-bottom: 30px;
            text-align: left;
        }

        .ps-content .ps-img_box .ps-img_signature,
        .ps-legally_safe_profit .ps-card p,
        .ps-nav-categories_link,
        body {
            font-family: Muller, sans-serif;
        }

        footer h3,
        h2 {
            line-height: 30px;
        }

        .ps-choices.is-focused,
        .ps-choices.is-open,
        .ps-choices:focus,
        .ps-choices:hover,
        .ps-gamecard_favorite input:focus,
        .ps-gamecard_favorite input:hover,
        button:focus,
        input:focus,
        select:focus,
        textarea:focus {
            outline: 0;
        }

        body {
            background: var(--bg-primary);
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
            background-attachment: fixed;
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-weight: 400;
            font-size: 16px;
            color: var(--text-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
        }

       
        .ps-main {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding-top: 100px;
        }

        .ps-main.x_radiance {
            overflow: hidden;
            position: relative;
        }

        .ps-main.x_radiance > * {
            position: relative;
            z-index: 5;
        }

        .ps-main.x_radiance .ps-decor-radiance {
            position: absolute;
            top: -50px;
            left: 0;
            z-index: 0;
            height: 1062px;
            width: 100%;
        }

        .ps-decor-mosaic,
        .ps-decor-radiance {
            background-size: cover;
            background-position: 50%;
        }

        .ps-decor-mosaic {
            background-repeat: repeat-y;
        }

        .ps-decor-radiance {
            pointer-events: none;
            -webkit-filter: drop-shadow(30px 10px 4px #3227c4);
            filter: drop-shadow(30px 10px 4px #3227c4);
        }

        .ps-glass {
            width: 100%;
            z-index: 89;
            top: 0;
            left: 0;
        }

        .ps-layer_content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-bottom: 50px;
        }

        .ps-beam .ps-beam_block,
        .ps-block {
            display: flex;
            justify-content: space-between;
            box-sizing: border-box;
            max-width: 1200px;
            width: 100%;
            padding: 0 15px;
        }

        .ps-beam {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .ps-box_btn,
        .ps-content .ps-img_box {
            flex-direction: column;
            display: flex;
        }

        h1,
        h2,
        h3 {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-weight: 800;
            color: var(--text-primary);
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h2 {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            line-height: 1.3;
            margin-bottom: 1.25rem;
            font-weight: 800;
        }

        h3 {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            line-height: 1.4;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .ps-content p,
        h3 {
            line-height: 23px;
        }

        .ps-content p {
            font-weight: 300;
        }

        .ps-content .ps-p_main {
            margin-bottom: 50px;
            font-size: 22px;
            line-height: 26px;
        }

        .ps-content ol,
        .ps-content ul {
            margin-bottom: 45px;
            font-weight: 300;
            font-size: 16px;
            line-height: 23px;
            text-align: left;
            color: #fff;
        }

        .ps-content ol {
            list-style: decimal inside;
        }

        .ps-content ol > li {
            list-style-type: inherit;
            list-style-position: inherit;
        }

        .ps-content ul > li {
            text-indent: 5px;
        }

        .ps-content ul > li:before {
            content: "- ";
        }

        .ps-content table {
            margin-bottom: 20px;
            border-radius: 5px;
            background-color: #161626;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
            font-size: 16px;
            color: #fff;
        }

        .ps-box_slider output,
        textarea {
            background: linear-gradient(#191929, #191929) padding-box, linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(128, 128, 128, 0.4)) border-box;
            box-sizing: border-box;
        }

        .ps-content table thead {
            border-bottom: 1px solid #8b8b94;
        }

        .ps-content table thead th {
            text-transform: uppercase;
            font-weight: 700;
        }

        .ps-content table tbody td {
            border-bottom: 1px solid #252536;
            font-weight: 300;
        }

        .ps-content table td,
        .ps-content table th {
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 10px 20px;
            text-align: center;
        }

        .ps-content a {
            color: #46afff;
            transition: transform 0.25s;
        }

        .ps-content a:visited {
            text-decoration: none;
            color: #d63e8b;
        }

        .ps-content a:hover {
            color: #fe284a;
        }

        .ps-content a:active {
            display: inline-block;
            transform: scale(0.95);
        }

        .ps-content .ps-img_box {
            align-items: flex-start;
            margin-bottom: 70px;
            max-width: 100%;
        }

        .ps-content .ps-img_box img {
            margin-bottom: 10px;
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 2px 5px 0 #000;
        }

        .ps-content .ps-img_box .ps-img_signature {
            font-weight: 500;
            font-size: 14px;
            line-height: 17px;
            color: #646a87;
        }

        .ps-description {
            color: #646a87;
        }

        .ps-box_btn {
            width: 100%;
            align-items: flex-start;
        }

        .ps-alert li:last-child,
        .ps-box_btn > *,
        .ps-box_dropdown .ps-dropdown_list li:last-child,
        .ps-header-login .ps-box_form_input > :last-child,
        .ps-header-login .ps-login > .ps-box_btn,
        .ps-header-login .ps-login > :last-child,
        .ps-header-login_form .ps-box_form_input:last-child,
        .ps-header-login_form > :last-child,
        .ps-mobile_menu .ps-mobile_menu_box > :last-child,
        .ps-profile_menu .ps-profile_menu_list li:last-child,
        .ps-header .ps-button_add a,
        .ps-header .ps-button_register {
            margin-bottom: 0;
        }

        .ps-nav-categories_item.x_slots,
        .ps-text_slots {
            color: #17eada;
        }

        .ps-text_live {
            color: #de593e;
        }

        .ps-text_casino {
            color: #6ef770;
        }

        .ps-box_radio input:checked + label,
        .ps-box_radio_extralarge input:checked + label,
        .ps-box_radio_large input:checked + label,
        .ps-box_radio_small input:checked + label,
        textarea {
            color: #fff;
        }

        .ps-button-clipboard {
            width: 100px;
            margin: 0 10px 0 0;
            background-size: 34px;
            background-repeat: no-repeat;
            background-position: 50%;
        }

        .ps-button-clipboard:active {
            box-shadow: 0 0 0 2px #ffde26;
        }

        .ps-box_checkbox,
        .ps-box_checkbox_extralarge,
        .ps-box_checkbox_large,
        .ps-box_checkbox_small,
        .ps-box_radio,
        .ps-box_radio_extralarge,
        .ps-box_radio_large,
        .ps-box_radio_small {
            position: relative;
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
        }

        .ps-box_checkbox input,
        .ps-box_checkbox_extralarge input,
        .ps-box_checkbox_large input,
        .ps-box_checkbox_small input,
        .ps-box_radio input,
        .ps-box_radio_extralarge input,
        .ps-box_radio_large input,
        .ps-box_radio_small input {
            position: absolute;
            top: 50%;
            left: 12px;
            z-index: -1;
            opacity: 0.001;
            width: 1px;
            height: 1px;
        }

        .ps-box_checkbox input + label,
        .ps-box_radio input + label {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            color: #646a87;
            cursor: pointer;
            font-size: 16px;
        }

        .ps-box_checkbox input + label:before {
            content: "";
            border-radius: 5px;
            transition: box-shadow 0.25s;
            height: 24px;
            width: 24px;
            min-height: 24px;
            min-width: 24px;
        }

        .ps-box_checkbox input + label:focus:before,
        .ps-box_checkbox input + label:hover:before,
        .ps-box_checkbox_extralarge input + label:focus:before,
        .ps-box_checkbox_extralarge input + label:hover:before,
        .ps-box_checkbox_large input + label:focus:before,
        .ps-box_checkbox_large input + label:hover:before,
        .ps-box_checkbox_small input + label:focus:before,
        .ps-box_checkbox_small input + label:hover:before,
        .ps-box_radio input + label:focus:before,
        .ps-box_radio input + label:hover:before,
        .ps-box_radio_extralarge input + label:focus:before,
        .ps-box_radio_extralarge input + label:hover:before,
        .ps-box_radio_large input + label:focus:before,
        .ps-box_radio_large input + label:hover:before,
        .ps-box_radio_small input + label:focus:before,
        .ps-box_radio_small input + label:hover:before {
            outline: 0;
            box-shadow: 0 0 0 1px #ffde26;
        }

        .ps-box_checkbox input + label:after {
            content: "";
            position: absolute;
            left: 4px;
            top: calc(50% - 8.5px);
            height: 17px;
            width: 17px;
        }

        .ps-box_checkbox [disabled] + label,
        .ps-box_checkbox_extralarge [disabled] + label,
        .ps-box_checkbox_large [disabled] + label,
        .ps-box_checkbox_small [disabled] + label,
        .ps-box_radio [disabled] + label,
        .ps-box_radio_extralarge [disabled] + label,
        .ps-box_radio_large [disabled] + label,
        .ps-box_radio_small [disabled] + label {
            cursor: default;
        }

        .ps-box_checkbox [disabled] + label:before,
        .ps-box_checkbox_extralarge [disabled] + label:before,
        .ps-box_checkbox_large [disabled] + label:before,
        .ps-box_checkbox_small [disabled] + label:before,
        .ps-box_radio [disabled] + label:before,
        .ps-box_radio_extralarge [disabled] + label:before,
        .ps-box_radio_large [disabled] + label:before,
        .ps-box_radio_small [disabled] + label:before {
            background-color: #313856;
        }

        .ps-box_checkbox [disabled] + label:after,
        .ps-box_checkbox_extralarge [disabled] + label:after,
        .ps-box_checkbox_large [disabled] + label:after,
        .ps-box_checkbox_small [disabled] + label:after,
        .ps-box_radio [disabled] + label:after,
        .ps-box_radio_extralarge [disabled] + label:after,
        .ps-box_radio_large [disabled] + label:after,
        .ps-box_radio_small [disabled] + label:after {
            -webkit-filter: hue-rotate(180deg) grayscale(70%);
            filter: hue-rotate(180deg) grayscale(70%);
        }

        .ps-box_checkbox_small input + label,
        .ps-box_radio_small input + label {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            color: #646a87;
            cursor: pointer;
            font-size: 12px;
        }

        .ps-box_checkbox_small input + label:before {
            content: "";
            border-radius: 5px;
            transition: box-shadow 0.25s;
            height: 20px;
            width: 20px;
            min-height: 20px;
            min-width: 20px;
        }

        .ps-box_checkbox_small input + label:after {
            content: "";
            position: absolute;
            left: 4px;
            top: calc(50% - 6.5px);
            height: 13px;
            width: 13px;
        }

        .ps-box_checkbox_large input + label,
        .ps-box_radio_large input + label {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            color: #646a87;
            cursor: pointer;
            font-size: 18px;
        }

        .ps-box_checkbox_large input + label:before {
            content: "";
            border-radius: 5px;
            transition: box-shadow 0.25s;
            height: 28px;
            width: 28px;
            min-height: 28px;
            min-width: 28px;
        }

        .ps-box_checkbox_large input + label:after {
            content: "";
            position: absolute;
            left: 4px;
            top: calc(50% - 10.5px);
            height: 21px;
            width: 21px;
        }

        .ps-box_checkbox_extralarge input + label,
        .ps-box_radio_extralarge input + label {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            color: #646a87;
            cursor: pointer;
            font-size: 21px;
        }

        .ps-box_checkbox_extralarge input + label:before {
            content: "";
            border-radius: 5px;
            transition: box-shadow 0.25s;
            height: 32px;
            width: 32px;
            min-height: 32px;
            min-width: 32px;
        }

        .ps-box_checkbox_extralarge input + label:after {
            content: "";
            position: absolute;
            left: 4px;
            top: calc(50% - 12.5px);
            height: 25px;
            width: 25px;
        }

        .ps-box_radio input + label:before {
            content: "";
            border-radius: 50%;
            transition: box-shadow 0.25s;
            height: 24px;
            width: 24px;
            min-height: 24px;
            min-width: 24px;
        }

        .ps-box_radio input + label:after {
            content: "";
            position: absolute;
            top: 6px;
            left: 6px;
            height: 12px;
            width: 12px;
        }

        .ps-box_radio input:checked + label:after,
        .ps-box_radio_extralarge input:checked + label:after,
        .ps-box_radio_large input:checked + label:after,
        .ps-box_radio_small input:checked + label:after {
            border-radius: 50%;
            background-color: #ffde26;
        }

        .ps-box_radio_small input + label:before {
            content: "";
            border-radius: 50%;
            transition: box-shadow 0.25s;
            height: 20px;
            width: 20px;
            min-height: 20px;
            min-width: 20px;
        }

        .ps-box_radio_small input + label:after {
            content: "";
            position: absolute;
            top: 5px;
            left: 5px;
            height: 10px;
            width: 10px;
        }

        .ps-box_radio_large input + label:before {
            content: "";
            border-radius: 50%;
            transition: box-shadow 0.25s;
            height: 28px;
            width: 28px;
            min-height: 28px;
            min-width: 28px;
        }

        .ps-box_radio_large input + label:after {
            content: "";
            position: absolute;
            top: 7px;
            left: 7px;
            height: 14px;
            width: 14px;
        }

        .ps-box_radio_extralarge input + label:before {
            content: "";
            border-radius: 50%;
            transition: box-shadow 0.25s;
            height: 32px;
            width: 32px;
            min-height: 32px;
            min-width: 32px;
        }

        .ps-box_radio_extralarge input + label:after {
            content: "";
            position: absolute;
            top: 8px;
            left: 8px;
            height: 16px;
            width: 16px;
        }

        .ps-box_slider {
            margin-bottom: 20px;
            max-width: 100%;
            font-weight: 300;
            font-size: 16px;
            color: #fff;
        }

        .ps-box_slider,
        .ps-box_slider .ps-box_slider_body,
        .ps-box_slider .ps-box_slider_output,
        .ps-gamecard_favorite,
        .ps-navigation_social {
            display: flex;
            align-items: center;
        }

        .ps-box_slider .ps-box_slider_head,
        .ps-box_slider input,
        .ps-box_slider output,
        .ps-gamecard_flags li,
        .ps-navigation_social li,
        .ps-profile_menu_button .ps-user_name {
            margin-right: 10px;
        }

        .ps-box_slider output {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 34px;
            min-width: 95px;
            border: 1px solid transparent;
            border-radius: 5px;
            padding: 10px 20px;
            font-weight: 500;
            font-size: 16px;
        }

        .ps-box_slider.vertical {
            flex-direction: column;
            align-items: flex-start;
        }

        .ps-box_slider.vertical .ps-box_slider_head,
        .ps-box_slider.vertical .ps-box_slider_output {
            margin: 0 0 20px;
        }

        .ps-box_slider.vertical .ps-box_slider_body {
            flex-direction: column-reverse;
            align-items: flex-start;
        }

        .ps-box_slider.vertical output {
            justify-content: flex-end;
            min-width: 140px;
        }

        textarea {
            resize: vertical;
            min-height: 200px;
            width: 100%;
            border: 1px solid transparent;
            border-radius: 5px;
            padding: 10px;
            font-weight: 500;
            transition: box-shadow 0.25s;
        }

        textarea::-webkit-scrollbar-track {
            background-color: rgba(77, 90, 133, 0.3);
        }

        textarea::-webkit-scrollbar {
            height: 8px;
            width: 8px;
            border-radius: 10px;
            background-color: initial;
        }

        textarea::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background-color: #4d5a85;
        }

        .ps-box_dropdown .ps-dropdown_btn:focus,
        .ps-box_dropdown .ps-dropdown_btn:hover,
        .ps-choices.is-focused .ps-choices__inner,
        .ps-choices.is-open .ps-choices__inner,
        .ps-choices:focus .ps-choices__inner,
        .ps-choices:hover .ps-choices__inner,
        textarea:focus,
        textarea:hover {
            outline: 0;
            box-shadow: 0 0 0 2px #ffde26;
        }

        textarea::-webkit-input-placeholder {
            font-style: italic;
            font-weight: 500;
            color: #646a87;
        }

        textarea::-moz-placeholder {
            font-style: italic;
            font-weight: 500;
            color: #646a87;
        }

        textarea::-ms-input-placeholder {
            font-style: italic;
            font-weight: 500;
            color: #646a87;
        }

        textarea::placeholder {
            font-style: italic;
            font-weight: 500;
            color: #646a87;
        }

        .ps-select {
            position: relative;
        }

        .ps-select:before {
            content: "";
            position: absolute;
            top: 13px;
            right: 7px;
            z-index: 1;
            height: 15px;
            width: 15px;
            pointer-events: none;
        }

        .ps-choices__inner,
        .ps-select select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            overflow: hidden;
            text-overflow: ellipsis;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            height: 35px;
            width: 100%;
            border: 1px solid transparent;
            border-radius: 5px;
            padding: 10px 25px 7px 10px;
            background: linear-gradient(#191929, #191929) padding-box, linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(128, 128, 128, 0.4)) border-box;
            white-space: nowrap;
            font-weight: 500;
            font-size: 16px;
            color: #fff;
            transition: box-shadow 0.25s;
            cursor: pointer;
        }

        .ps-select .ps-choices__list--single:after {
            content: ".";
            visibility: hidden;
            font-size: 1px;
        }

        .ps-choices__inner .ps-choices__item,
        .ps-select select .ps-choices__item {
            display: inline;
            padding: 0;
        }

        .ps-alert,
        .ps-beam-categories_canvas,
        .ps-choices__item--disabled.x_empty,
        .ps-gamecard .game_flag_favorite,
        .ps-gamecard.favorite .gamecard_favorite,
        .ps-gamecard_favorite.added,
        .ps-profile_menu .profile_menu_list li:last-child:before {
            display: none;
        }

        .ps-choices {
            position: relative;
            width: 100%;
            font-size: 16px;
            color: #646a87;
        }

        .ps-alert ul,
        .ps-box_dropdown .ps-dropdown_btn,
        .ps-box_dropdown .ps-dropdown_list,
        .ps-choices__list--dropdown {
            color: #fff;
            box-sizing: border-box;
        }

        .ps-choices.is-disabled .ps-choices__inner,
        .ps-choices.is-disabled .ps-choices__input {
            background-color: #313856;
            cursor: default;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .ps-choices.is-disabled .ps-choices__item {
            cursor: not-allowed;
        }

        .ps-box_dropdown .ps-dropdown_btn,
        .ps-choices[data-type*="select-one"],
        .ps-choose_lang .ps-choose_lang_button,
        .ps-profile_menu_button {
            cursor: pointer;
        }

        .ps-choices[data-type*="select-one"] .ps-choices__input.is-hidden {
            position: absolute;
            display: inline;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.001;
            height: 100%;
            width: 100%;
            padding: 0;
            border: 0;
            pointer-events: none;
        }

        .ps-choices__list {
            margin: 0;
        }

        .ps-alert li,
        .ps-gamecard_demo,
        .ps-gamecard_play,
        .ps-header-login .ps-box_form_input > *,
        .ps-mobile_menu .ps-mobile_menu_box > *,
        form .ps-box_form_input,
        form .ps-box_form_input textarea {
            margin-bottom: 10px;
        }

        .ps-choices__list--single {
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .choices__list--dropdown {
            opacity: 0;
            visibility: hidden;
            position: absolute;
            z-index: 2;
            width: 100%;
            top: 100%;
            margin-top: 5px;
            border-radius: 5px;
            padding: 6px 4px;
            background-color: #4a5372;
            word-break: break-all;
            transition: visibility 0.5s, opacity 0.25s;
            pointer-events: none;
        }

        .ps-choices__list--dropdown.is-active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .ps-choices__list--dropdown .ps-choices__list {
            position: relative;
            max-height: 300px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            will-change: scroll-position;
        }

        .ps-alert li,
        .ps-box_dropdown .ps-dropdown_btn,
        .ps-choices__item,
        .ps-select option {
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ps-choices__list--dropdown .ps-choices__list::-webkit-scrollbar-track {
            background-color: rgba(49, 48, 71, 0.3);
        }

        .ps-choices__list--dropdown .ps-choices__list::-webkit-scrollbar {
            height: 8px;
            width: 8px;
            border-radius: 10px;
            background-color: initial;
        }

        .ps-choices__list--dropdown .ps-choices__list::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background-color: #313047;
        }

        .ps-choices__list--dropdown .ps-choices__item {
            border: 1px solid transparent;
            border-radius: 3px;
            background: inherit;
        }

        .ps-box_dropdown .ps-dropdown_list li:focus,
        .ps-box_dropdown .ps-dropdown_list li:hover,
        .ps-choices__list--dropdown .ps-choices__item.is-highlighted,
        .ps-choices__list--dropdown .ps-choices__item:focus,
        .ps-choices__list--dropdown .ps-choices__item:hover,
        .ps-choices__list--dropdown .ps-choices__item[aria-selected="true"] {
            background: linear-gradient(#2d3047, #2d3047) padding-box, linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(128, 128, 128, 0.4)) border-box;
        }

        .ps-choices__list--dropdown .ps-choices__item.choices__item--disabled,
        .ps-choices__list--dropdown .ps-choices__item.choices__item--disabled.is-highlighted,
        .ps-choices__list--dropdown .ps-choices__item.choices__item--disabled:focus,
        .ps-choices__list--dropdown .ps-choices__item.choices__item--disabled:hover,
        .ps-choices__list--dropdown .ps-choices__item.choices__item--disabled[aria-selected="true"] {
            background: #313856;
        }

        .ps-choices__item,
        .ps-select option {
            position: relative;
            box-sizing: border-box;
            height: 35px;
            width: 100%;
            padding: 10px 25px 7px 10px;
            white-space: nowrap;
            cursor: pointer;
        }

        .ps-select option {
            background-color: #2d3047;
        }

        .ps-choices__item--disabled {
            cursor: default;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-color: #313856;
        }

        form {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

        form .ps-box_form_input {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            width: 100%;
        }

        form .ps-box_form_input.box_select {
            align-items: baseline;
        }

        form .ps-box_form_input.box_select .ps-dropdown_btn:before {
            content: ".";
            opacity: 0;
        }

        form .ps-box_form_input > label,
        form .ps-box_form_input > span {
            overflow: hidden;
            text-overflow: ellipsis;
            word-break: break-all;
            box-sizing: border-box;
            max-width: 30%;
            font-size: 16px;
            cursor: pointer;
        }

        form .ps-box_form_input .ps-box_form_choose,
        form .ps-box_form_input .ps-box_input_file,
        form .ps-box_form_input .ps-box_input_text,
        form .ps-box_form_input .ps-box_input_text_extralarge,
        form .ps-box_form_input .ps-box_input_text_large,
        form .ps-box_form_input .ps-box_input_text_small,
        form .ps-box_form_input .ps-box_textarea {
            width: 70%;
        }

        form .ps-box_btn {
            padding: 20px 0;
        }

        .ps-alert {
            position: relative;
            margin: 10px 0;
            width: 100%;
        }

        .ps-alert,
        .ps-alert ul {
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .ps-alert ul {
            display: flex;
            min-width: 75%;
            border-radius: 5px;
            padding: 10px 20px;
            font-weight: 500;
            font-size: 14px;
        }

        .ps-alert li {
            max-width: 100%;
        }

        .ps-alert.alert_error,
        .ps-alert.alert_hint,
        .ps-gamecard,
        .ps-gamecard a,
        .ps-gamecard.favorite .ps-game_flag_favorite,
        .ps-gamecard.favorite .ps-gamecard_favorite.added,
        .ps-gamecard_flags,
        .ps-main_logo,
        header .ps-link_enter.oauth2,
        header .ps-link_enter.x_login-btn {
            display: flex;
        }

        .ps-alert.alert_error ul {
            background-color: #ab2020;
        }

        .ps-alert.alert_hint ul {
            background-color: #35ab20;
        }

        .ps-box_checkbox .ps-alert,
        .ps-box_form_input .ps-alert,
        .ps-box_radio .ps-alert,
        .ps-box_slider .ps-alert {
            margin-top: 20px;
        }

        .ps-box_checkbox .ps-alert ul:before,
        .ps-box_form_input .ps-alert ul:before,
        .ps-box_radio .ps-alert ul:before,
        .ps-box_slider .ps-alert ul:before {
            content: "";
            position: absolute;
            top: -25px;
            left: calc(50% - 10px);
            height: 0;
            width: 0;
            border: 10px solid transparent;
        }

        .ps-box_checkbox .ps-alert_error ul:before,
        .ps-box_form_input .ps-alert_error ul:before,
        .ps-ps-box_radio .ps-alert_error ul:before,
        .box_slider .ps-alert_error ul:before {
            border-bottom: 15px solid #ab2020;
        }

        .ps-box_checkbox .ps-alert_hint ul:before,
        .ps-box_form_input .ps-alert_hint ul:before,
        .ps-box_radio .ps-alert_hint ul:before,
        .ps-box_slider .ps-alert_hint ul:before {
            border-bottom: 15px solid #35ab20;
        }

        .ps-box_dropdown .ps-dropdown_btn + .ps-dropdown_list,
        .ps-choose_lang .ps-choose_lang_button + .ps-dropdown_list,
        .ps-profile_menu_button + .ps-dropdown_list {
            opacity: 0;
            visibility: hidden;
            transition: visibility 0.5s, opacity 0.25s;
        }

        .ps-box_dropdown .ps-dropdown_btn:focus,
        .ps-choose_lang .ps-choose_lang_button:focus,
        .ps-profile_menu_button:focus {
            outline: 0;
            pointer-events: none;
        }

        .ps-box_dropdown .ps-dropdown_btn:focus + .ps-dropdown_list,
        .ps-choose_lang .ps-choose_lang_button:focus + .ps-dropdown_list,
        .ps-profile_menu_button:focus + .ps-dropdown_list {
            visibility: visible;
            pointer-events: auto;
            opacity: 1;
            height: auto;
        }

        .ps-box_dropdown {
            position: relative;
            height: 35px;
        }

        .ps-box_dropdown .ps-dropdown_btn {
            display: flex;
            align-items: center;
            width: 100%;
            border: 1px solid transparent;
            border-radius: 5px;
            background: linear-gradient(#191929, #191929) padding-box, linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(128, 128, 128, 0.4)) border-box;
            white-space: nowrap;
            font-weight: 500;
            transition: box-shadow 0.25s;
        }

        .ps-box_dropdown .ps-dropdown_list {
            position: absolute;
            z-index: 90;
            overflow-y: auto;
            max-height: 300px;
            width: 100%;
            border-radius: 5px;
            padding: 6px 4px;
            background-color: #4a5372;
            top: 40px;
            font-size: 16px;
        }

        .ps-beam-categories .ps-nav-categories_text,
        .ps-mobile_menu .ps-user_name,
        .ps-mobile_menu .ps-user_name .ps-user_name_view,
        .ps-nav-categories_text {
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ps-carousel_list a,
        .ps-gamecard a {
            color: inherit;
        }

        .ps-box_dropdown .ps-dropdown_list li {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            box-sizing: border-box;
            width: 100%;
            border: 1px solid transparent;
            border-radius: 3px;
            background: inherit;
        }

        .ps-box_dropdown .ps-dropdown_list::-webkit-scrollbar-track {
            background-color: rgba(49, 48, 71, 0.3);
        }

        .ps-box_dropdown .ps-dropdown_list::-webkit-scrollbar {
            height: 8px;
            width: 8px;
            border-radius: 10px;
            background-color: initial;
        }

        .ps-box_dropdown .ps-dropdown_list::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background-color: #313047;
        }

        .ps-box_dropdown .ps-dropdown_btn {
            height: 34px;
            padding-left: 18px;
            padding-right: 35px;
            font-size: 16px;
        }

        .ps-box_dropdown li {
            height: 35px;
            padding-left: 16px;
            padding-right: 33px;
        }

        .ps-box_dropdown:before {
            content: "";
            position: absolute;
            right: 15px;
            z-index: 2;
            background-size: contain;
            background-repeat: no-repeat;
            pointer-events: none;
            top: 13px;
            height: 15px;
            width: 15px;
        }

        .ps-header-login .ps-login .ps-box_input_text,
        .ps-mobile_menu .ps-profile_menu_list,
        .ps-nav-categories {
            width: 100%;
        }

        .ps-nav-categories_list {
            display: flex;
            width: inherit;
        }

        .ps-nav-categories_link {
            display: block;
            width: 100%;
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
        }

        .ps-nav-categories_content {
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        .ps-nav-categories_img-wrapper {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-right: 10px;
            height: inherit;
            width: 50px;
        }

        .ps-nav-categories_img {
            height: inherit;
            width: 40px;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: 50%;
        }

        .ps-nav-categories_text {
            display: inline-block;
            box-sizing: border-box;
            max-height: 100%;
            max-width: 70%;
            white-space: nowrap;
        }

        .ps-carousel,
        .ps-user_name {
            max-width: 100%;
        }

        .ps-beam-categories {
            box-sizing: border-box;
            width: 100%;
            padding: 10px 5px;
            box-shadow: inset 0 5px 25px 0 rgba(0, 0, 0, 0.8);
        }

        .ps-beam-categories .ps-nav-categories_list {
            flex-wrap: wrap;
        }

        .ps-beam-categories .ps-nav-categories_list > * {
            position: relative;
            width: 50%;
        }

        .ps-beam-categories .ps-nav-categories_list > :after,
        .ps-beam-categories .ps-nav-categories_list > :before {
            content: "";
            display: none;
            position: absolute;
            top: 5px;
            height: 30px;
            width: 1px;
            background-color: #313047;
        }

        .ps-beam-categories .ps-nav-categories_list > :before {
            left: 0;
        }

        .ps-beam-categories .ps-nav-categories_list > :after {
            right: 0;
        }

        .ps-beam-categories .ps-nav-categories_item.x_active .ps-nav-categories_content {
            border: 2px dotted;
        }

        .ps-beam-categories .ps-nav-categories_item.x_slots .ps-nav-categories_img {
            width: 42px;
        }

        .ps-beam-categories .ps-nav-categories_item.x_slots .ps-nav-categories_content {
            border-color: #17eada;
        }

        .ps-beam-categories .ps-nav-categories_item.x_live .ps-nav-categories_img {
            width: 37px;
        }

        .ps-beam-categories .ps-nav-categories_item.x_live .ps-nav-categories_content {
            border-color: #de593e;
        }

        .ps-beam-categories .ps-nav-categories_item.x_casino .ps-nav-categories_img {
            width: 34px;
        }

        .ps-beam-categories .ps-nav-categories_item.x_casino .ps-nav-categories_content {
            border-color: #6ef770;
        }

        .ps-beam-categories .ps-nav-categories_item.x_tournament .ps-nav-categories_img {
            width: 33px;
        }

        .ps-beam-categories .ps-nav-categories_item.x_tournament .ps-nav-categories_content {
            border-color: #e8ce3a;
        }

        .ps-beam-categories .ps-nav-categories_link {
            box-sizing: border-box;
            border-radius: 5px;
            padding: 2px;
            font-size: 12px;
        }

        .ps-beam-categories .ps-nav-categories_content {
            justify-content: flex-start;
            height: 40px;
            max-height: 40px;
            border-radius: 8px;
            padding-left: 4px;
        }

        .ps-beam-categories .ps-nav-categories_content:hover {
            box-shadow: inset 0 0 0 32px rgba(255, 255, 255, 0.05);
        }

        .ps-beam-categories .ps-nav-categories_img-wrapper {
            justify-content: center;
            margin-right: 5px;
            width: 42px;
        }

        @media (min-width: 340px) {
            .ps-beam-categories .ps-nav-categories_link {
                font-size: 14px;
            }
        }

        @media (min-width: 669px) {
            .ps-choices[data-type*="select-one"]:before,
            .ps-select:before {
                right: 15px;
            }
            .ps-choices__inner,
            .ps-select select {
                padding-right: 35px;
                padding-left: 18px;
            }
            .ps-choices__list--dropdown .ps-choices__item,
            .ps-select option {
                padding-left: 16px;
                padding-right: 33px;
            }
            .ps-select.x_small .ps-choices[data-type*="select-one"]:before,
            .ps-select.x_small:before {
                right: 7px;
            }
            .ps-select.x_small .ps-choices__inner,
            .ps-select.x_small .ps-choices__list--dropdown .ps-choices__item,
            .ps-select.x_small option,
            .ps-select.x_small select {
                padding: 10px 25px 7px 10px;
            }
            .ps-beam-categories {
                padding: 5px 0 0;
                box-shadow: none;
            }
            .ps-beam-categories .ps-nav-categories {
                margin: 0 auto;
                box-sizing: border-box;
                max-width: 1200px;
                width: 100%;
                padding: 0 15px;
            }
            .ps-beam-categories .ps-nav-categories_list {
                flex-wrap: nowrap;
            }
            .ps-beam-categories .ps-nav-categories_list > * {
                width: 25%;
            }
            .ps-beam-categories .ps-nav-categories_list > :after,
            .ps-beam-categories .ps-nav-categories_list > :before {
                display: block;
                top: 10.5px;
                height: 34px;
            }
            .ps-beam-categories .ps-nav-categories_item:first-child .ps-nav-categories_content:before,
            .ps-beam-categories .ps-nav-categories_item:last-child .ps-nav-categories_content:after,
            .ps-beam-categories .ps-nav-categories_list > :first-child:before,
            .ps-beam-categories .ps-nav-categories_list > :last-child:after {
                display: none;
            }
            .ps-beam-categories .ps-nav-categories_item.x_slots .ps-nav-categories_img {
                width: 52px;
            }
            .ps-beam-categories .ps-nav-categories_item.x_live .ps-nav-categories_img {
                width: 40px;
            }
            .ps-beam-categories .ps-nav-categories_item.x_casino .ps-nav-categories_img,
            .ps-beam-categories .ps-nav-categories_item.x_tournament .ps-nav-categories_img {
                width: 37px;
            }
            .ps-beam-categories .ps-nav-categories_item.x_active {
                position: relative;
            }
            .ps-beam-categories .ps-nav-categories_item.x_active .ps-nav-categories_link {
                position: absolute;
                top: 7px;
                left: 0;
                z-index: 10;
            }
            .ps-beam-categories .ps-nav-categories_item.x_active .ps-nav-categories_content {
                position: relative;
                border: none;
                padding-top: 4px;
            }
            .ps-beam-categories .ps-nav-categories_item.x_active .ps-nav-categories_content:hover {
                box-shadow: none;
            }
            .ps-beam-categories .ps-nav-categories_item.x_active .ps-nav-categories_content:after,
            .ps-beam-categories .ps-nav-categories_item.x_active .ps-nav-categories_content:before {
                content: "";
                position: absolute;
                z-index: 0;
                bottom: 3px;
                height: 20px;
                width: 20px;
                border-bottom: 4px solid #1f1f32;
            }
            .ps-beam-categories .ps-nav-categories_item.x_active .ps-nav-categories_content:before {
                left: -20px;
                border-bottom-right-radius: 75%;
                border-right: 4px solid #1f1f32;
            }
            .ps-beam-categories .ps-nav-categories_item.x_active .ps-nav-categories_content:after {
                right: -20px;
                border-bottom-left-radius: 75%;
                border-left: 4px solid #1f1f32;
            }
            .ps-beam-categories .ps-nav-categories_content,
            .ps-beam-categories .ps-nav-categories_link {
                border-radius: 10px 10px 0 0;
            }
            .ps-beam-categories .ps-nav-categories_link {
                padding: 0;
            }
            .ps-beam-categories .ps-nav-categories_content {
                justify-content: center;
                height: 55px;
                max-height: 55px;
                padding: 0 5px;
            }
            .ps-beam-categories .ps-nav-categories_img-wrapper {
                position: relative;
                margin-right: 10px;
            }
            .ps-beam-categories .ps-nav-categories_img {
                position: absolute;
                top: 0;
                right: 0;
            }
            .ps-gamecard:hover {
                transform: scale(1.1);
                z-index: 4;
            }
            .ps-gamecard:hover .ps-gamecard_links {
                pointer-events: auto;
                opacity: 1;
            }
            .ps-gamecard:hover.x_no-animation {
                transform: none;
            }
        }

        @media (min-width: 780px) {
            .ps-beam-categories .ps-nav-categories_text {
                overflow: visible;
            }
        }

        .ps-game-sort-and-filter > :last-child,
        .ps-game_sort > li:last-child,
        .ps-gamecard_flags li:last-child,
        .ps-navigation_social li:last-child {
            margin-right: 0;
        }

        .ps-navigation_social a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 35px;
            width: 35px;
            border-radius: 50%;
        }

        .ps-navigation_social a img {
            height: 20px;
            width: 20px;
        }

        .ps-navigation_social a.ps-social_youtube img {
            height: 26px;
            width: 26px;
        }

        .ps-social_instagram {
            background-color: #264484;
            box-shadow: 0 3px 0 1px #16284d;
        }

        .ps-social_instagram:focus,
        .ps-social_instagram:hover {
            box-shadow: 0 3px 0 1px #16284d, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4);
        }

        .ps-social_vkontakte {
            background-color: #3a6aa3;
            box-shadow: 0 3px 0 1px #223f61;
        }

        .ps-social_vkontakte:focus,
        .ps-social_vkontakte:hover {
            box-shadow: 0 3px 0 1px #223f61, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4);
        }

        .ps-social_facebook {
            background-color: #3e5a98;
            box-shadow: 0 3px 0 1px #253459;
        }

        .ps-social_facebook:focus,
        .ps-social_facebook:hover {
            box-shadow: 0 3px 0 1px #253459, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4);
        }

        .ps-social_twitter {
            background-color: #28b7eb;
            box-shadow: 0 3px 0 1px #264484;
        }

        .ps-social_twitter:focus,
        .ps-social_twitter:hover {
            box-shadow: 0 3px 0 1px #264484, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4);
        }

        .ps-social_google {
            background-color: #cd3b28;
            box-shadow: 0 3px 0 1px #822519;
        }

        .ps-social_google:focus,
        .ps-social_google:hover {
            box-shadow: 0 3px 0 1px #822519, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4);
        }

        .ps-social_youtube {
            background-color: red;
            box-shadow: 0 3px 0 1px #781712;
        }

        .ps-social_youtube:focus,
        .ps-social_youtube:hover {
            box-shadow: 0 3px 0 1px #781712, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4);
        }

        .ps-social_telegram {
            background-color: #2ca3df;
            box-shadow: 0 3px 0 1px #1a6b84;
        }

        .ps-social_telegram:focus,
        .ps-social_telegram:hover {
            box-shadow: 0 3px 0 1px #1a6b84, inset 0 10px 10px 5px rgba(255, 255, 255, 0.4);
        }

        .ps-navigation_profile {
            margin-bottom: 35px;
        }

        .ps-navigation_profile .ps-profile_menu_list {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item {
            position: relative;
            height: 50px;
            border-bottom: 2px solid #000;
            padding: 0 15px;
            color: #646a87;
        }

        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item:hover {
            background-color: initial;
            color: #fff;
        }

        .ps-game_menu_choose .ps-choose.active,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item.active {
            border-bottom: 2px solid #fff;
            color: #fff;
        }

        .ps-game_menu_choose .ps-choose.active .ps-svg_chat .ps-svg_color,
        .ps-game_menu_choose .ps-choose.active .ps-svg_profile .ps-svg_color,
        .ps-game_menu_choose .ps-choose.active .ps-svg_slot_777 .ps-svg_color,
        .ps-game_menu_choose .ps-choose.active .ps-svg_tournament .ps-svg_color,
        .ps-navigation_profile .ps-ps-ps-profile_menu_list .ps-ps-profile_menu_item.active .ps-svg_achievement .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item.active .ps-svg_exit .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item.active .ps-svg_mail_alert .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item.active .ps-svg_money .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item.active .ps-svg_present .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item.active .ps-svg_profile .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_achievement .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_exit .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_mail_alert .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_money .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_present .ps-svg_color,
        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_profile .ps-svg_color {
            stroke: #fff;
        }

        .ps-navigation_profile .ps-profile_menu_list .ps-profile_menu_item > .ps-notification_number {
            top: 5px;
            left: 32px;
        }

        .ps-navigation_profile .ps-img_box {
            width: 20px;
        }

        .ps-navigation_profile .ps-img_box img {
            transform: scale(1.2);
        }

        .ps-legally_safe_profit {
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            padding: 20px 0;
            background-color: #161626;
        }

        .ps-legally_safe_profit .ps-card {
            display: flex;
            box-sizing: border-box;
            min-height: 160px;
            width: 33%;
            padding-left: 10px;
        }

        .ps-legally_safe_profit .ps-card img {
            align-self: center;
            margin-right: 15px;
        }

        .ps-legally_safe_profit .ps-card .ps-card_descript {
            box-sizing: border-box;
            height: 100%;
            padding-top: 10%;
        }

        .ps-legally_safe_profit .ps-card .ps-card_head {
            margin-bottom: 10px;
            font-size: 18px;
            font-weight: 800;
            font-family: Muller, sans-serif;
            color: #fff;
        }

        .ps-legally_safe_profit .ps-card p {
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            font-size: 14px;
            font-weight: 500;
            color: #646a87;
        }

        .ps-legally_safe_profit .ps-card_legally img,
        .ps-legally_safe_profit .ps-card_profit img {
            width: 35px;
        }

        .ps-legally_safe_profit .ps-card_safe img {
            width: 30px;
        }

        .ps-legally_safe_profit:after,
        .ps-legally_safe_profit:before {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 14px;
            background-size: contain;
            background-repeat: repeat-x;
        }

        .legally_safe_profit:before {
            top: 3px;
        }

        .ps-legally_safe_profit:after {
            bottom: 3px;
        }

        @media (max-width: 1024px) {
            .ps-legally_safe_profit .ps-card img {
                align-self: flex-start;
                padding-top: 40px;
            }
        }

        .ps-profile_menu {
            position: relative;
            display: flex;
            align-items: center;
            color: #fff;
        }

        .ps-profile_menu .ps-profile_menu_list {
            position: absolute;
            top: 43px;
            left: -34px;
            border: 1px solid #7883ab;
            border-radius: 10px;
            padding: 8px;
            background-color: #2c3552;
        }

        .ps-profile_menu .ps-profile_menu_list li {
            position: relative;
            margin-bottom: 5px;
        }

        .ps-profile_menu .ps-profile_menu_list li:before {
            box-sizing: border-box;
            width: 100%;
            height: 6px;
            background-repeat: repeat-x;
            background-size: contain;
            -webkit-filter: drop-shadow(0 -1.5px 0 #000);
            filter: drop-shadow(0 -1.5px 0 #000);
            content: "";
            position: absolute;
            bottom: -5px;
        }

        .ps-profile_menu .ps-profile_menu_list .ps-profile_menu_item {
            position: relative;
            min-width: 225px;
        }

        .ps-profile_menu_button {
            display: flex;
            align-items: center;
            height: 100%;
            width: 100%;
            cursor: pointer;
        }

        .ps-profile_menu_button + .ps-dropdown_list {
            transition: visibility 1s, opacity 0.5s;
        }

        .ps-profile_menu_button .ps-icon_dropdown {
            width: 14px;
        }

        .ps-footer_main,
        .ps-profile_menu_list {
            display: flex;
            flex-direction: column;
        }

        .ps-profile_menu_list .ps-profile_menu_item {
            display: flex;
            align-items: center;
            height: 30px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            text-decoration: none;
            color: inherit;
        }

        .ps-mobile_menu .ps-btn_help:hover,
        .ps-profile_menu_list .ps-profile_menu_item:hover {
            border-radius: 3px;
            background-color: #161626;
        }

        .ps-mobile_menu .ps-btn_help:hover .ps-svg_question .ps-svg_color,
        .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_achievement .svg_color,
        .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_exit .ps-svg_color,
        .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_mail_alert .ps-svg_color,
        .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_money .ps-svg_color,
        .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_present .ps-svg_color,
        .ps-profile_menu_list .ps-profile_menu_item:hover .ps-svg_profile .ps-svg_color {
            stroke: #e8ce3a;
        }

        .ps-profile_menu_list .ps-img_box {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            height: inherit;
            width: 30px;
            min-width: 30px;
        }

        .ps-user_money,
        .ps-user_name {
            align-items: center;
            font-size: 14px;
            font-weight: 800;
            display: flex;
            white-space: nowrap;
        }

        .ps-profile_menu_list .ps-img_admin svg,
        .ps-profile_menu_list .ps-img_exit svg,
        .ps-profile_menu_list .ps-img_partner svg,
        .ps-profile_menu_list .ps-img_profile svg {
            width: 18px;
        }

        .ps-profile_menu_list .ps-img_bonus svg,
        .ps-profile_menu_list .ps-img_notification svg {
            width: 24px;
        }

        .ps-profile_menu_list .ps-img_wallet svg,
        .ps-user_money .ps-img_user_money svg {
            width: 22px;
        }

        .ps-profile_menu_list .ps-img_achievement svg {
            width: 26px;
        }

        .ps-user_name .ps-user_status {
            height: 35px;
            width: 35px;
            margin-right: 10px;
        }

        .ps-user_name .ps-user_status img,
        .ps-user_name .ps-user_status picture {
            height: inherit;
            width: inherit;
        }

        .ps-user_name .ps-user_name_view {
            height: 15px;
            text-transform: uppercase;
        }

        .ps-user_money {
            color: #fff;
        }

        .ps-user_money .ps-img_user_money {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            height: 30px;
            width: 30px;
        }

        .ps-user_money .ps-user_money_count {
            height: 15px;
        }

        @-webkit-keyframes playX {
            0% {
                background-position-x: 0;
            }
            to {
                background-position-x: -360px;
            }
        }

        @keyframes playX {
            0% {
                background-position-x: 0;
            }
            to {
                background-position-x: -360px;
            }
        }

        @-webkit-keyframes playY {
            0% {
                background-position-y: 0;
            }
            to {
                background-position-y: -120px;
            }
        }

        @keyframes playY {
            0% {
                background-position-y: 0;
            }
            to {
                background-position-y: -120px;
            }
        }

        @-webkit-keyframes lastFrame {
            0% {
                background-position: -360px -120px;
            }
            to {
                background-position: -300px -60px;
            }
        }

        @keyframes lastFrame {
            0% {
                background-position: -360px -120px;
            }
            to {
                background-position: -300px -60px;
            }
        }

        .ps-carousel {
            overflow: hidden;
            margin-top: -100px;
            height: 380px;
            width: 100%;
            box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.8);
            font-family: Sochi2014, sans-serif;
            font-weight: 700;
        }

        .ps-carousel_img,
        .ps-carousel_item,
        .ps-carousel_list {
            position: relative;
            width: 100%;
            max-width: 100%;
            
        }

        .ps-carousel_list {
            display: flex;
            height: inherit;
        }

        .ps-carousel_list .ps-highlighting {
            display: inline-block;
            margin-left: 10px;
            box-sizing: border-box;
            height: 28px;
            border-radius: 4px;
            padding: 0 8px;
            line-height: 32px;
            font-size: 18px;
            text-shadow: none;
        }

        .ps-carousel_list .ps-text_part {
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .ps-carousel_list .ps-text_part:before {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            z-index: 0;
            width: 100%;
            height: 2px;
            background-color: rgba(255, 0, 0, 0.5);
        }

        .ps-carousel_item {
            height: 380px;
            min-width: 100%;
            transition: margin-left 0.5s;
        }

        .ps-carousel_img {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: inherit;
        }

        .ps-carousel_text {
            position: absolute;
            bottom: 40px;
            text-transform: uppercase;
            text-shadow: 0 1px 0 #aaa, 0 2px 0 #aaa, 0 3px 0 #aaa, 1px 0 0 #aaa, 1px 1px 0 #aaa, 1px 2px 0 #aaa, 1px 3px 0 #aaa, 0 6px 25px rgba(0, 0, 0, 0.6);
        }

        .ps-banner_wrapper {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .ps-banner {
            width: 100%;
            object-fit: none;
            object-position: 50% 50%;
            pointer-events: none;
        }

        .ps-banner_everyday .ps-carousel_text {
            left: calc(50% - 550px);
            max-width: 750px;
            line-height: 40px;
            font-size: 32px;
        }

        .ps-carousel_megawin-wrapper {
            position: absolute;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 62px;
            background: linear-gradient(90deg, rgba(50, 18, 88, 0) 0, rgba(50, 18, 88, 0.9) 25%, rgba(50, 18, 88, 0.9) 75%, rgba(50, 18, 88, 0));
        }

        .ps-gamecard,
        .ps-gamecard_links {
            flex-direction: column;
            box-sizing: border-box;
        }

        .ps-carousel_megawin-text {
            max-width: 1200px;
            width: 100%;
            background: linear-gradient(180deg, #ffbc3a 0, #ffbc3a 50%, #e7971e 55%, #ffe47a 65%, #ffe47a 80%, #ffe47a);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 48px;
            font-size: 40px;
            text-align: center;
            white-space: nowrap;
            color: rgba(50, 18, 88, 0.9);
        }

        .ps-banner_maxwin .ps-carousel_megawin-wrapper,
        .ps-layer_games.ps-category_casino:before,
        .ps-layer_games.ps-category_live:before,
        .ps-layer_games.ps-category_slots:before,
        .ps-layer_games.ps-category_tournament:before {
            background: 0 0;
        }

        .ps-banner_maxwin .ps-carousel_megawin-text {
            text-transform: uppercase;
            line-height: 38px;
            font-size: 30px;
            background: linear-gradient(180deg, #ffee5b 0, #ffee5b 40%, #ffd303 45%, #f4b001 50%, #ffd303 55%, #ffee5b 60%, #ffee5b);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (max-width: 1200px) {
            .ps-banner_everyday .ps-banner {
                object-position: 60% 50%;
            }
            .ps-banner_everyday .ps-carousel_text {
                left: 5%;
                font-size: 28px;
            }
            .ps-carousel_megawin-wrapper {
                height: 48px;
                background: linear-gradient(90deg, rgba(50, 18, 88, 0) 0, rgba(50, 18, 88, 0.9) 10%, rgba(50, 18, 88, 0.9) 90%, rgba(50, 18, 88, 0));
            }
            .ps-banner_maxwin .ps-carousel_megawin-text,
            .ps-carousel_megawin-text {
                line-height: 32px;
                font-size: 26px;
            }
            .ps-status_page .ps-block_security {
                max-width: 600px;
            }
            .ps-list_statuses {
                padding: 20px 0 0;
            }
            .ps-list_statuses > li {
                width: 33.33333%;
            }
            .ps-list_statuses > li:nth-child(3) .ps-status_card {
                border-right: none;
            }
            .ps-list_statuses > li:nth-last-child(n + 4) {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 668px) {
            form .ps-box_form_input,
            form .ps-box_form_input.ps-box_select {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 15px;
            }
            form .ps-box_form_input.ps-box_select > label,
            form .ps-box_form_input.ps-box_select > span,
            form .ps-box_form_input > label,
            form .ps-box_form_input > span {
                margin-bottom: 5px;
                max-width: 100%;
                padding-left: 2px;
            }
            form .ps-box_form_input .ps-box_form_choose,
            form .ps-box_form_input .ps-box_input_file,
            form .ps-box_form_input .ps-box_input_text,
            form .ps-box_form_input .ps-box_textarea {
                width: 100%;
            }
            form .ps-box_form_input .ps-box_input_text input {
                padding-left: 10px;
            }
            form .ps-box_btn {
                align-items: center;
            }
            .ps-navigation_profile {
                width: 100%;
                max-width: 100%;
            }
            .ps-navigation_profile .ps-profile_menu_list {
                overflow-y: hidden;
                overflow-x: auto;
                flex-wrap: nowrap;
            }
            .ps-navigation_profile .ps-profile_menu_list::-webkit-scrollbar {
                display: none;
            }
            .ps-legally_safe_profit {
                padding: 30px 0;
            }
            .ps-legally_safe_profit .ps-beam_block .ps-card {
                min-height: 0;
                padding-left: 0;
            }
            .ps-legally_safe_profit .ps-beam_block img {
                margin-right: 0;
            }
            .ps-legally_safe_profit .ps-beam_block .ps-card_head {
                display: flex;
                justify-content: center;
                margin: 0;
                font-size: 12px;
            }
            .ps-legally_safe_profit .ps-beam_block .ps-card_descript {
                height: auto;
            }
            .ps-banner_everyday .ps-highlighting,
            .ps-banner_everyday .ps-text_part:before,
            .ps-legally_safe_profit .ps-beam_block p {
                display: none;
            }
            .ps-legally_safe_profit .ps-card {
                flex-direction: column;
                align-items: center;
            }
            .ps-legally_safe_profit .ps-card img {
                align-self: center;
                padding-top: 0;
            }
            .ps-carousel {
                position: relative;
                margin-top: 0;
                padding-top: 25%;
                height: 0;
            }
            .ps-carousel_list {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
            }
            .ps-carousel_item {
                height: 100%;
            }
            .ps-banner {
                object-fit: cover;
            }
            .ps-banner_everyday .ps-carousel_text,
            .ps-banner_maxwin .ps-carousel_megawin-text,
            .ps-carousel_megawin-text {
                box-sizing: border-box;
                height: 22px;
                padding-top: 3px;
                line-height: 16px;
                font-size: 12px;
                text-transform: uppercase;
                text-align: center;
                text-shadow: none;
                color: #fff;
                white-space: nowrap;
            }
            .ps-banner_maxwin .ps-carousel_megawin-wrapper,
            .ps-carousel_megawin-wrapper {
                height: auto;
                background: linear-gradient(90deg, rgba(50, 18, 88, 0) 0, rgba(50, 18, 88, 0.6) 20%, rgba(50, 18, 88, 0.6) 80%, rgba(50, 18, 88, 0));
            }
            .ps-banner_maxwin .ps-carousel_megawin-text,
            .ps-carousel_megawin-text {
                background: 0 0;
                -webkit-text-fill-color: #fff;
            }
            .ps-banner_everyday .ps-carousel_text {
                width: 100%;
                left: 0;
                bottom: 0;
                background: linear-gradient(90deg, rgba(217, 174, 33, 0) 0, rgba(217, 174, 33, 0.6) 20%, rgba(217, 174, 33, 0.6) 80%, rgba(217, 174, 33, 0));
            }
        }

        @media (max-width: 400px) {
            .ps-banner_everyday .ps-carousel_text,
            .ps-carousel_megawin-text {
                line-height: 14px;
                font-size: 10px;
            }
        }

        .ps-payment_method {
            box-sizing: border-box;
            width: 226px;
            height: 118px;
            border-radius: 10px;
        }

        .ps-payment_method img {
            width: 222px;
            height: 114px;
        }

        .ps-gamecard {
            position: relative;
            height: 100%;
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 10px 0 #000;
            color: #fff;
            will-change: transform;
            transition: transform 0.15s linear;
        }

        .ps-gamecard a {
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }

        .ps-gamecard .ps-gamecard_flags {
            position: absolute;
            top: -2px;
            left: 10px;
            z-index: 3;
        }

        .ps-gamecard.x_show {
            transform: scale(1.1);
            z-index: 4;
        }

        .ps-gamecard.x_show .ps-gamecard_links {
            pointer-events: auto;
            opacity: 1;
        }

        .ps-gamecard.x_show.x_no-animation {
            transform: none;
        }

        .ps-gamecard_img,
        .ps-gamecard_window {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .ps-gamecard_window {
            position: relative;
            height: 75%;
            border: 1px solid #393a51;
            border-bottom: none;
        }

        .ps-gamecard_img {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
        }

        .ps-gamecard_links {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-around;
            height: 100%;
            width: 100%;
            padding: 20px 0;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.15s linear 20ms;
            border-radius: 10px 10px 0 0;
            background-color: rgba(0, 0, 0, 0.8);
        }

        .ps-gamecard_demo {
            box-sizing: border-box;
            height: 23px;
            border-radius: 50px;
            padding: 0 20px;
            background-color: #313047;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .ps-gamecard_title {
            overflow: hidden;
            text-overflow: ellipsis;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: none;
            box-sizing: border-box;
            height: 25%;
            border: 1px solid #393a51;
            border-top: none;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            padding: 0 5px;
            background-color: #161626;
            font-family: "Museo Sans Cyrl 500", sans-serif;
            font-weight: 500;
            font-size: 14px;
            text-align: center;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .ps-gamecard_favorite.added .ps-svg_heart_empty .ps-svg_color {
            fill: #ff1f44;
        }

        .ps-gamecard_favorite label {
            display: flex;
            cursor: pointer;
        }

        .ps-gamecard_favorite input {
            margin-right: 5px;
            background: 0 0;
            font-size: 13px;
            font-weight: 500;
            color: #646a87;
            cursor: pointer;
        }

        .ps-gamecard_favorite .ps-icon_heart_empty svg {
            height: 20px;
        }

        .ps-game-catalog {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 45px;
            overflow-anchor: none;
        }

        .ps-game-catalog .ps-form_search {
            width: 430px;
        }

        .ps-game-catalog .ps-show_more {
            margin: 45px 0 0;
        }

        .ps-game-catalog .ps-show_more.previous {
            margin: 30px 0;
        }

        .ps-game-catalog_header {
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 5px;
        }

        .ps-game-catalog_header,
        .ps-game-catalog_list {
            display: flex;
            box-sizing: border-box;
            width: 100%;
        }

        .ps-game-catalog_list {
            flex-wrap: wrap;
            align-content: center;
        }

        .ps-game-catalog_list-item {
            position: relative;
            box-sizing: border-box;
            height: 0;
            margin: 0 15px 15px 0;
        }

        .ps-game-catalog_list-item .ps-gamecard {
            position: absolute;
            top: 0;
            left: 0;
        }

        @media (min-width: 0px) {
            .ps-game-catalog_list {
                max-width: 450px;
            }
            .ps-game-catalog_list .ps-game-catalog_list-item:nth-child(2n) {
                margin-right: 0;
            }
            .ps-game-catalog_list-item {
                width: calc(50% - 7.5px);
                padding-top: calc(50% - 7.5px);
            }
        }

        @media (min-width: 669px) {
            .ps-game-catalog_list {
                max-width: 100%;
            }
            .ps-game-catalog_list .ps-game-catalog_list-item:nth-child(2n) {
                margin-right: 15px;
            }
            .ps-game-catalog_list .ps-game-catalog_list-item:nth-child(4n) {
                margin-right: 0;
            }
            .ps-game-catalog_list-item {
                width: calc(25% - 11.25px);
                padding-top: calc(25% - 11.25px);
            }
        }

        @media (min-width: 1025px) {
            .ps-beam-categories .ps-nav-categories_item.x_slots .ps-nav-categories_img {
                width: 60px;
            }
            .ps-beam-categories .ps-nav-categories_item.x_live .ps-nav-categories_img {
                width: 55px;
            }
            .ps-beam-categories .ps-nav-categories_item.x_casino .ps-nav-categories_img,
            .ps-beam-categories .ps-nav-categories_item.x_tournament .ps-nav-categories_img {
                width: 45px;
            }
            .ps-beam-categories .ps-nav-categories_item:first-child .ps-nav-categories_content:before,
            .ps-beam-categories .ps-nav-categories_item:last-child .ps-nav-categories_content:after {
                display: block;
            }
            .ps-beam-categories .ps-nav-categories_link {
                font-size: 16px;
            }
            .ps-beam-categories .ps-nav-categories_img-wrapper {
                margin-right: 15px;
                width: 50px;
            }
            .ps-game-catalog_list {
                max-width: 100%;
            }
            .ps-game-catalog_list .ps-game-catalog_list-item:nth-child(4n) {
                margin-right: 15px;
            }
            .ps-game-catalog_list .ps-game-catalog_list-item:nth-child(5n) {
                margin-right: 0;
            }
            .ps-game-catalog_list-item {
                width: calc(20% - 12px);
                padding-top: calc(20% - 12px);
            }
        }

        .ps-game_sort {
            flex: 1 2;
            position: relative;
            display: flex;
            align-items: center;
        }

        .ps-game_sort > li {
            margin-right: 10px;
            box-sizing: border-box;
            height: 100%;
        }

        .ps-game_sort .ps-sort_link {
            overflow: hidden;
            display: flex;
            align-items: center;
            color: inherit;
            text-decoration: none;
            padding: 6px 5px 11px;
        }

        .ps-game_sort .ps-sort_hit.active div,
        .ps-game_sort .ps-sort_hit:hover div {
            background-color: #a91fff;
        }

        .ps-game_sort .ps-sort_hit.active div:before,
        .ps-game_sort .ps-sort_hit:hover div:before {
            border-left: 24px solid #a91fff;
        }

        .ps-game_sort .ps-sort_hit.active div:after,
        .ps-game_sort .ps-sort_hit:hover div:after {
            border-right: 24px solid #a91fff;
        }

        .ps-game_sort .ps-sort_new.active div,
        .ps-game_sort .ps-sort_new:hover div {
            background-color: #4dd433;
        }

        .ps-game_sort .ps-sort_new.active div:before,
        .ps-game_sort .ps-sort_new:hover div:before {
            border-left: 24px solid #4dd433;
        }

        .ps-game_sort .ps-sort_new.active div:after,
        .ps-game_sort .ps-sort_new:hover div:after {
            border-right: 24px solid #4dd433;
        }

        .ps-game_sort .ps-sort_favorite.active div,
        .ps-game_sort .ps-sort_favorite:hover div {
            background-color: #ff1f44;
        }

        .ps-game_sort .ps-sort_favorite.active div:before,
        .ps-game_sort .ps-sort_favorite:hover div:before {
            border-left: 24px solid #ff1f44;
        }

        .ps-game_sort .ps-sort_favorite.active div:after,
        .game_sort .sort_favorite:hover div:after {
            border-right: 24px solid #ff1f44;
        }

        .ps-game-filter {
            flex: 2 1;
            min-width: 161px;
        }

        .ps-game-filter option {
            background-color: #191929;
            font-size: 14px;
            font-weight: 500;
        }

        .ps-game-filter .ps-choices__list--dropdown {
            z-index: 5;
            width: auto;
            padding: 0;
            background: 0 0;
        }

        .ps-game-filter .ps-choices__list--dropdown .ps-choices__list {
            box-sizing: border-box;
            max-height: none;
            border: 1px solid transparent;
            border-radius: 5px;
            padding: 10px;
            background: linear-gradient(#191929, #191929) padding-box, linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(128, 128, 128, 0.4)) border-box;
        }

        .ps-game-filter .ps-choices__list--dropdown .ps-choices__group,
        .ps-mobile_menu .ps-mobile_menu_box:last-child:before,
        header .ps-link_enter.x_login-btn.oauth2 {
            display: none;
        }

        .ps-game-filter .ps-choices__list--dropdown .ps-choices__item {
            position: relative;
            box-sizing: border-box;
            height: 35px;
            width: 170px;
            padding: 0 0 0 5px;
            line-height: 35px;
            font-size: 14px;
            font-weight: 500;
            background: 0 0;
        }

        .ps-game-filter .ps-choices__list--dropdown .ps-choices__item.is-highlighted,
        .ps-game-filter .ps-choices__list--dropdown .ps-choices__item:focus,
        .ps-game-filter .ps-choices__list--dropdown .ps-choices__item:hover,
        .ps-game-filter .ps-choices__list--dropdown .ps-choices__item[aria-selected="true"] {
            background: #30303f;
        }

        @media (min-width: 669px) {
            .ps-game-filter {
                min-width: 190px;
            }
            .ps-game-filter:before {
                right: 15px;
            }
            .ps-game-filter.x_columns .ps-choices__list--dropdown .ps-choices__list {
                -webkit-columns: 170px 2;
                -moz-columns: 170px 2;
                columns: 170px 2;
                -webkit-column-gap: 0;
                -moz-column-gap: 0;
                column-gap: 0;
                width: 362px;
                overflow-y: initial;
            }
            .ps-game-filter.x_columns .ps-choices__list--dropdown .ps-choices__item {
                padding: 0 0 0 30px;
            }
            .ps-game-filter.x_columns .ps-choices__list--dropdown .ps-choices__item:before {
                content: attr(data-content);
                position: absolute;
                top: 0;
                left: 5px;
                font-size: 16px;
                font-weight: 700;
                text-transform: uppercase;
                color: #646a87;
            }
            .ps-game-filter.x_columns .ps-choices__list--dropdown [data-id="1"] {
                padding: 0 0 0 5px;
                -webkit-column-span: all;
                -moz-column-span: all;
                column-span: all;
            }
            .ps-game-filter.x_columns .ps-choices__list--dropdown [data-id="1"]:before {
                display: none;
            }
        }

        .ps-game-sort-and-filter {
            position: relative;
            display: flex;
        }

        .ps-game-sort-and-filter > * {
            margin-right: 20px;
        }

        .ps-game_flag_favorite,
        .ps-game_flag_hit,
        .ps-game_flag_new {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            box-sizing: border-box;
            height: 18px;
            width: 24px;
            border-radius: 2px;
            padding-bottom: 2px;
            background-color: #302e40;
            font-size: 8px;
            font-weight: 800;
            text-transform: uppercase;
            color: #fff;
            cursor: pointer;
        }

        .ps-header-login,
        header {
            background-color: rgba(37, 37, 54, 0.95);
            box-sizing: border-box;
        }

        .ps-game_flag_favorite img,
        .ps-game_flag_hit img,
        .ps-game_flag_new img {
            width: 12px;
            height: 12px;
        }

        .ps-game_flag_favorite:after,
        .ps-game_flag_favorite:before,
        .ps-game_flag_hit:after,
        .ps-game_flag_hit:before,
        .ps-game_flag_new:after,
        .ps-game_flag_new:before {
            content: "";
            position: absolute;
            bottom: -8px;
            height: 0;
            width: 0;
            border: 10px solid transparent;
        }

        .ps-game_flag_favorite:before,
        .ps-game_flag_hit:before,
        .ps-game_flag_new:before {
            left: 0;
            z-index: -1;
            border-left: 22px solid #302e40;
        }

        .ps-game_flag_favorite:after,
        .ps-game_flag_hit:after,
        .ps-game_flag_new:after {
            right: 0;
            z-index: -2;
            border-right: 22px solid #302e40;
        }

        .ps-large.game_flag_favorite,
        .ps-large.game_flag_hit,
        .ps-large.game_flag_new {
            transform: scale(1.25);
            text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
            cursor: default;
        }

        .ps-large.game_flag_favorite img,
        .ps-large.game_flag_hit img,
        .ps-large.game_flag_new img {
            -webkit-filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.2));
        }

        .ps-game_flag_hit.large,
        .ps-game_flag_new.large {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
            -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
        }

        .ps-game_flag_hit {
            padding-bottom: 2px;
            letter-spacing: 1px;
        }

        .ps-game_flag_hit.large {
            background-color: #a91fff;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
        }

        .ps-game_flag_hit.large:before {
            border-left: 22px solid #a91fff;
        }

        .ps-game_flag_hit.large:after {
            border-right: 22px solid #a91fff;
        }

        .ps-game_flag_hit img {
            width: 15px;
            height: 15px;
        }

        .ps-game_flag_new {
            padding-bottom: 1px;
        }

        .ps-game_flag_new.large {
            background-color: #4dd433;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
        }

        .ps-game_flag_new.large:before {
            border-left: 22px solid #4dd433;
        }

        .ps-game_flag_new.large:after {
            border-right: 22px solid #4dd433;
        }

        .ps-game_flag_new img {
            width: 18px;
            height: 18px;
        }

        .ps-game_flag_favorite.large {
            background-color: #ff1f44;
            -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
        }

        .ps-game_flag_favorite.large:before {
            border-left: 22px solid #ff1f44;
        }

        .ps-game_flag_favorite.large:after {
            border-right: 22px solid #ff1f44;
        }

        .ps-game_menu .ps-game_menu_catalog,
        .game_menu .game_menu_ladder,
        .game_menu .game_menu_profile {
            overflow-x: hidden;
            overflow-y: auto;
            box-sizing: border-box;
            height: calc(100% - 80px);
            width: 100%;
            padding: 20px 10px 10px;
        }

        .ps-game_menu .ps-game_menu_profile::-webkit-scrollbar-track {
            background-color: rgba(77, 90, 133, 0.3);
        }

        .ps-game_menu .ps-game_menu_profile::-webkit-scrollbar {
            height: 8px;
            width: 8px;
            border-radius: 10px;
            background-color: initial;
        }

        .ps-game_menu .ps-game_menu_profile::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background-color: #4d5a85;
        }

        .ps-game_menu .ps-game_menu_ladder::-webkit-scrollbar-track {
            background-color: rgba(77, 90, 133, 0.3);
        }

        .ps-game_menu .ps-game_menu_ladder::-webkit-scrollbar {
            height: 8px;
            width: 8px;
            border-radius: 10px;
            background-color: initial;
        }

        .ps-game_menu .ps-game_menu_ladder::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background-color: #4d5a85;
        }

        .ps-game_menu .ps-game_menu_catalog::-webkit-scrollbar-track {
            background-color: rgba(77, 90, 133, 0.3);
        }

        .ps-game_menu .ps-game_menu_catalog::-webkit-scrollbar {
            height: 8px;
            width: 8px;
            border-radius: 10px;
            background-color: initial;
        }

        .ps-game_menu .ps-game_menu_catalog::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background-color: #4d5a85;
        }

        @media (max-width: 576px) {
            .ps-game_menu_catalog .ps-gamecard {
                margin: 2px;
                width: calc(25% - 4px);
            }
        }

        @media (max-width: 432px) {
            .ps-game_menu_catalog .ps-gamecard {
                width: calc(33.33333% - 4px);
            }
        }

        @media (max-width: 320px) {
            .ps-game_menu_catalog .ps-gamecard {
                width: calc(50% - 4px);
            }
        }

        .ps-game_menu_choose {
            position: relative;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            height: 80px;
            width: 100%;
            padding: 0 10px;
        }

        .ps-game_menu_choose:after,
        .ps-game_menu_choose:before,
        .ps-mobile_menu:after,
        .ps-mobile_menu:before {
            content: "";
            position: absolute;
        }

        .ps-game_menu_choose:before {
            display: none;
            top: 10px;
            left: 65px;
            height: 50px;
            width: 2px;
            background-color: #4d5a85;
            opacity: 0.3;
            pointer-events: none;
        }

        .ps-game_menu_choose:after {
            bottom: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background-color: #000;
        }

        .ps-game_menu_choose .ps-choose {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            overflow: hidden;
            box-sizing: border-box;
            height: 80px;
            width: 50%;
            border-bottom: 2px solid #000;
            padding: 20px 0 10px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            word-break: break-all;
            color: #646a87;
            cursor: pointer;
        }

        .ps-mobile_menu .ps-user_name,
        footer h3 {
            font-weight: 700;
            text-transform: uppercase;
        }

        .ps-game_menu_choose .ps-choose span {
            overflow: hidden;
            max-width: 100%;
            padding-top: 10px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .ps-game_menu_choose .ps-choose svg {
            height: 24px;
        }

        .ps-game_menu_choose .ps-choose.choose_profile svg {
            height: 26px;
        }

        .ps-game_menu_choose .ps-choose .ps-svg_chat .ps-svg_color,
        .ps-game_menu_choose .ps-choose .ps-svg_profile .ps-svg_color,
        .ps-game_menu_choose .ps-choose .ps-svg_slot_777 .ps-svg_color,
        .ps-game_menu_choose .ps-choose .ps-svg_tournament .ps-svg_color {
            stroke: #646a87;
        }

        .ps-game_menu_choose .ps-choose .ps-svg_chat .ps-svg_color_fill,
        .ps-game_menu_choose .ps-choose .ps-svg_profile .ps-svg_color_fill,
        .ps-game_menu_choose .ps-choose .ps-svg_slot_777 .ps-svg_color_fill,
        .ps-game_menu_choose .ps-choose .ps-svg_tournament .ps-svg_color_fill {
            fill: #646a87;
        }

        .ps-game_menu_choose .ps-choose.active .ps-svg_chat .ps-svg_color_fill,
        .ps-game_menu_choose .ps-choose.active .ps-svg_profile .ps-svg_color_fill,
        .ps-game_menu_choose .ps-choose.active .ps-svg_slot_777 .ps-svg_color_fill,
        .ps-game_menu_choose .ps-choose.active .ps-svg_tournament .ps-svg_color_fill {
            fill: #fff;
        }

        @media (max-width: 1024px) {
            .ps-game-catalog .ps-form_search,
            .ps-game-catalog .ps-game-sort-and-filter {
                width: 100%;
            }
            .ps-game-catalog .ps-game-sort-and-filter {
                margin-bottom: 20px;
            }
            .ps-game-catalog_header {
                flex-direction: column;
                max-width: 450px;
                padding: 0;
            }
            .ps-game_menu_choose {
                height: 70px;
                padding: 0 10px 0 70px;
            }
            .ps-game_menu_choose:before {
                display: block;
            }
            .ps-game_menu_choose .ps-choose {
                height: 70px;
                padding: 8px 0;
            }
        }

        header {
            display: flex;
            align-items: center;
            top: 0;
            left: 0;
            z-index: 90;
            height: 50px;
        }

        header .ps-header_box {
            align-items: center;
            height: inherit;
        }

        header .ps-panel_authorized,
        header .ps-panel_non_authorized {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            width: 100%;
        }

        header .ps-panel_authorized > div,
        header .ps-panel_non_authorized > div {
            padding: 0 10px;
        }

        header .ps-panel_authorized > div:last-child,
        header .ps-panel_non_authorized > div:last-child {
            padding-right: 0;
        }

        header .ps-panel_authorized > div.ps-header-login,
        header .ps-panel_non_authorized > div.ps-header-login {
            padding: 20px;
        }

        .ps-forgot-password,
        header .ps-button_register,
        header .ps-link_enter {
            font-size: 12px;
        }

        header .ps-link_enter {
            display: none;
            align-items: center;
            height: 20px;
            border-bottom: 1px solid #fff;
            text-decoration: none;
            text-transform: uppercase;
            background-color: initial;
            color: inherit;
            cursor: pointer;
        }

        header .ps-mobile_menu_btn {
            position: relative;
            display: none;
            flex-direction: column;
            justify-content: center;
            height: 34px;
            display: flex;
        }

        header .ps-mobile_menu_btn .ps-notification_number {
            top: -5px;
            left: -10px;
            cursor: pointer;
        }

        header .ps-btn_help .ps-img_box {
            margin-right: 5px;
        }

        header .ps-btn_help span {
            position: relative;
            top: 2px;
        }

        .ps-main_logo img {
            height: 130%;
           
        }

        .ps-header-login {
            position: absolute;
            z-index: 100;
            max-width: 335px;
            width: 100%;
            padding: 20px;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            border-bottom: 3px solid #fe284a;
            transform: translateX(-40px) translateY(50px);
        }

        .ps-header-login_btn-close,
        .ps-mobile_menu_btn {
            background-color: initial;
        }

        .ps-header-login > *,
        .ps-layer_games > * {
            position: relative;
            z-index: 1;
        }

        .ps-header-login .ps-login > *,
        .ps-header-login_form .ps-box_form_input,
        .ps-header-login_form > * {
            margin-bottom: 20px;
        }

        .ps-header-login .ps-login .ps-forget_password {
            padding-top: 0;
            text-align: right;
        }

        .ps-header-login .ps-box_btn {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            padding: 0;
        }

        .ps-header-login .ps-box_btn > * {
            margin: 0;
        }

        .ps-header-login .ps-box_form_input {
            flex-direction: column;
        }

        .ps-header-login .ps-box_form_input .ps-box_input_text_small,
        .ps-header-login .ps-box_form_input label {
            font-size: 14px;
            max-width: 100%;
            width: 100%;
        }

        .ps-header-login .ps-box_form_input input::-webkit-input-placeholder {
            opacity: 0;
        }

        .ps-header-login .ps-box_form_input input::-moz-placeholder {
            opacity: 0;
        }

        .ps-header-login .ps-box_form_input input::-ms-input-placeholder {
            opacity: 0;
        }

        .ps-header-login .ps-box_form_input input::placeholder {
            opacity: 0;
        }

        .ps-header-login .ps-header-login_password label {
            width: auto;
        }

        .ps-header-login_description {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            font-size: 12px;
            color: #646a87;
        }

        .ps-header-login_btn-close {
            position: absolute;
            top: 17px;
            right: 20px;
            z-index: 2;
            height: 20px;
            width: 20px;
            cursor: pointer;
            opacity: 0.8;
        }

        .ps-header-login_btn-close:focus,
        .ps-header-login_btn-close:hover {
            opacity: 1;
        }

        .ps-header-login_btn-close .ps-svg_cancel_and_exit .ps-svg_color {
            stroke: #fe284a;
        }

        .ps-forgot-password_wrapper,
        .ps-mobile_menu .ps-name_and_exit {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        .ps-mobile_menu_btn img {
            height: 24px;
            cursor: pointer;
        }

        .ps-mobile_block {
            position: fixed;
            top: 0;
            right: 280px;
            z-index: 100;
            transition: right 0.25s ease-out 0.1s;
        }

        .ps-mobile_block.visibility_hidden {
            right: -280px;
        }

        .ps-mobile_menu:before {
            top: 0;
            left: 0;
            height: 4px;
            width: 100%;
            background-color: #fe284a;
        }

        .ps-mobile_menu .ps-mobile_menu_box {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            box-sizing: border-box;
            width: 100%;
            padding: 20px;
        }

        .ps-mobile_menu .ps-btn_exit,
        .ps-mobile_menu .ps-btn_exit svg {
            width: 30px;
            height: 30px;
        }

        .ps-mobile_menu .ps-user_money {
            align-items: baseline;
            max-width: 100%;
            white-space: normal;
        }

        .ps-mobile_menu .ps-user_money .ps-user_money_count {
            position: relative;
            top: -3px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            height: auto;
            min-height: 15px;
            max-width: calc(100% - 40px);
        }

        .ps-mobile_menu .ps-btn_exit {
            background-color: initial;
            cursor: pointer;
        }

        .ps-mobile_menu .ps-user_name {
            max-width: calc(100% - 30px);
            font-size: 16px;
        }

        .ps-mobile_menu .ps-user_name .ps-user_status {
            height: 35px;
        }

        .ps-mobile_menu .ps-profile_menu_item {
            position: relative;
            font-size: 16px;
            font-weight: 400;
        }

        .ps-mobile_menu .ps-profile_menu_item > .ps-notification_number {
            left: 20px;
        }

        .ps-mobile_menu .ps-btn_help {
            width: 100%;
            padding: 0;
        }

        .ps-layer_games:after,
        .ps-layer_games:before {
            content: "";
            position: absolute;
            z-index: 0;
            width: 100%;
        }

        .ps-layer_games .ps-game-catalog {
            z-index: 2;
        }

        footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 30px;
            box-shadow: inset 0 30px 30px -10px rgba(0, 0, 0, 0.8);
        }

        footer,
        footer h3 {
            width: 100%;
            color: #646a87;
        }

        footer h3 {
            margin-bottom: 15px;
            height: 30px;
            border-bottom: 1px solid #222330;
            font-size: 13px;
            white-space: nowrap;
        }

        footer .ps-footer_categories,
        footer .ps-footer_help {
            width: 35%;
        }

        @media (max-width: 668px) {
            .ps-gamecard .ps-gamecard_flags {
                top: -4px;
                left: 2px;
            }
            .ps-gamecard .ps-gamecard_flags li {
                margin-right: 0;
            }
            .ps-gamecard .ps-gamecard_flags .ps-large {
                transform: scale(0.75);
            }
            .ps-gamecard.x_show {
                transform: scale(1.35);
            }
            .ps-gamecard_links {
                padding: 5px 0;
            }
            .ps-gamecard_demo,
            .ps-gamecard_favorite,
            .ps-gamecard_play {
                margin-bottom: 0;
                transform: scale(0.8);
                flex: none;
            }
            .ps-gamecard_play:active {
                transform: translateY(3px) scale(0.8);
            }
            .ps-gamecard_title {
                line-height: 12px;
            }
            .ps-game-catalog,
            .ps-list_statuses .ps-status_card .ps-progress_status_card {
                padding: 0 10px;
            }
            .ps-game-catalog .ps-game-catalog_header,
            .ps-game-catalog .ps-navigation-subcategory {
                margin-bottom: 20px;
            }
            .ps-game-catalog_header {
                padding: 0;
            }
            .ps-game-catalog_list-item:nth-child(odd) .ps-gamecard.x_show {
                transform: scale(1.35) translateX(10%);
                transition-delay: 7ms;
            }
            .ps-game-catalog_list-item:nth-child(2n) .ps-gamecard.x_show.x_no-animation,
            .ps-game-catalog_list-item:nth-child(odd) .ps-gamecard.x_show.x_no-animation {
                transform: none;
            }
            .ps-game-catalog_list-item:nth-child(2n) .ps-gamecard.x_show {
                transform: scale(1.35) translateX(-10%);
                transition-delay: 15ms;
            }
            header {
                min-height: 50px;
                height: auto;
                max-height: 100px;
                background-color: #161626;
            }
            header .ps-header_box {
                flex-direction: column;
                flex-wrap: wrap;
            }
            header .ps-main_logo {
                height: 50px;
            }
            header .ps-panel_non_authorized {
                display: flex;
                justify-content: center;
                box-sizing: border-box;
                height: 50px;
                width: 100%;
                border-top: 1px solid #363648;
            }
            header .ps-panel_non_authorized .ps-button_register {
                padding: 0 12px;
            }
            header .ps-link_enter {
                display: flex;
            }
            .ps-layer_games:after,
            .ps-layer_games:before,
            header .ps-btn_help span,
            header .ps-link_enter.x_login-btn {
                display: none;
            }
            header .ps-mobile_menu_btn {
                position: absolute;
                top: 8px;
                right: 12px;
            }
            .ps-layer_games {
                padding-top: 20px;
            }
            .ps-list_statuses .ps-status_card {
                width: 100%;
            }
            .ps-list_statuses .ps-status_card .ps-status_name {
                font-size: 14px;
            }
        }

        @media (max-width: 450px) {
            .ps-list_statuses > li {
                width: 50%;
            }
        }

        .ps-content__block {
            width: 80%;
            max-width: 1900px;
            margin: 20px auto;
        }

        .ps-content__title {
            text-align: center;
            font-size: 30px;
            line-height: 55px;
            color: #fe284a;
        }

        .ps-content__block h2 {
            text-align: left;
            font-size: 24px;
            line-height: 45px;
            color: #de593e;
        }

        .ps-content__block h3 {
            text-align: left;
            font-size: 20px;
            line-height: 35px;
            color: #e8ce3a;
        }

        .ps-content__block ol li,
        .ps-content__block p,
        .ps-content__block ul li {
            line-height: 1.5em;
            margin-bottom: 20px;
        }

        .ps-content__block ol,
        .ps-content__block ul {
            margin: 20px 0 20px 20px;
            list-style-type: square;
        }

        .ps-content__block table {
            margin: 15px auto;
            width: 90%;
            display: block;
        }

        .ps-content__block table tr td {
            height: auto;
            padding: 10px;
            border: 1px solid #fff;
        }

        img.ps-emoji,
        img.ps-wp-smiley {
            display: inline;
            border: none;
            box-shadow: none;
            height: 1em;
            width: 1em;
            margin: 0 0.07em;
            vertical-align: -0.1em;
            background: 0 0;
            padding: 0;
        }

        .ps-svg_question .ps-svg_color {
            fill: none;
            stroke: #646a87;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.5px;
        }

        /* Modern Button Styles */
        button, .ps-btn, .ps-button {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--gradient-primary);
            border: none;
            border-radius: var(--radius-lg);
            color: var(--text-primary);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        button:hover, .ps-btn:hover, .ps-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }

        /* Red Registration Button */
        .link_enter.x_registration-btn {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border: 2px solid #ef4444;
            color: #ffffff;
            font-weight: 700;
            padding: 0.875rem 2rem;
            border-radius: var(--radius-lg);
            transition: all var(--transition-normal);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            position: relative;
            overflow: hidden;
        }

        .ps-link_enter.x_registration-btn:hover {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            border-color: #dc2626;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4), 0 0 20px rgba(239, 68, 68, 0.3);
        }

        .ps-link_enter.x_registration-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
        }

        .ps-link_enter.x_registration-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .ps-link_enter.x_registration-btn:hover::before {
            left: 100%;
        }

        button:active, .ps-btn:active, .ps-button:active {
            transform: translateY(0);
            box-shadow: var(--shadow-md);
        }

        /* Modern Card Styles */
        .ps-card, .ps-content__block {
            background: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all var(--transition-normal);
        }

        .ps-card:hover, .ps-content__block:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(99, 102, 241, 0.3);
        }

        /* Modern Header Styles */
        header {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--shadow-lg);
        }

        /* Modern Navigation Styles */
        .ps-nav-categories_link {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 1rem;
            transition: all var(--transition-normal);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ps-nav-categories_link:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Modern Comment Styles */
        .ps-comment-body {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all var(--transition-normal);
        }

        .ps-comment-body:hover {
            border-color: rgba(99, 102, 241, 0.3);
            box-shadow: var(--shadow-md);
        }

        /* Admin Reply Styles */
        .ps-comment.depth-2 .ps-comment-body {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-left: 4px solid var(--primary-color);
            margin-left: 2rem;
            position: relative;
        }

        .ps-comment.depth-2 .ps-comment-body::before {
            content: "👨‍💼";
            position: absolute;
            top: -8px;
            left: -8px;
            background: var(--gradient-primary);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            box-shadow: var(--shadow-md);
        }

        .ps-comment.depth-2 .ps-comment-author .ps-fn {
            color: var(--primary-color);
            font-weight: 600;
        }

        .ps-comment.depth-2 .ps-comment-meta a {
            color: var(--primary-light);
            font-weight: 500;
        }

        .ps-comment.depth-2 .ps-comment-body p {
            color: var(--text-primary);
            font-style: italic;
            position: relative;
            padding-left: 1rem;
        }

        .ps-comment.depth-2 .ps-comment-body p::before {
            content: "💬";
            position: absolute;
            left: -0.5rem;
            top: 0;
            font-size: 14px;
        }

        /* Admin Reply Hover Effect */
        .ps-comment.depth-2 .ps-comment-body:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.2);
            transform: translateX(4px);
        }

        /* Beautiful Avatar Styles */
        .ps-beautiful-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid rgba(99, 102, 241, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all var(--transition-normal);
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: #ffffff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
        }

        .ps-beautiful-avatar:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
            border-color: var(--primary-color);
        }

        /* Admin Avatar Special Style */
        .ps-beautiful-avatar[data-is-admin="true"] {
            background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
            border-color: rgba(245, 158, 11, 0.5);
        }

        .ps-beautiful-avatar[data-is-admin="true"]:hover {
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
            border-color: #f59e0b;
        }

        /* Скрываем оригинальные аватары */
        .ps-comment-author .ps-avatar {
            display: none !important;
        }

        /* Градиенты для разных имен */
        .ps-beautiful-avatar[data-name*="Ирина"], .ps-beautiful-avatar[data-name*="Анна"], .ps-beautiful-avatar[data-name*="Ольга"], .ps-beautiful-avatar[data-name*="Елена"], .ps-beautiful-avatar[data-name*="Наталья"] {
            background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
        }

        .ps-beautiful-avatar[data-name*="Владимир"], .ps-beautiful-avatar[data-name*="Михаил"], .ps-beautiful-avatar[data-name*="Сергей"], .ps-beautiful-avatar[data-name*="Дмитрий"] {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        }

        .ps-beautiful-avatar[data-name*="Александр"], .ps-beautiful-avatar[data-name*="Алексей"], .ps-beautiful-avatar[data-name*="Андрей"] {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .ps-beautiful-avatar[data-name*="Николай"], .ps-beautiful-avatar[data-name*="Игорь"], .ps-beautiful-avatar[data-name*="Павел"] {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        }

        .ps-beautiful-avatar[data-name*="Юрий"], .ps-beautiful-avatar[data-name*="Роман"], .ps-beautiful-avatar[data-name*="Артем"] {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        }

        .ps-beautiful-avatar[data-name*="Максим"], .ps-beautiful-avatar[data-name*="Денис"], .ps-beautiful-avatar[data-name*="Кирилл"] {
            background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
        }

        .ps-beautiful-avatar[data-name*="Евгений"], .ps-beautiful-avatar[data-name*="Анатолий"], .ps-beautiful-avatar[data-name*="Валентин"] {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        }

        /* Back to Top Button */
        .ps-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .ps-back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .ps-back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        }

        .ps-back-to-top:active {
            transform: translateY(-1px);
        }

        .ps-back-to-top svg {
            transition: transform var(--transition-normal);
        }

        .ps-back-to-top:hover svg {
            transform: translateY(-2px);
        }

        /* Mobile Back to Top Button */
        @media (max-width: 768px) {
            .ps-back-to-top {
                bottom: 20px;
                right: 20px;
                width: 48px;
                height: 48px;
            }

            .ps-back-to-top svg {
                width: 20px;
                height: 20px;
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
        }

        @media (max-width: 480px) {
            .ps-back-to-top {
                bottom: 15px;
                right: 15px;
                width: 44px;
                height: 44px;
            }

            .ps-back-to-top svg {
                width: 18px;
                height: 18px;
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
        }

        /* Дополнительные стили для обеспечения видимости иконки */
        .ps-back-to-top svg {
            display: block;
            visibility: visible;
            opacity: 1;
            pointer-events: none;
        }

        .ps-back-to-top svg path {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Текстовая иконка как резерв */
        .ps-back-to-top-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            font-weight: bold;
            color: currentColor;
            display: none;
            pointer-events: none;
            line-height: 1;
        }

        /* На мобильных устройствах показываем текстовую иконку */
        @media (max-width: 768px) {
            .ps-back-to-top svg {
                display: none !important;
            }
            
            .ps-back-to-top-text {
                display: block !important;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .ps-back-to-top-text {
                font-size: 16px;
            }
        }

        /* Thread Indentation */
        .ps-comment.depth-2 {
            margin-left: 1rem;
            border-left: 2px solid rgba(99, 102, 241, 0.2);
            padding-left: 1rem;
        }

        /* Admin Avatar Styling */
        .ps-comment.depth-2 .ps-comment-author img {
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
        }

        /* Admin Reply Animation */
        .ps-comment.depth-2 {
            animation: slideInRight 0.5s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Admin Replies */
        @media (max-width: 768px) {
            .ps-comment.depth-2 .ps-comment-body {
                margin-left: 1rem;
            }
            
            .ps-comment.depth-2 {
                margin-left: 0.5rem;
                padding-left: 0.5rem;
            }
        }

       /* Modern FAQ Styles */
.ps-faq.content {
    
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

 .ps-faq.content h2 {
     font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     color: #ffffff; /* белый текст без градиента */
     text-align: center;
     font-size: 2rem;
     margin-bottom: 2rem;
     font-weight: 800;
     letter-spacing: -0.02em;
     text-shadow: none; /* убираем все тени */
 }

.ps-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ps-faq-item {
    background: transparent;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.ps-faq-item:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: var(--shadow-md);
}

.ps-faq-item.is-open {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.3);
}

 .ps-faq-item.is-open .ps-faq-toggle {
     background: #5a5a7a;
     border-color: var(--primary-color);
     box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
 }


 .ps-faq-toggle {
     width: 100%;
     background: #3a3a5a; 
     border: 2px solid rgba(99, 102, 241, 0.7);
     padding: 1.5rem;
     text-align: left;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: all var(--transition-normal);
     color: #ffffff;
     border-radius: var(--radius-lg);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
 }

 .ps-faq-toggle:hover {
     background: #4a4a6a; 
     border-color: rgba(99, 102, 241, 0.9);
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
 }

 .ps-faq-q {
     font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     font-size: 1.2rem;
     font-weight: 700;
     color: #ffffff; 
     flex: 1;
     margin-right: 1rem;
     text-shadow: none; 
     letter-spacing: -0.01em;
 }

.ps-faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
    font-weight: bold;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ps-faq-item.is-open .ps-faq-icon {
    transform: rotate(180deg);
}


 .ps-faq-panel {
     background: var(--bg-secondary);
     padding: 0 1.5rem 1.5rem;
     color: #ffffff;
     line-height: 1.6;
     max-height: 0;
     overflow: hidden;
     transition: all var(--transition-normal);
     border-radius: 0 0 var(--radius-lg) var(--radius-lg);
 }

.ps-faq-item.is-open .ps-faq-panel {
    max-height: 500px;
    padding-top: 1rem;
}

 .ps-faq-panel p {
     font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     margin: 0;
     font-size: 1rem;
     color: #ffffff; 
     padding: 0.5rem 0;
     font-weight: 400;
     line-height: 1.6;
     text-shadow: none; 
 }


.ps-faq-item:nth-child(1) { animation-delay: 0.1s; }
.ps-faq-item:nth-child(2) { animation-delay: 0.2s; }
.ps-faq-item:nth-child(3) { animation-delay: 0.3s; }
.ps-faq-item:nth-child(4) { animation-delay: 0.4s; }
.ps-faq-item:nth-child(5) { animation-delay: 0.5s; }
.ps-faq-item:nth-child(6) { animation-delay: 0.6s; }
.ps-faq-item:nth-child(7) { animation-delay: 0.7s; }
.ps-faq-item:nth-child(8) { animation-delay: 0.8s; }
.ps-faq-item:nth-child(9) { animation-delay: 0.9s; }
.ps-faq-item:nth-child(10) { animation-delay: 1.0s; }

        @media (max-width: 768px) {
            .ps-faq.content {
                padding: 1rem;
                margin: 1rem 0;
            }
            
            .ps-faq.content h2 {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .ps-faq-toggle {
                padding: 1rem;
            }
            
            .ps-faq-q {
                font-size: 1rem;
                margin-right: 0.5rem;
            }
            
            .ps-faq-panel {
                padding: 0 1rem 1rem;
            }
            
            .ps-faq-icon {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }

            /* Mobile Red Registration Button */
            .ps-link_enter.x_registration-btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Carousel Styles */
        .ps-carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .ps-carousel_list {
            display: flex;
            transition: transform 0.3s ease-in-out;
            width: 100%;
            height: 100%;
        }

        .ps-carousel_item {
            flex: 0 0 100%;
            width: 100%;
            height: auto;
            position: relative;
        }

        .ps-carousel_img {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .ps-carousel_img .ps-banner {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .ps-carousel_megawin-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
        }

        .ps-carousel_megawin-text {
            background: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: var(--radius-lg);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: clamp(1.2rem, 3vw, 2rem);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ps-carousel_text {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            text-align: center;
            z-index: 2;
        }

        .ps-carousel_text .ps-text_part {
            display: block;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
            margin-bottom: 0.5rem;
        }

        .ps-carousel_text .ps-highlighting {
            display: inline-block;
            background: var(--gradient-primary);
            color: #ffffff;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-lg);
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: clamp(1rem, 2vw, 1.2rem);
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-md);
        }

        .ps-carousel_text .ps-highlighting:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }


        /* Responsive Carousel */
        @media (max-width: 768px) {
            .ps-carousel_megawin-text {
                padding: 0.75rem 1.5rem;
                font-size: clamp(1rem, 4vw, 1.5rem);
            }

            .ps-carousel_text {
                bottom: 1rem;
                left: 1rem;
                right: 1rem;
            }

            .ps-carousel_text .ps-text_part {
                font-size: clamp(0.9rem, 3vw, 1.2rem);
            }

            .ps-carousel_text .ps-highlighting {
                padding: 0.5rem 1rem;
                font-size: clamp(0.8rem, 2.5vw, 1rem);
            }

        }

        @media (max-width: 480px) {
            .ps-carousel_megawin-wrapper {
                padding: 0 1rem;
            }

            .ps-carousel_megawin-text {
                padding: 0.5rem 1rem;
                font-size: clamp(0.9rem, 5vw, 1.3rem);
            }

            .ps-carousel_text .ps-text_part {
                font-size: clamp(0.8rem, 4vw, 1.1rem);
                margin-bottom: 0.25rem;
            }

            .ps-carousel_text .ps-highlighting {
                padding: 0.4rem 0.8rem;
                font-size: clamp(0.7rem, 3vw, 0.9rem);
            }
        }

        /* Beautiful Blockquote Styles */
        blockquote {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
            border-left: 4px solid var(--primary-color);
            border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
            margin: 2rem 0;
            padding: 1.5rem 2rem;
            position: relative;
            box-shadow: var(--shadow-md);
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        blockquote::before {
            content: "💡";
            position: absolute;
            top: -8px;
            left: -8px;
            background: var(--gradient-primary);
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            box-shadow: var(--shadow-md);
        }

        blockquote p {
            margin: 0;
            color: var(--text-primary);
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        blockquote strong {
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Responsive Blockquote */
        @media (max-width: 768px) {
            blockquote {
                margin: 1.5rem 0;
                padding: 1rem 1.5rem;
                border-radius: 0 var(--radius-md) var(--radius-md) 0;
            }

            blockquote::before {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            blockquote p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            blockquote {
                margin: 1rem 0;
                padding: 0.75rem 1rem;
            }

            blockquote::before {
                width: 24px;
                height: 24px;
                font-size: 12px;
            }

            blockquote p {
                font-size: 0.9rem;
            }
        }

        /* Modern Table Styles */
        .ps-content table {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Modern Link Styles */
        .ps-content a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all var(--transition-fast);
            position: relative;
        }

        .ps-content a:hover {
            color: var(--primary-light);
            text-shadow: 0 0 8px rgba(99, 102, 241, 0.5);
        }

        .ps-content a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: var(--gradient-primary);
            transition: width var(--transition-normal);
        }

        .ps-content a:hover::after {
            width: 100%;
        }

        /* Modern Image Styles */
        .ps-content .ps-img_box img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
        }

        .ps-content .ps-img_box img:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-xl);
        }

        /* Modern Form Styles */
        input, textarea, select {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            padding: 0.75rem 1rem;
            transition: all var(--transition-normal);
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        /* Modern Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: var(--radius-md);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Modern Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .ps-animate-fadeInUp {
            animation: fadeInUp 0.6s ease-out;
        }

        .ps-animate-pulse {
            animation: pulse 2s infinite;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .ps-content__block {
                width: 95%;
                padding: 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .ps-card {
                padding: 1rem;
            }
        }
        .ps-link_enter.x_registration-btn {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border: 2px solid #ef4444;
            color: #ffffff;
            font-weight: 700;
            padding: 0.875rem 2rem;
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }
        @media (max-width: 768px) {
            .ps-link_enter.x_registration-btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Стили для блока достоинств и преимуществ Vavada */
        .ps-advantages-section {
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
            border-radius: var(--radius-2xl);
            padding: 3rem 2rem;
            margin: 3rem 0;
            border: 1px solid rgba(99, 102, 241, 0.2);
            box-shadow: var(--shadow-xl), 0 0 40px rgba(99, 102, 241, 0.1);
            position: relative;
            overflow: hidden;
        }

        .ps-advantages-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
        }

        .ps-advantages-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .ps-advantages-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .ps-advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .ps-advantage-card {
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .ps-advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .ps-advantage-card:hover::before {
            opacity: 0.05;
        }

        .ps-advantage-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.3);
            border-color: rgba(99, 102, 241, 0.4);
        }

        .ps-advantage-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .ps-advantage-card:hover .ps-advantage-icon {
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(99, 102, 241, 0.5);
        }

        .ps-advantage-icon svg {
            width: 40px;
            height: 40px;
            color: white;
            stroke-width: 2;
        }

        .ps-advantage-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .ps-advantage-card-text {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 1rem;
            position: relative;
            z-index: 2;
        }

        /* Специальные цвета для разных карточек */
        .ps-advantage-slots .ps-advantage-icon {
            background: var(--gradient-secondary);
        }

        .ps-advantage-crypto .ps-advantage-icon {
            background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
        }

        .ps-advantage-no-commission .ps-advantage-icon {
            background: var(--gradient-accent);
        }

        .ps-advantage-license .ps-advantage-icon {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        }

        .ps-advantage-experience .ps-advantage-icon {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }

        .ps-advantage-bonuses .ps-advantage-icon {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
        }

        .ps-advantage-security .ps-advantage-icon {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .ps-advantage-live .ps-advantage-icon {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        }

        /* Адаптивность */
        @media (max-width: 1200px) {
            .ps-advantages-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .ps-advantages-section {
                padding: 2rem 1rem;
                margin: 2rem 0;
            }

            .ps-advantages-title {
                font-size: 2rem;
            }

            .ps-advantages-subtitle {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .ps-advantages-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .ps-advantage-card {
                padding: 1.5rem;
            }

            .ps-advantage-icon {
                width: 70px;
                height: 70px;
            }

            .ps-advantage-icon svg {
                width: 35px;
                height: 35px;
            }

            .ps-advantage-card-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .ps-advantages-section {
                padding: 1.5rem 0.5rem;
            }

            .ps-advantages-title {
                font-size: 1.8rem;
            }

            .ps-advantage-card {
                padding: 1.25rem;
            }
        }

        /* Анимация пульсации для карточек преимуществ */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Исправление горизонтальной прокрутки на мобильных */
        @media (max-width: 768px) {
            /* Убеждаемся, что контейнеры не выходят за границы */
            .ps-header_and_main,
            .ps-main,
            .ps-content__block,
            .ps-carousel,
            .ps-beam-categories {
                max-width: 100%;
                overflow-x: hidden;
            }
            
            /* Исправляем карусель */
            .ps-carousel {
                margin-left: 0;
                margin-right: 0;
            }
            
            .ps-carousel_item {
                flex-shrink: 0;
                width: 100%;
            }
            
            /* Исправляем текст в карусели */
            .ps-carousel_text {
                padding: 0 1rem;
                max-width: 100%;
                overflow: hidden;
            }
            
            .ps-carousel_list .ps-text_part {
                white-space: normal;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            
            /* Исправляем навигацию категорий */
            .ps-nav-categories_list {
                flex-wrap: nowrap;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            .ps-nav-categories_list::-webkit-scrollbar {
                display: none;
            }
            
            .ps-nav-categories_item {
                flex-shrink: 0;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            /* Дополнительные исправления для маленьких экранов */
            .ps-carousel_text {
                padding: 0 0.5rem;
            }
            
            .ps-nav-categories_item {
                min-width: 80px;
            }
            
            /* Убираем отступы, которые могут вызывать прокрутку */
            .ps-header_box {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            /* Исправляем таблицу на маленьких экранах */
            .ps-content table {
                width: 100%;
                max-width: 100%;
                overflow-x: auto;
                display: table;
                table-layout: auto;
                border-collapse: collapse;
            }
            
            .ps-content table tbody {
                display: table-row-group;
                width: 100%;
            }
            
            .ps-content table tr {
                display: table-row;
                width: 100%;
            }
            
            .ps-content table td {
                padding: 8px 12px;
                font-size: 0.85rem;
                word-wrap: break-word;
                word-break: break-word;
                max-width: none;
                white-space: normal;
                border-bottom: 1px solid #252536;
                vertical-align: top;
            }
            
            .ps-content table td:first-child {
                font-weight: 600;
                min-width: 120px;
                width: 40%;
            }
            
            .ps-content table td:last-child {
                width: 60%;
            }
        }
        
        /* Дополнительные стили для очень маленьких экранов */
        @media (max-width: 480px) {
            .ps-content table td {
                padding: 6px 8px;
                font-size: 0.8rem;
            }
            
            .ps-content table td:first-child {
                min-width: 100px;
                width: 35%;
            }
            
            .ps-content table td:last-child {
                width: 65%;
            }
        }