*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

nav,
footer,
header,
aside,
main {
    display: block;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

ul,
ol {
    padding-left: 1.5em;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: button;
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    appearance: textfield;
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

@font-face {
    font-display: swap;
    font-family: "Rubik";
    font-style: normal;
    font-weight: 400;
    src: url("../font/rubik400.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-family: "Rubik";
    font-style: italic;
    font-weight: 400;
    src: url("../font/rubik400it.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-family: "Rubik";
    font-style: normal;
    font-weight: 500;
    src: url("../font/rubik500.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-family: "Rubik";
    font-style: normal;
    font-weight: 700;
    src: url("../font/rubik700.woff") format("woff");
}

body {
    font-family: "Rubik", sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    position: relative;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.page {
    position: relative;
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-top: 80px;
}

.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

._lock {
    overflow: hidden;
}

@media (max-width:991.98px) {
    .main {
        padding-top: 120px;
    }

    .container {
        max-width: 1280px;
        padding: 0 15px;
    }
}

@media (pointer:fine) {

    a,
    button,
    input[type="submit"],
    .pic {
        cursor: pointer;
    }
}

@media (pointer:coarse) {

    a,
    button,
    input[type="submit"],
    .pic {
        cursor: default;
        -webkit-tap-highlight-color: transparent;
    }
}

.go-top {
    position: fixed;
    z-index: 5;
    bottom: 20px;
    right: 20px;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.go-top._active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.go-top a {
    display: block;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.go-top img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.btn {
    background: none;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 15px 30px;
    min-width: 150px;
    border-radius: 25px;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-prim {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-primApp{
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 20px rgba(240, 147, 251, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn:active {
    transform: scale(0.95);
}

.error-404 {
    text-align: center;
    margin: 40px 0;
    color: #2c3e50;
}

.error-404 h1 {
    font-size: 34px;
    line-height: 44px;
    margin: 0 0 15px 0;
}

.error-404 p {
    font-size: 18px;
    line-height: 22px;
}

.error-404 a {
    color: #667eea;
}

@media (max-width:767.98px) {
    .error-404 h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .error-404 p {
        font-size: 16px;
        line-height: 20px;
    }
}

.header {
    position: fixed;
    z-index: 5;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header .container {
    max-width: 1390px;
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 80px;
}

.header-logo a {
    display: block;
    text-decoration: none;
    padding: 8px 0;
}

.header-logo img {
    display: block;
    max-width: 60px;
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 1px 2px 2px #ccc;
}

.header-burger {
    background: none;
    border: none;
    display: none;
}

.header-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-btn {
    min-width: 180px;
}

.header-btn:not(:last-child) {
    margin-right: 15px;
}

@media (min-width:991.98px) {
    .header-logo {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 70px;
    }
}

@media (max-width:991.98px) {
    .header-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .header-text{
        margin-left: 30px;
    }

    .header-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        /* justify-content: space-between; */
        justify-content: flex-start
    }

    .header-burger {
        display: block;
    }

    .header-burger img {
        display: block;
        width: 40px;
        height: 40px;
    }

    .header-btns {
        width: 100%;
        margin-bottom: 8px;
    }

    .header-btn {
        min-height: unset;
        min-width: unset;
        padding: 12px 25px;
        width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.footer {
    padding: 40px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
}

.footer .logos-list {
    margin-bottom: 30px;
}

.footer-copyright {
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav .menu {
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-nav .menu-item a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    padding: 8px 15px;
    display: inline-block;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 20px;
}

.footer-nav .menu-item a:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.footer-nav .menu-item.current>a {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

@media (max-width:767.98px) {
    .footer-nav .menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.content-inner {
    color: #2c3e50;
    font-size: 18px;
    line-height: 1.8;
    padding: 20px 0;
}

.content-inner p {
    padding: 8px 0;
    margin-bottom: 15px;
}

.content-inner h1 {
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.content-inner h2 {
    padding: 15px 0;
    margin: 25px 0 15px;
    border-bottom: 3px solid #667eea;
    font-size: 32px;
    line-height: 1.3;
    color: #2c3e50;
    font-weight: 600;
}

.content-inner h3 {
    padding: 10px 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #34495e;
    font-weight: 600;
}

.content-inner ul,
.content-inner ol {
    padding-bottom: 15px;
}

.content-inner li {
    padding: 5px 0;
    line-height: 1.6;
}

.content-inner h2,
.content-inner h3,
.content-inner span {
    scroll-margin: 80px 0 0;
}

.content-inner a:not(.btn) {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-inner a:not(.btn):hover {
    color: #764ba2;
}

.btn-cnt {
    display: block;
    margin: 20px auto;
    padding: 15px 35px;
    font-size: 20px;
    line-height: 1.2;
    min-width: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 20px rgba(240, 147, 251, 0.4);
}

.btn-cnt:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(240, 147, 251, 0.6);
}

.btn-cnt:active {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.content-image {
    border-radius: 30px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content-image>picture img {
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
    margin: 0;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.content-image:hover>picture img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.content-image .overlay {
    position: relative;
    z-index: 1;
    max-width: 90%;
    padding: 40px 30px;
    margin: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.content-image .overlay p {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.content-image .overlay p span {
    color: #f093fb;
    text-shadow: 0 2px 4px rgba(240, 147, 251, 0.5);
}

.content-image .overlay .btn {
    margin: 0 auto;
}

@media (max-width:1199.98px) {
    .content-image {
        min-height: 400px;
    }
}

@media (max-width:991.98px) {
    .content-image {
        min-height: 350px;
    }

    .content-image .overlay {
        padding: 25px;
    }

    .content-image .overlay p {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width:767.98px) {
    .content-image {
        min-height: 300px;
    }

    .content-image .overlay p {
        font-size: 28px;
        line-height: 1.2;
    }
}

@media (max-width:599.98px) {
    .content-image {
        justify-content: stretch;
        align-items: stretch;
        flex-direction: column;
    }

    .content-image .overlay {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.content-nav._active .open {
    display: none;
}

.content-nav._active .close {
    display: block;
}

.content-nav._active .nav-inner {
    height: auto;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.content-nav .nav-inner {
    overflow: hidden;
    height: 0;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.content-nav .nav-toggle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 15px 25px;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.content-nav .nav-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.content-nav .open {
    display: block;
}

.content-nav .close {
    display: none;
}

.content-nav .nav-list {
    padding: 0;
    border: 3px solid #667eea;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    -webkit-columns: 350px 2;
    -moz-columns: 350px 2;
    columns: 350px 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-nav .nav-list li {
    list-style-type: none;
    margin-bottom: 10px;
}

.content-nav .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    padding: 8px 15px;
    font-size: 16px;
    line-height: 1.4;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.content-nav .nav-list a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.content-nav .nav-list a:before {
    content: "▶";
    font-size: 14px;
    padding-right: 8px;
    color: #667eea;
}

.acc-list {
    padding: 0 !important;
    list-style-type: none;
}

.acc-item .acc-inner {
    overflow: hidden;
    width: 100%;
    border: 3px solid #667eea;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 20px;
    color: #2c3e50;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.acc-item .acc-inner._active .acc-body {
    height: auto;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.acc-item .acc-inner._active .arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.acc-item .acc-head {
    padding: 20px;
    width: 100%;
    text-align: left;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acc-item .acc-head:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.acc-item .acc-head h3 {
    margin: 0;
    padding: 0;
    margin-right: 15px;
    font-size: 20px;
    font-weight: 600;
}

.acc-item .acc-head .arrow {
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.acc-item .acc-head .arrow img {
    display: block;
    width: 25px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.acc-item .acc-body {
    overflow: hidden;
    height: 0;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.acc-item .acc-body p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    padding: 25px;
    line-height: 1.6;
}

@media (max-width:991.98px) {
    .acc-item .acc-head {
        padding: 15px;
    }

    .acc-item .acc-head h3 {
        font-size: 18px;
    }

    .acc-item .acc-body p {
        padding: 20px;
    }
}

@media (max-width:767.98px) {
    .acc-item .acc-head {
        padding: 12px;
    }

    .acc-item .acc-head h3 {
        font-size: 16px;
    }

    .acc-item .acc-body p {
        padding: 15px;
        font-size: 15px;
    }
}

.games-list {
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
}

.game {
    padding: 0 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 16.666%;
    max-width: 300px;
}

.game-inner {
    margin: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.game-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-image img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.game-overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.game-inner:hover .game-overlay {
    opacity: 1;
}

.game-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

@media (max-width:1199.98px) {
    .game {
        width: 25%;
    }
}

@media (max-width:991.98px) {
    .game {
        width: 33.333%;
    }
}

@media (max-width:767.98px) {
    .game-overlay {
        display: none;
    }
}

@media (max-width:599.98px) {
    .game {
        width: 50%;
    }
}

.promo-list {
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
}

.promo {
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.333%;
}

.promo-inner {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 25px;
    margin: 10px;
    background: #fff;
    color: #2c3e50;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.promo-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.promo-inner h3 {
    text-align: center;
    margin: 0 0 15px 0;
    color: #667eea;
    font-size: 20px;
    font-weight: 600;
}

.promo-text {
    text-align: center;
    line-height: 1.6;
    color: #5a6c7d;
}

@media (max-width:1199.98px) {
    .promo {
        width: 50%;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width:767.98px) {
    .promo {
        width: 100%;
    }
}

.nav-toggle > .open{
    display: flex;
    align-items: center;
}

/* FAQ 纯CSS折叠 */
.acc-toggle{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.acc-inner .acc-body{
    /* 默认收起：原样式已设置 height:0/opacity:0/transformY(-20px) 与过渡 */
}

/* 展开：当 checkbox 选中时激活与 _active 一致的样式 */
.acc-toggle:checked ~ .acc-body{
    height: auto;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* 箭头旋转效果 */
.acc-toggle:checked ~ .acc-head .arrow,
.acc-toggle:checked ~ label.acc-head .arrow{
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* 兼容已有 _active 机制（如后续需要JS或其他方式切换） */
.acc-inner._active .acc-body{
    height: auto;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* 移动端导航样式 */
.mnav {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    opacity: 0;
    visibility: hidden;
}

.mnav._active {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
    visibility: visible;
}

.mnav._active .mnav-inner {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mnav .menu {
    width: 100%;
    list-style-type: none;
    padding: 0 15px;
}

.mnav .menu-item {
    position: relative;
    width: 100%;
    padding: 0;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    margin-bottom: 5px;
}

.mnav .menu-item._active {
    background: rgba(102, 126, 234, 0.2);
}

.mnav .menu-item a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 1.2;
    text-transform: capitalize;
    font-weight: 500;
    text-decoration: none;
    color: #ecf0f1;
    padding: 15px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mnav .menu-item a:hover {
    background: rgba(102, 126, 234, 0.3);
    color: #f093fb;
}

.mnav .menu-item.current>a {
    background: rgba(102, 126, 234, 0.4);
    color: #f093fb;
}

.mnav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    overflow: auto;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    -webkit-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    transform: translateX(-400px);
}

.mnav-close {
    position: absolute;
    z-index: 1;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 15px;
    padding: 10px;
}

.mnav-close img {
    display: block;
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.mnav-logo {
    width: 100%;
    padding: 20px;
}

.mnav-logo a {
    display: flex;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.mnav-logo img {
    display: block;
    max-width: 120px;
    width: 100%;
    height: auto;
}

@media (min-width:991.98px) {
    .header,
    .main,
    .footer {
        padding-left: 0;
    }

    .mnav {
        display: none;
    }
}

@media (max-width:991.98px) {
    .mnav-logo a {
        padding: 15px 0;
    }
}

@media (max-width:479.98px) {
    .mnav-inner {
        max-width: 100%;
    }
}

/* 响应式设计优化 */
@media (max-width:991.98px) {
    .content-inner {
        font-size: 16px;
        line-height: 1.6;
    }

    .content-inner h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .content-inner h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .content-inner h3 {
        font-size: 20px;
    }

    .content-inner h2,
    .content-inner h3,
    .content-inner span {
        scroll-margin: 120px 0 0;
    }
}

@media (max-width:767.98px) {
    .content-inner h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .content-inner h2 {
        font-size: 22px;
        line-height: 1.3;
    }
}

/* 支付方式样式 */
.logos-list {
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.logos-item {
    padding: 0 !important;
    list-style-type: none !important;
}

.logos-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logos-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.logos-inner img {
    display: block;
    width: 120px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width:991.98px) {
    .logos-inner {
        padding: 10px;
    }

    .logos-inner img {
        width: 100px;
        height: 35px;
    }
}

/* 选择语言样式 */
.select_lang {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
    font-size: 16px;
    user-select: none;
}

.select_lang img {
    display: block;
    width: 25px;
    height: 25px;
    max-width: 100%;
    border-radius: 100%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.5);
    margin-right: 10px;
}

.list_lang {
    position: absolute;
    z-index: 1;
    max-width: 400px;
    width: 100%;
    left: 50%;
    bottom: 100%;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transform: translate(-50%, 40px);
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
}

.select_lang.col-3 .list_lang {
    max-width: 500px;
}

.select_lang.col-1 .list_lang {
    max-width: 250px;
}

.select_lang._active .list_lang {
    height: auto;
    opacity: 1;
    transform: translate(-50%, 0);
}

.list_lang ul {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    max-height: 350px;
    overflow: hidden;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.list_lang ul li {
    list-style-type: none;
    width: 50%;
}

.select_lang.col-3 .list_lang ul li {
    width: 33.333%;
}

.select_lang.col-1 .list_lang ul li {
    width: 100%;
}

.list_lang a {
    display: flex;
    align-items: center;
    padding: 12px;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list_lang a:hover {
    background: rgba(102, 126, 234, 0.3);
    color: #f093fb;
    transform: translateX(5px);
}

.btn_lang {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    border: none;
    padding: 15px 25px;
    min-width: 200px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn_lang:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn_lang span {
    margin-right: 10px;
    font-weight: 500;
}

.btn_lang svg {
    display: block;
    fill: #ecf0f1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    padding: 4px;
    margin-left: auto;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.select_lang._active .btn_lang svg {
    transform: rotate(0deg);
}

@media (max-width:599.98px) {
    .select_lang.col-3 .list_lang {
        max-width: 400px;
    }

    .select_lang.col-3 .list_lang ul li {
        width: 50%;
    }
}

@media (max-width:359.98px) {
    .list_lang a {
        padding: 8px;
    }

    .list_lang {
        max-width: 250px !important;
    }

    .list_lang ul li {
        width: 100% !important;
    }
}

/* 联系表单样式 */
.contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form span {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 15px;
    line-height: 1.4;
    border-radius: 10px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
    resize: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: #6c757d;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    color: #6c757d;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
    color: #6c757d;
}

.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
    color: #6c757d;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6c757d;
}

.contact-form button {
    padding: 15px 35px;
    margin: 20px auto 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* 复制按钮样式 */
.button-copy {
    display: block;
    margin: 15px auto 10px;
    padding: 15px 25px;
    max-width: 200px;
    width: 100%;
    position: relative;
    border: 2px dashed #667eea;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #667eea;
    background: #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.button-copy:hover,
.button-copy:focus {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.copiedtext {
    pointer-events: none;
    padding: 10px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(-1em);
    color: #2c3e50;
    transition: all 0.5s;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.copied .copiedtext {
    opacity: 1;
    transform: translateY(-4em);
}

.button-small {
    text-align: center;
    display: block;
    margin-top: -5px;
}

.promocode {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    margin: 10px 0;
}

/* 表格样式 */
table {
    border-collapse: collapse;
    color: #2c3e50;
    margin: 20px auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.table-wrap {
    display: block;
    overflow-x: auto;
    margin: 20px 0;
}

thead tr {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

thead tr th:not(:last-child),
thead tr td:not(:last-child),
tbody tr:nth-child(even) th:not(:last-child),
tbody tr:nth-child(even) td:not(:last-child) {
    border-right: 1px solid #dee2e6;
}

tbody tr:nth-child(odd) {
    background-color: #fff;
}

tbody tr:nth-child(odd) th:not(:last-child),
tbody tr:nth-child(odd) td:not(:last-child) {
    border-right: 1px solid #dee2e6;
}

table th,
table td {
    padding: 15px;
    text-align: left;
}

table p {
    padding: 0 !important;
    margin: 0 !important;
}

/* 列布局样式 */
.columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0;
}

.columns .column {
    padding: 15px;
    width: 33.333%;
    background: #fff;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.columns .column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.columns.col-2 .column {
    width: 50%;
}

@media (max-width:1199.98px) {
    .columns .column {
        width: 50%;
    }
}

@media (max-width:599.98px) {
    .columns .column {
        width: 100% !important;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 添加动画类 */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 工具提示样式 */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2c3e50 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* 响应式图片 */
img {
    max-width: 100%;
    height: auto;
}

/* 打印样式 */
@media print {
    .header,
    .footer,
    .go-top,
    .btn {
        display: none !important;
    }
    
    body {
        background: #fff !important;
        color: #000 !important;
    }
    
    .content-inner {
        color: #000 !important;
    }
}