/*********************************************
 *    Developer: https://t.me/saninhyuga     *
 *    WebSite: Evicted SoftWare              *
 *    Version: v0.6                          *
 ********************************************/

/*==========================
       FONTS
==========================*/

@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    src: url(Montserrat-Medium.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    src: url(Montserrat-SemiBold.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    src: url(Montserrat-Bold.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 800;
    src: url(Montserrat-ExtraBold.ttf) format("truetype");
}


/*==========================
          GLOBAL
==========================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

/* Undo global reset for ChatBro widget */
[id*="chatbro"] *,
[class*="chatbro"] * {
    all: revert;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #27292e;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: #1d1e23;
    position: relative;
    min-height: 100%;
    top: 0px;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .4s all;
}

a:hover {
    color: #fff !important;
}

.container {
    width: 1400px;
    max-width: 100%;
    padding: 0 40px;
    margin: auto;
}

.link,
.link i {
    cursor: pointer;
    transition: .4s all;
}

.link:hover,
.link:hover i {
    color: #fff !important;
}

.btn-new-style {
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    transition: .25s all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    background: #ff9000;
    color: #000;
}

.btn-new-style span {
    position: relative;
    color: #000;
    transition: color 0.3s ease;
}

.btn-new-style::before {
    display: none;
}

.btn-new-style:hover span {
    color: #fff !important;
}

.btn-new-style:hover {
    box-shadow: 0 5px 20px rgba(255, 144, 0, 0.4);
}

.btn-new-style.outline {
    background: 0;
    border: 2px solid #27292e;
    color: #848a9a;
}

.btn-new-style.outline::before {
    opacity: 0;
}

.btn-new-style.outline:hover {
    color: #fff;
}

.btn-new-style.outline:hover::before {
    opacity: 1;
}

.btn {
    padding: 20px 25px;
    border-radius: 10px;
    background: orange;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .4s all;
}

.btn.purple {
    background: #ff9000;
    font-weight: 600;
}

.btn.purple:hover {
    background: #ff9000;
}

.btn.gray {
    background: #25242a;
    color: #c2c6d7;
    cursor: pointer;
}

.btn.gray:hover {
    color: #fff;
    background: #27292e;
}

.btn.red {
    color: rgba(255, 255, 255, .7);
    background: #af031d;
}

.btn.red:hover {
    background: #d90424;
    color: #fff;
}

.btn.green {
    background: #2dc312;
    cursor: pointer;
}

.btn.green:hover {
    background: #32d714;
}

input,
textarea {
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    resize: none;
    background: 0;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, .2);
}

.input .disabled {
    background: #1a1d23 !important;
    border-color: #1a1d23 !important;
}

input:disabled {
    color: rgba(255, 255, 255, .5) !important;
    background: #1a1d23 !important;
    border-color: #1a1d23 !important;
}

.-navigation-links {
    margin-bottom: 40px;
    color: #464850;
}

.-navigation-links .fa-light.fa-angle-right {
    margin: 0 10px;
}

.-navigation-links .fa-light.fa-house-heart {
    margin-right: 5px;
}

.-navigation-links a.active {
    color: #fff;
}

/*==========================
       MODAL WINDOW
==========================*/

/* Mobile hero — hidden on desktop */
.mobile-hero {
    display: none;
}

/* Menu active state */
.mobile-navbar a.active,
header .menu a.active {
    color: #ff9000 !important;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100vh;
    width: 100%;
    padding-top: 200px;
    -ms-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: .5s all;
}

.modal-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .7);
}

.modal-wrapper .modal {
    width: 50%;
    background: rgb(29 33 40);
    border: 2px solid #242932;
    padding: 25px;
    padding-top: 100px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: auto;
    display: none;
    opacity: 0;
    z-index: -1;
}

.modal-wrapper.show,
.modal-wrapper .modal.show {
    opacity: 1;
    z-index: 55;
    display: block;
}

.modal-wrapper .modal .header {
    background: #242932;
    padding: 25px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    width: 100%;
}

.modal-wrapper .modal .header .close {
    margin-left: auto;
    cursor: pointer;
}

.modal-wrapper .modal .input {
    height: 70px;
    padding-left: 90px;
    padding-right: 20px;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
    border: 2px solid #242932;
}

.modal-wrapper .modal .input i {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #242932;
}

.modal-wrapper .modal .input input {
    width: 100%;
    height: 100%;
}

.modal-wrapper .modal input.custom {
    height: 60px;
    padding: 0 20px;
    width: 100%;
    border: 2px solid #242932;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-wrapper .modal textarea {
    border: 2px solid #242932;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
}

.modal-wrapper .modal .go-send {
    display: flex;
    align-items: center;
}

.modal-wrapper .modal .go-send .rate {
    margin-right: auto;
}

.modal-wrapper .modal .go-send .rate p {
    padding: 10px;
    font-size: 20px;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: .5s all;
    float: right;
}

.modal-wrapper .modal .go-send .rate p:first-child {}

.modal-wrapper .modal .go-send .rate p:hover,
.modal-wrapper .modal .go-send .rate p:hover ~ p,
.modal-wrapper .modal .go-send .rate p.active {
    color: #ffba00;
}

.modal-wrapper .modal .select-img {
    color: #5a5f68;
    padding: 10px 15px;
    border: 2px solid #242932;
    background: rgb(32 36 44);
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
    transition: .25s all;
}

.modal-wrapper .modal .select-img:hover {
    background: #242932;
    color: #666e7e;
}

.modal-wrapper .modal .select-img i {
    margin-right: 10px;
    font-size: 16px;
}

.modal-wrapper .modal .uploaded_img {
    color: #5a5f68;
    margin-right: auto;
    margin-left: 10px;
    width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-wrapper .modal input[type="file"] {
    display: none;
}

.modal-wrapper .modal.tickets-views {
    width: 100%;
    margin-top: -50px;
}

.modal-wrapper .modal.tickets-views .ticket-view {
    display: none;
}

.modal-wrapper .modal.tickets-views .ticket-view.show {
    display: block;
}

.modal-wrapper .modal.tickets-views .ticket-view .info {
    background: #242932;
    padding: 20px 25px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-wrapper .modal.tickets-views .ticket-view .info .title {
    font-size: 20px;
}

.modal-wrapper .modal.tickets-views .ticket-view .info .status-ticket {
    padding: 5px 8px;
    border-radius: 5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.modal-wrapper .modal.tickets-views .ticket-view .info .status-ticket.open,
.modal-wrapper .modal.tickets-views .ticket-view .info .status-ticket.solved {
    background: #0ddd25;
}

.modal-wrapper .modal.tickets-views .ticket-view .info .status-ticket.refused {
    background: #e01414;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat {
    overflow-y: auto;
    height: 450px;
    padding: 25px;
    background: #1a1d23;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat::-webkit-scrollbar {
    width: 5px;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat::-webkit-scrollbar-track {
    background: transparent;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #27292e;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg {
    background: #242932;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 40%;
    margin-left: auto;
    margin-bottom: 15px;
    display: table;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg.admin {
    margin-right: auto;
    margin-left: 0;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg.full {
    width: 40%;
    position: relative;
    padding-top: 260px;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg img {
    height: 250px;
    width: 100%;
    margin-bottom: 10px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    background: #000;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg a {
    color: orange;
    text-decoration: underline;
}

.modal-wrapper .modal.tickets-views .ticket-view .chat .msg .date {
    font-size: 13px;
    color: #677081;
    margin-top: 5px;
    text-align: right;
}

.modal-wrapper .modal.tickets-views .ticket-view textarea {
    height: 80px;
    background: #242932;
    border: none;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.modal-wrapper .modal.accept-email .description {
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-wrapper .modal.accept-email .description span {
    color: orange;
}

.modal-wrapper .modal.accept-email .inp {
    color: rgba(255, 255, 255, .4);
    margin-bottom: 10px;
}

.modal-wrapper .modal.accept-email .warning {
    color: orange;
    font-weight: 600;
    margin-top: 20px;
}

.modal-wrapper .modal.accept-email .warning i {
    margin-right: 10px;
    font-size: 18px;
}

.modal-wrapper .modal.select-buy {
    max-width: 30% !important;
}

.modal-wrapper .modal.select-buy .blocks .left-block,
.modal-wrapper .modal.select-buy .blocks .right-block {
    width: 50%;
    padding: 25px;
    border-radius: 15px;
    background: #242932;
    display: flex;
    flex-direction: column;
}

.modal-wrapper .modal.select-buy .blocks .title-s {
    text-align: center;
}

.modal-wrapper .modal.select-buy .blocks .btn {
    text-align: center;
    margin-top: auto;
}

.modal-wrapper .modal.select-buy .blocks .left-block {
    margin-right: 25px;
}

.modal-wrapper .modal.select-buy .blocks .img {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-wrapper .modal.select-buy .blocks .img img {
    width: 130px;
    object-fit: contain;
}

.modal-wrapper .modal.select-buy .blocks .left-block img {
    border-radius: 10px;
    width: 150px;
}

.modal-wrapper .modal.select-buy .blocks .right-block .img img {
    height: 130px;
    width: 100%;
}

.modal-wrapper .modal.send-review {
    background: #21252c;
    border: 2px solid #ffffff0a;
}

.modal-wrapper .modal.send-review .header {
    background: #ffffff0a;
}

.modal-wrapper .modal.send-review .input {
    border: 2px solid #ffffff0a;
}

.modal-wrapper .modal.send-review .input i {
    background: #ffffff0a;
}

.modal-wrapper .modal.send-review textarea {
    border: 2px solid #ffffff0a;
}

/*==========================
       NOTIFICATION
==========================*/

.notification-wrapper-note {
    position: fixed;
    top: 100px;
    right: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    background: #242932;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    border-radius: 5px;
    overflow: hidden;
    padding-right: 20px;
    z-index: -1;
    opacity: 0;
    transition: .2s all;
}

.notification-wrapper-note i {
    height: 100%;
    width: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: orange;
}

.notification-wrapper-note.show {
    opacity: 1;
    z-index: 1337;
}

/*==========================
       TABLE CONTENT
==========================*/

table {
    width: 100%;
    table-layout: fixed;
    font-family: 'Montserrat', sans-serif;
}

.tbl-header {
    background: rgba(11, 11, 11, .48);
    border-radius: 5px;
    margin-top: 20px;
}

.tbl-content {
    min-height: 400px;
    overflow-x: auto;
    margin-top: 0px;
}

th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
}

td {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    height: 80px;
    overflow-x: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

td a {
    font-weight: 600;
    text-decoration: underline;
}

td .btn {
    padding: 10px 15px;
    letter-spacing: normal;
    display: inline-flex;
    padding: 5px 8px;
    text-transform: none;
    text-decoration: none;
}

tbody tr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .25s all;
}

tbody tr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
}

tbody tr.checked {
    background: rgba(11, 11, 11, .2);
}

/*==========================
          HEADER
==========================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 55;
    padding: 15px 0;
    background: rgb(15 15 20 / 40%);
    border-bottom: 1px solid rgb(30 32 40 / 70%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

header .navbar-nav {
    width: 100%;
    position: relative;
    padding-left: 0;
}

header .navbar-nav .logo {
    margin-right: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

header .navbar-nav .logo img {
    width: 45px;
    height: 45px;
}

header .navbar-nav .logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    color: #ff9000;
    -webkit-text-fill-color: #ff9000;
    text-transform: uppercase;
    filter: drop-shadow(0 0 8px rgba(255, 144, 0, 0.25));
    transition: filter 0.3s ease;
    white-space: nowrap;
}

header .navbar-nav .logo:hover .logo-text {
    filter: drop-shadow(0 0 14px rgba(255, 144, 0, 0.5));
}

/* Glitch on logo hover */
@keyframes fufel-glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -1px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
    100% { transform: translate(0); }
}

header .navbar-nav .logo:hover .logo-text {
    animation: fufel-glitch 0.35s ease-in-out;
}

/* Pulse on support button */
@keyframes fufel-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 144, 0, 0.2); }
    50% { box-shadow: 0 0 22px rgba(255, 144, 0, 0.45); }
}

.header-support-btn {
    animation: fufel-pulse 3s ease-in-out infinite;
}

header .navbar-nav .menu a {
    padding: 20px 15px;
    position: relative;
    font-weight: 500;
    white-space: nowrap;
    font-size: 14px;
}

header .navbar-nav .menu a i {
    margin-right: 6px;
    font-size: 14px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

header .navbar-nav .menu a:hover i {
    opacity: 1;
}

header .navbar-nav .menu a:last-child {
    margin-right: 0;
}

header .navbar-nav .contacts {
    margin-left: auto;
}

header .navbar-nav .contacts a {
    padding: 20px 15px;
    font-size: 20px;
}

header .navbar-nav .contacts a:last-child {
    padding-right: 0;
}

/* Header actions (search, language, support buttons) */
.header-actions {
    margin-left: auto;
    gap: 10px;
    display: flex;
    flex-shrink: 0;
}

/* Inline search in header */
.header-search-wrap {
    display: flex;
    align-items: center;
    width: 0;
    overflow: visible;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin 0.35s ease, opacity 0.25s ease;
    opacity: 0;
    visibility: hidden;
    margin-right: 0;
    position: relative;
}

.header-search-wrap.active {
    width: 260px;
    opacity: 1;
    visibility: visible;
    margin-right: 10px;
}

.search-input-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 260px;
}

.header-search-inline-input {
    width: 100%;
    padding: 9px 38px 9px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header-search-inline-input:focus {
    border-color: rgba(255, 144, 0, 0.5);
    box-shadow: 0 0 12px rgba(255, 144, 0, 0.15);
}

.header-search-inline-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.header-search-inline-close {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
    padding: 0;
}

.header-search-inline-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.header-search-inline-close i {
    font-size: 14px;
}

/* Header search dropdown */
.header-search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #21252c;
    border: 1px solid rgba(255, 144, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    max-height: 400px;
    overflow-y: auto;
}

.header-search-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    text-decoration: none;
    color: #c2c6d7;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 144, 0, 0.08);
}

.search-result-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-extra {
    font-size: 11px;
    color: rgba(255, 144, 0, 0.7);
    margin-top: 2px;
}

.search-result-arrow {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    margin-left: 8px;
    flex-shrink: 0;
}

.search-result-item:hover .search-result-arrow {
    color: #ff9000;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.search-no-results i {
    margin-right: 6px;
}

/* Search no longer hides menu */

/* Hide support button on small screens, keep search & lang */
@media screen and (max-width: 1280px) {
    .header-support-btn {
        display: none;
    }
}

/* Header icon buttons */
.header-icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.header-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.header-icon-btn:hover::before {
    width: 300px;
    height: 300px;
}

.header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-icon-btn i,
.header-icon-btn .lang-text {
    position: relative;
    z-index: 1;
}

.header-icon-btn i {
    font-size: 18px;
}

.header-icon-btn .lang-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Header support button */
.header-support-btn {
    background: #ff9000;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.header-support-btn::before {
    display: none;
}

.header-support-btn:hover::before {
    width: 300px;
    height: 300px;
}

.header-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 144, 0, 0.4);
}

.header-support-btn i,
.header-support-btn span {
    position: relative;
    z-index: 1;
    color: #000;
    transition: color 0.3s ease;
}

.header-support-btn:hover i,
.header-support-btn:hover span {
    color: #fff !important;
}

.header-support-btn i {
    font-size: 16px;
}

/*==========================
      HEADER-WRAPPER
==========================*/

#header-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#header-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #1d1e23));
    background: linear-gradient(180deg, rgba(33, 36, 41, 0) 0%, #1d1e23 90%);
    position: absolute;
    z-index: 7;
}

#header-wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #1d1e23));
    background: linear-gradient(0deg, rgba(33, 36, 41, 0) 0%, #1d1e23 120%);
    position: absolute;
    z-index: 7;
}


#header-wrapper #slider {
    height: 100vh;
}

#header-wrapper .nivoSlider img {
    height: 100vh !important;
    object-fit: cover;
}

#header-wrapper .container {
    position: relative;
}

#header-wrapper .content {
    height: 90vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    transition: .7s all;
    z-index: 10;
}

#header-wrapper .content.hide {
    opacity: 0;
    z-index: 9;
}

#header-wrapper .content img {
    object-fit: cover;
    width: 100%;
}

.nivo-directionNav {
    position: absolute;
    width: 100%;
    height: 90vh;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nivo-nextNav {
    transform: rotate(90deg);
    margin-top: 250px;
}

.nivo-prevNav {
    left: auto;
    transform: rotate(90deg);
    margin-bottom: 250px;
}

.nivo-directionNav a {
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s all;
    font-size: 20px;
    right: 130px !important;
    top: auto;
    z-index: 40;
}

.nivo-directionNav a i.fal.fa-chevron-right {
    font-weight: 500;
}

.nivo-directionNav a i.fal.fa-chevron-left {
    font-weight: 500;
}

.nivo-directionNav a i {
    transition: .25s all;
}

.nivo-directionNav a:hover {
    border-color: #fff;
}

.nivo-directionNav a:hover i {
    transform: scale(1.25);
}

.nivo-controlNav {
    text-align: center;
    padding: 0;
    position: absolute;
    height: 90vh;
    width: 100%;
    top: 0;
    right: 148px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.nivo-controlNav a {
    cursor: pointer;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, .4);
    transition: .25s all;
    z-index: 10;
}

.nivo-controlNav a:last-child {
    margin-bottom: 0;
}

.nivo-controlNav a:hover {
    border-color: #fff;
}

.nivo-controlNav a.active {
    background: #fff;
    border-color: #fff;
}

#header-wrapper .content .content-fluid {
    /*    align-items: baseline;*/
}

#header-wrapper .content .content-fluid .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 30%;
    position: relative;
    z-index: 10;
}

#header-wrapper .content .content-fluid .text h3 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#header-wrapper .content .content-fluid .text h1 {
    font-size: 55px;
    font-weight: 700;
    margin: 15px 0;
}

#header-wrapper .content .content-fluid .text .description {
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #c2c6d7;
}

#header-wrapper .content .content-fluid .text .info {}

#header-wrapper .content .content-fluid .text .info .price {
    font-size: 20px;
    margin-right: 20px;
    color: #ff9000;
    text-shadow: 0 0 10px rgba(255, 144, 0, 0.4), 0 0 20px rgba(255, 144, 0, 0.15);
}

#header-wrapper .content .content-fluid .text .info .price span {
    font-size: 30px;
    color: #ff9000;
}

#header-wrapper .content .content-fluid .game-list {
    width: 60%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 100px;
}

#header-wrapper .content .content-fluid .game-list .game {
    height: 300px;
    width: 33.33333333333333%;
    background-position: center;
    background-size: 300%;
    background-repeat: no-repeat;
    margin-right: 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: .25s all;
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#header-wrapper .content .content-fluid .game-list .game:hover {
    background-size: 330%;
}

#header-wrapper .content .content-fluid .game-list .game:last-child {
    margin-right: 0;
}

#header-wrapper .content .content-fluid .game-list .game::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #1d1e23));
    background: linear-gradient(180deg, rgba(33, 36, 41, 0) 0%, rgba(29, 30, 35, .95) 80%);
    position: absolute;
    transition: .25s all;
}

#header-wrapper .content .content-fluid .game-list .game.hide-on {
    transform: scale(.95);
    opacity: .7;
}

#header-wrapper .content .content-fluid .game-list .game .info {
    z-index: 10;
    width: 100%;
}

#header-wrapper .content .content-fluid .game-list .game .info .icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(11, 11, 11, .48);
    margin-top: auto;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%;
    left: 35%;
}

#header-wrapper .content .content-fluid .game-list .game .info .icon span {
    height: 36px;
    width: 36px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0) invert(1);
}

/* Убираем фильтр для карточек читов */
#header-wrapper .content .content-fluid .game-list.cheats-list .game .info .icon span {
    filter: none;
}

/* Цветовая индикация статусов читов */
.cheat-status.status-1 {
    color: #9acd90 !important; /* Зеленый для Undetected */
}

.cheat-status.status-2 {
    color: #f9af00 !important; /* Желтый для Use of risk */
}

.cheat-status.status-0 {
    color: #ff4444 !important; /* Красный для Detected */
}

.cheat-status i {
    margin-right: 5px;
}

#header-wrapper .content .content-fluid .game-list .game .info .name {
    font-weight: 600;
    margin-bottom: 3px;
}

#header-wrapper .content .content-fluid .game-list .game .info .count-products-status {
    font-size: 12px;
    color: #9acd90;
}

#header-wrapper .content .content-fluid .game-list .game .info .price {
    margin-left: auto;
    font-size: 12px;
    color: #ff9000;
}

#header-wrapper .content .content-fluid .game-list .game .info .price span {
    color: #ff9000;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 144, 0, 0.35);
}

/* Hero Bottom Section */
/* Gradient text utility */
.gradient-text {
    background: none;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #ff9000;
    color: #ff9000;
    font-weight: 700 !important;
    filter: drop-shadow(0px 0px 5px rgba(255, 144, 0, 0.35));
}

/* Advantages bar */
#header-wrapper .advantages {
    padding: 40px 0;
    background: #1d1e23;
    border-top: 1px solid rgba(255, 144, 0, 0.06);
    z-index: 20;
    position: relative;
    width: 100%;
}

#header-wrapper .advantages .pre-info {
    font-size: 34px;
    font-weight: 700;
    margin-right: auto;
    width: 30%;
    line-height: 1.6;
    flex-shrink: 0;
}

#header-wrapper .advantages .advantages-content {
    display: flex;
    align-items: center;
    position: relative;
}

#header-wrapper .advantages .advantage {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 55px;
    padding-right: 55px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

#header-wrapper .advantages .advantage:last-of-type {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

#header-wrapper .advantages .advantage p {
    color: #e0e0e0;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: .012em;
    line-height: 59px;
}

#header-wrapper .advantages .advantage span {
    color: #c2c6d7;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Scroll down chevron — absolute center of page */
#header-wrapper .advantages .scroll-down-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#header-wrapper .advantages .scroll-down {
    width: 30px;
    height: 45px;
    position: relative;
    cursor: pointer;
}

#header-wrapper .advantages .scroll-down .chevron {
    position: absolute;
    width: 2.1rem;
    height: 0.48rem;
    opacity: 0;
    transform: scale(0.3);
    animation: move-chevron 3s ease-out infinite;
}

#header-wrapper .advantages .scroll-down .chevron:first-child {
    animation: move-chevron 3s ease-out 1s infinite;
}

#header-wrapper .advantages .scroll-down .chevron:nth-child(2) {
    animation: move-chevron 3s ease-out 2s infinite;
}

#header-wrapper .advantages .scroll-down .chevron:before,
#header-wrapper .advantages .scroll-down .chevron:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: rgba(255, 144, 0, 0.6);
    filter: drop-shadow(0 0 4px rgba(255, 144, 0, 0.5));
}

#header-wrapper .advantages .scroll-down .chevron:before {
    left: 0;
    transform: skewY(30deg);
}

#header-wrapper .advantages .scroll-down .chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}

@keyframes move-chevron {
    25% { opacity: 1; }
    33.3% { opacity: 1; transform: translateY(2.28rem); }
    66.6% { opacity: 1; transform: translateY(3.12rem); }
    100% { opacity: 0; transform: translateY(4.8rem) scale(0.5); }
}

/* Нижняя табличка с преимуществами */
#header-wrapper .hero-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#header-wrapper .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

#header-wrapper .hero-features .feature-item i {
    font-size: 36px;
    color: #ff9000;
}

#header-wrapper .hero-features .feature-item p {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

/* ========================================
   CATALOG BUTTON STYLES
======================================== */

.catalog-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: -30px;
    position: relative;
    z-index: 10;
}

.catalog-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 144, 0, 0.1);
    border: 2px solid #ff9000;
    border-radius: 10px;
    color: #ff9000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.catalog-button i {
    font-size: 18px;
}

.catalog-button:hover {
    background: rgba(255, 144, 0, 0.2);
    border-color: #ffb347;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 144, 0, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
    .catalog-button-wrapper {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .catalog-button {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .catalog-button i {
        font-size: 16px;
    }
}

/*==========================
         PRODUCTS
==========================*/

#products {
    padding-top: 60px;
    padding-bottom: 80px;
    background-image: url(/img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

#products .sort-games {
    margin-bottom: 25px;
}

#products .sort-games .pretitle {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 300;
    color: #c2c6d7;
}

#products .sort-games .vl {
    height: 25px;
    width: 1px;
    background: #25242a;
    margin: 0 15px;
}

#products .sort-games .list-cheats {
    max-width: 80%;
    overflow: hidden;
}

#products .sort-games .sort {
    height: 40px;
    padding: 0 12px;
    border-radius: 25px;
    margin-right: 10px;
    background: #25242a;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c2c6d7;
    transition: .45s all;
    overflow: hidden;
    position: relative;
}

#products .sort-games .sort[data-filter="*"] {
    margin-right: 0;
}

#products .sort-games .sort::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ff9000;
    opacity: 0;
    transition: .45s all;
}

#products .sort-games .sort.active,
#products .sort-games .sort:hover {
    background: #25242a;
    color: #fff;
}

#products .sort-games .sort.active::before {
    opacity: 1;
}

#products .sort-games .sort .info {
    position: relative;
    display: flex;
    align-items: center;
}

#products .sort-games .sort img {
    width: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

#products .sort-games .sort-by-cheats .sort:last-child,
#products .sort-games .sort-by-games-filters .sort:last-child {
    margin-right: 0;
}

#products .sort-by-games-filters {
    margin-left: auto;
    width: 20%;
}

#products .sort-by-games-filters .sort i {
    margin-right: 5px;
}

#products .sort-by-games-filters .sort[data-sort="popular"]::before {
    background: #ff9000;
}

#products .sort-by-games-filters .sort[data-sort="new"]::before {
    background: #ff9000;
}

#products .sort-by-games-filters .pretitle {
    margin-left: 15px;
    text-align: right;
}

#cheats-page-wrapper {
    width: 100%;
    border-bottom: 1px solid #27292e;
    padding-top: 150px;
    padding-bottom: 60px;
    position: relative;
}

#cheats-page-wrapper .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#cheats-page-wrapper .bg img {
    height: 100%;
    width: 100%;
    opacity: .02;
    object-fit: cover;
    filter: grayscale(1);
}

#cheats-page-wrapper .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: auto;
}

#cheats-page-wrapper .content .icon {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #27292e;
}

#cheats-page-wrapper .content .icon .icon-img {
    width: 36px;
    height: 36px;
    position: relative;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
}

#cheats-page-wrapper .content .icon .icon-img::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #ff9000;
    position: absolute;
    left: 0;
    top: 0;
}

#cheats-page-wrapper .content .name {
    font-size: 35px;
    font-weight: 700;
    margin: 20px 0;
}

#cheats-page-wrapper .content .description {
    text-align: center;
    font-weight: 400;
    color: #707480;
    line-height: 1.8;
}

/* ============================
   GAME PAGE — NEW DESIGN
   ============================ */

.game-hero {
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 144, 0, 0.06);
}

.game-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.game-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px);
}

.game-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #1d1e23, transparent);
}

.game-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.game-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #21252c;
    border: 2px solid rgba(255, 144, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.game-hero-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.game-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.game-hero-desc {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.game-hero-price {
    color: #ff9000;
    font-weight: 700;
}

.game-hero-stats {
    display: flex;
    gap: 32px;
}

.game-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.game-hero-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: #ff9000;
}

.game-hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cheats section */
.game-cheats {
    padding: 40px 0 60px;
}

.game-cheats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 28px 0 24px;
    gap: 20px;
}

.game-cheats-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.game-cheats-title .accent {
    color: #ff9000;
}

.game-cheats-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #21252c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0 16px;
    height: 44px;
    max-width: 280px;
    width: 100%;
}

.game-cheats-search i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.game-cheat-search-input {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    outline: none;
}

.game-cheat-search-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Cheat cards grid */
.game-cheats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.game-cheat-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #21252c;
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.game-cheat-card:hover {
    border-color: rgba(255, 144, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.game-cheat-card-bg {
    height: 160px;
    overflow: hidden;
}

.game-cheat-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.game-cheat-card:hover .game-cheat-card-bg img {
    transform: scale(1.05);
}

.game-cheat-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-cheat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.game-cheat-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
}

.game-cheat-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-cheat-card-status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-cheat-card-status.undetected {
    color: #48af48;
    background: rgba(72, 175, 72, 0.1);
}

.game-cheat-card-status.detected {
    color: #e04040;
    background: rgba(224, 64, 64, 0.1);
}

.game-cheat-card-status.use-of-risk {
    color: #d8a80b;
    background: rgba(216, 168, 11, 0.1);
}

.game-cheat-card-status.on-update {
    color: #048bc7;
    background: rgba(4, 139, 199, 0.1);
}

.game-cheat-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.game-cheat-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-cheat-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.game-cheat-tag {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 144, 0, 0.08);
    color: rgba(255, 144, 0, 0.7);
    font-weight: 500;
}

.game-cheat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.game-cheat-card-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.game-cheat-card-price span {
    font-size: 18px;
    font-weight: 700;
    color: #ff9000;
}

.game-cheat-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #ff9000;
    font-weight: 600;
}

.game-cheat-card-rating span {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.game-cheat-card-rating i {
    font-size: 12px;
}

.game-cheats-empty {
    text-align: center;
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.25);
}

.game-cheats-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

/* Similar games */
.game-similar {
    padding: 40px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.game-similar-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.game-similar-title .accent {
    color: #ff9000;
}

.game-similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.game-similar-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 120px;
    text-decoration: none;
    transition: all 0.3s;
}

.game-similar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.game-similar-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game-similar-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.game-similar-card:hover .game-similar-card-bg img {
    opacity: 0.55;
}

.game-similar-card-info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 16px;
}

.game-similar-card-ico {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.game-similar-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.game-similar-card-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.game-similar-all {
    text-align: center;
}

.game-similar-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #21252c;
    border: 1px solid rgba(255, 144, 0, 0.15);
    border-radius: 10px;
    color: #ff9000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.game-similar-all-btn:hover {
    background: rgba(255, 144, 0, 0.1);
    border-color: rgba(255, 144, 0, 0.3);
}

/* Game page mobile */
@media (max-width: 768px) {
    .game-hero {
        padding: 110px 0 40px;
    }
    .game-hero-title {
        font-size: 26px;
    }
    .game-hero-desc {
        font-size: 13px;
    }
    .game-hero-icon {
        width: 56px;
        height: 56px;
    }
    .game-hero-icon img {
        width: 34px;
        height: 34px;
    }
    .game-cheats-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .game-cheats-search {
        max-width: 100%;
    }
    .game-cheats-grid {
        grid-template-columns: 1fr;
    }
    .game-similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .game-similar-card {
        height: 100px;
    }
}

#products.cheats {
    padding-top: 60px;
}

#products .pre-info {
    margin-bottom: 35px;
}

#products .title {
    font-size: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#products .title i {
    margin-right: 12px;
}

#products .title.popular i {
    color: #ff9000;
}

#products .search-block {
    width: 25%;
    padding-left: 15px;
    margin-left: 20px;
}

#products .search-block .search {
    background: #27292e;
    padding: 20px 15px;
    border-radius: 14px;
    padding-left: 50px;
    position: relative;
    width: 100%;
}

#products .search-block .search i {
    font-size: 17px;
    color: rgba(255, 255, 255, .2);
    position: absolute;
    left: 20px;
}

#products .search-block .search input {
    width: 100%;
}

#products .products {
    margin-right: -25px;
}

#header-wrapper .carousel .product-wrapper,
#products .products .product-wrapper {
    width: 25%;
    padding: 20px 25px;
    padding-left: 0;
    padding-top: 0;
    max-height: 300px;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 5px;
}

#header-wrapper .carousel .product-wrapper {
    width: 50%;
}

#products .products .product-wrapper .product {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

#products .products .product-wrapper .product::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #1d1e23));
    background: linear-gradient(180deg, rgba(33, 36, 41, 0) 0%, rgba(29, 30, 35, .95) 80%);
    position: absolute;
    transition: .25s all;
    z-index: 7;
}

#products .products .product-wrapper .product:hover .btn-new-style::before {
    opacity: 1;
}

#products .products .product-wrapper .product:hover .btn-new-style {
    color: #fff;
}

#products .products .product-wrapper .product .price {
    font-weight: 600;
}

#products .products .product-wrapper .product .m-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .65s all;
    border-radius: 10px;
    left: 0;
    top: 0;
    position: absolute;
}

#products.cheats .products .product-wrapper .product .btn-new-style {
    padding: 15px 15px;
    margin-left: auto;
}

#products.cheats .products .product-wrapper .product .block .price-block {
    margin-left: 0;
}

#products .products .product-wrapper .product:not(.non-cheats):hover .m-img {
    transform: scale(1.1);
}

#products .products .product-wrapper .product .block {
    transition: .2s all;
    z-index: 9;
    width: 100%;
    padding: 25px;
    margin-top: auto;
}

#products .products .product-wrapper .product .icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #27292e;
    transition: .2s all;
    z-index: 2;
    width: 50px;
    height: 50px;
    min-width: 50px;
    overflow: hidden;
}

#products .products .product-wrapper .product .icon img {
    height: 36px;
    width: 36px;
    filter: brightness(0) invert(1);
    transition: .45s all;
}

#products .products .product-wrapper .product .block .global {
    width: 100%;
}

#products .products .product-wrapper .product .block .info-block {
    font-weight: 600;
}

#products .products .product-wrapper .product .block .name {
    font-size: 16px;
    font-weight: 600;
}

#products .products .product-wrapper .product .block .info-block .count-products {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 5px;
}

#products .products .product-wrapper .product .block .info-block .count-products-status {
    font-size: 12px;
    color: #9acd90;
    font-weight: 500;
}

#products .products .product-wrapper .product .block .price-block {
    margin-left: auto;
}

#products .products .product-wrapper .product .block .price-block .info {
    color: #ff9000;
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

#products .products .product-wrapper .product .block .info span:nth-child(2) {
    margin: 0 5px;
}

#products .products .product-wrapper .product .block .price {
    font-size: 22px;
    color: #ff9000;
    text-shadow: 0 0 10px rgba(255, 144, 0, 0.4), 0 0 20px rgba(255, 144, 0, 0.15);
}

#products .products .product-wrapper .product.non-cheats .block .price {
    font-size: 15px;
}

#products .products .product-wrapper .product .block .price span {
    /*    color: #7c7aa1;*/
    font-weight: 500;
}

#products .products .product-wrapper .product .block .go-buy .btn {
    background: 0;
    border: 2px solid rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .2);
    text-transform: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    transition: .3s all;
    padding: 12px 15px;
}

#product-wrapper {
    padding-top: 130px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

#product-wrapper .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#product-wrapper .bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .3);
    -ms-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#product-wrapper .bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #1d1e23));
    background: linear-gradient(180deg, rgba(33, 36, 41, 0) 0%, #1d1e23 90%);
    z-index: 2;
}

#product-wrapper .bg img {
    object-fit: cover;
    object-position: top;
    width: 100%;
}

#product-wrapper .content {
    position: relative;
    z-index: 3;
}

#product-wrapper .content .game-logo {
    background: #27292e;
    -ms-backdrop-filter: blur(15px);
    -moz-backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
}

#product-wrapper .content .game-logo img {
    width: 40px;
    filter: brightness(0) invert(1);
}

#product-wrapper .content .description {
    text-align: center;
    line-height: 1.5;
    color: rgba(255, 255, 255, .4);
    font-size: 18px;
    font-weight: 300;
}

#product-wrapper .content .description span {
    color: #ff9000;
    font-weight: 600;
}

#header-wrapper .product-wrapper .product .block .icon img,
#products.cheats .products .product-wrapper .product .block .icon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: none;
}

#header-wrapper .carousel .product .block .price-block {
    margin-left: 0 !important;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products.detected,
#header-wrapper .product-wrapper .product .block .info-block .count-products.detected,
#product .content .main-info .right-block .status span.detected,
#product .content .main-info .right-block .name.detected i {
    color: #b50e35;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products.undetected,
#header-wrapper .product-wrapper .product .block .info-block .count-products.undetected,
#product .content .main-info .right-block .status span.undetected,
#product .content .main-info .right-block .name.undetected i {
    color: #48af48;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products.useatownrisk,
#header-wrapper .product-wrapper .product .block .info-block .count-products.useatownrisk,
#product .content .main-info .right-block .status span.useatownrisk,
#product .content .main-info .right-block .name.useatownrisk i {
    color: #d8a80b;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products.onupdate,
#header-wrapper .product-wrapper .product .block .info-block .count-products.onupdate,
#product .content .main-info .right-block .status span.onupdate,
#product .content .main-info .right-block .name.onupdate i {
    color: #048bc7;
}

#products.cheats .products .product-wrapper .product .block .info-block .count-products {
    font-weight: 600;
}

#header-wrapper .product-wrapper .product .block .info-block .count-products i,
#products.cheats .products .product-wrapper .product .block .info-block .count-products i {
    margin-right: 3px;
}

#products.cheats .products .product-wrapper .product .rate {
    color: #d8a80b;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
}

#products.cheats .products .product-wrapper .product .block .stars i {
    margin-right: 5px;
    font-size: 18px;
    margin-top: -2px;
}

#products.cheats .products .product-wrapper .product .block .cheats .cheat-wrapper .cheat {
    background: rgba(255, 255, 255, .1);
    padding: 7px 10px;
}

#products.cheats .products .product-wrapper .product .block .cheats .cheat-wrapper .cheat .icon {
    background: 0;
    height: auto;
    width: auto;
    min-height: auto;
    margin-top: 0;
    min-width: auto;
    border-radius: 0;
    margin-bottom: 0;
    margin-right: 5px;
    font-size: 12px;
    font-family: 'Font Awesome 6 Pro';
}

#products.cheats .products .product-wrapper .product .block .cheats .cheat-wrapper .cheat .cheat-info {
    padding-right: 7px;
    overflow: hidden;
}

#products.cheats .products .product-wrapper .product .block .cheats .cheat-wrapper .cheat .cheat-info .cheat-name {
    margin-bottom: 0;
}

/*==========================
          PRODUCT
==========================*/

#product {
    min-height: 900px;
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    background: url('/img/bg.jpg');
    background-position: left;
    background-size: cover;
}

#product .content {
    position: relative;
    z-index: 6;
}

#product .content .main-info {
    margin-bottom: 60px;
}

#product .content .main-info .left-block {
    min-width: 26%;
    width: 26%;
    padding-right: 35px;
    max-width: 26%;
}

#product .content .main-info .left-block .global {
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(255, 255, 255, .05);
    margin-bottom: 20px;
}

#product .content .main-info .left-block .global .avatar {
    position: relative;
    width: 100%;
}

#product .content .main-info .left-block .global .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#product .content .main-info .left-block .global .avatar .popular {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 4;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#product .content .main-info .left-block .global .avatar .popular span {
    font-size: 12px;
    background: -webkit-linear-gradient(to right, #f9af00, #ff7300);
    background: -o-linear-gradient(to right, #f9af00, #ff7300);
    background: linear-gradient(to right, #f9af00, #ff7300);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

#product .content .main-info .left-block .global .avatar .popular i {
    margin-right: 5px;
}

#product .content .main-info .left-block .global .blocks .block {
    background: #21252c;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

#product .content .main-info .left-block .global .blocks .block .title {
    color: rgba(255, 255, 255, .4);
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 300;
}

#product .content .main-info .left-block .global .blocks .block span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#product .content .main-info .left-block .global .blocks .block:last-child {
    margin-bottom: 0;
}

#product .content .main-info .left-block .global .blocks .block.reviews .rate {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffba00;
}

#product .content .main-info .left-block .global .blocks .block.reviews .rate i {
    margin-right: 10px;
}

#product .content .main-info .left-block .global .blocks .block.reviews .avatars {
    margin-right: 30px;
}

#product .content .main-info .left-block .global .blocks .block.reviews .avatars .us {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 2px solid #21252c;
    margin-left: -4px;
}

#product .content .main-info .left-block .global .blocks .block.reviews span {
    color: rgba(255, 255, 255, .4);
    margin-right: 5px;
    font-weight: 300;
}

#product .content .main-info .left-block .global .blocks .block.game .game-logo,
#product .content .main-info .left-block .global .blocks .block.platform .game-logo {
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #2c5dcb;
    margin-right: 15px;
}

#product .content .main-info .left-block .global .blocks .block.game .game-logo img,
#product .content .main-info .left-block .global .blocks .block.platform .game-logo img {
    width: 20px;
}

#product .content .main-info .left-block .global .blocks .block.game .game-logo img,
#product .content .main-info .left-block .global .blocks .block.platform .game-logo img {
    filter: brightness(0) invert(1);
}

#product .content .main-info .left-block .global .blocks .block.platform .game-logo {
    background: #000000;
}

#product .content .main-info .left-block .carousel {
    flex-direction: column-reverse;
}

#product .content .main-info .left-block .carousel .screens {
    max-height: 270px;
    overflow: hidden;
    overflow-x: auto;
    flex-direction: row;
    margin-top: 15px;
    padding-bottom: 10px;
}

#product .content .main-info .left-block .carousel .screens::-webkit-scrollbar {
    height: 3px;
}

#product .content .main-info .left-block .carousel .screens::-webkit-scrollbar-track {
    background: transparent;
}

#product .content .main-info .left-block .carousel .screens::-webkit-scrollbar-thumb {
    background: #27292e;
}

#product .content .main-info .left-block .carousel .screens .item {
    height: 80px;
    width: 80px;
    min-width: 80px;
    border-radius: 10px;
    margin-right: 10px;
    transition: .4s all;
    cursor: pointer;
    opacity: .3;
    border: 2px solid rgba(0, 0, 0, 0);
    overflow: hidden;
    position: relative;
}

#product .content .main-info .left-block .carousel .screens .item.active,
#product .content .main-info .left-block .carousel .screens .item:hover {
    /*    border-color: orange;*/
    border-color: #27292e;
    opacity: 1;
}

#product .content .main-info .left-block .carousel .screens .item:last-child {
    margin-bottom: 0;
}

#product .content .main-info .left-block .carousel .screens .item img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
}

#product .content .main-info .left-block .carousel .screens .item .fa-solid.fa-image {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 6;
    background: rgba(0,0,0,.4);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    font-size: 12px;
    opacity: .6;
    transition: .25s all;
}

#product .content .main-info .left-block .carousel .screens .item.active .fa-solid.fa-image,
#product .content .main-info .left-block .carousel .screens .item:hover .fa-solid.fa-image {
    opacity: 1;
}

#product .content .main-info .left-block .carousel .screens .item .video-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #27292e;
}

#product .content .main-info .left-block .carousel .screens .item .video-figure i {
    color: #fff;
    font-size: 16px;
}

#product .content .main-info .left-block .carousel .main-screen {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

#product .content .main-info .left-block .carousel .main-screen img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#product .content .main-info .left-block .carousel .main-screen span {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #fff;
    z-index: 2;
}

#product .content .main-info .left-block .carousel .main-screen .count {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    background: rgba(11, 11, 11, .38);
    -ms-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 10px;
    word-spacing: 5px;
    font-weight: 300 !important;
}

#product .content .main-info .left-block .carousel .main-screen .count b {
    font-weight: 300;
}

#product .content .main-info .left-block .carousel .preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 1200px;
    margin: auto;
    height: 100vh;
    width: 100%;
    z-index: -1;
    -ms-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: .5s all;
}

#product .content .main-info .left-block .carousel .preview.show {
    opacity: 1;
    z-index: 8;
}

#product .content .main-info .left-block .carousel .preview .container {
    margin: auto;
    height: 100%;
    padding-top: 200px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#product .content .main-info .left-block .carousel .preview::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
}

#product .content .main-info .left-block .carousel .preview .close {
    font-size: 25px;
    color: #fff;
    background: #21252c;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    margin-left: auto;
    display: inline-flex;
    margin-bottom: 20px;
}

#product .content .main-info .left-block .carousel .preview img {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 15px;
    object-fit: cover;
}

#product .content .main-info .right-block-wrapper {
    background: #21252cbf;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    width: 100%;
}

#product .content .main-info .center-f {
    width: 70%;
    padding-right: 30px;
}

#product .content .main-info .center-f .system-recom-block {
    padding-bottom: 0;
}

#product .content .main-info .center-f .system-recom-block .content-block {
    display: none;
}

#product .content .main-info .center-f .system-recom-block .content-block.active {
    display: block;
}

#product .content .main-info .center-f .system-recom-block .content-block[data-id="1"] {
    max-height: 240px;
    overflow: hidden;
    overflow-y: auto;
}

#product .content .main-info .center-f .system-recom-block .content-block::-webkit-scrollbar-thumb {
    background: #27292e;
}

#product .content .main-info .center-f .system-recom-block .content-block .func-name {
    font-size: 12px;
    margin-bottom: 10px;
    background: #ff9000;
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 20px;
}

#product .content .main-info .center-f .system-recom-block .content-block .func-name i {
    margin-right: 5px;
}

#product .content .main-info .center-f .system-recom-block .content-block .desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 10px;
    font-weight: 300;
}

#product .content .main-info .center-f .system-recom-block .content-block .desc:last-child {
    margin-bottom: 0;
}

#product .content .main-info .center-f .system-recom-block .pre-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

#product .content .main-info .center-f .system-recom-block .blocks {
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper {
    width: 50%;
    padding-right: 30px;
    padding-bottom: 30px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper:nth-child(5),
#product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper:last-child {
    padding-bottom: 0;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom {
    display: flex;
    align-items: center;
    height: 60px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom i.main {
    margin-right: 10px;
    font-size: 50px;
    color: #515560;
    width: 50px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom .recom-info {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom .recom-info span {
    color: #515560;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
}

#product .content .main-info .center-f .system-recom-block .blocks .block-recom .recom-info img {
    height: 16px;
    width: 16px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

#product .content .main-info .center-f .system-recom-block .filter-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#product .content .main-info .center-f .system-recom-block .filter-info .fil-s {
    padding: 10px 15px;
    border-radius: 10px;
    transition: .25s all;
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
    color: #515560;
}

#product .content .main-info .center-f .system-recom-block .filter-info .fil-s:hover,
#product .content .main-info .center-f .system-recom-block .filter-info .fil-s.active {
    color: #ffffffa6;
    background: #25242a;
}

#product .content .main-info .center-f .system-recom-block .filter-info .fil-s:last-child {
    margin-right: 0;
}

#product .content .main-info .center-f .system-recom-block .filter-info .fil-s i {
    margin-right: 5px;
}

#product .content .main-info .right-block {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

#product .content .main-info .right-block.accept-order {
    width: 30%;
    padding-left: 30px;
    height: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
}

#product .content .main-info .right-block .name {
    font-size: 20px;
    font-weight: 600;
}

#product .content .main-info .right-block.accept-order .name {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, .4);
    line-height: 1.8;
}

#product .content .main-info .right-block.accept-order .header-line::before {
    display: none;
}

#product .content .main-info .right-block.accept-order .header-line {
    padding-bottom: 0;
    margin-bottom: 15px;
}

#product .content .main-info .right-block.accept-order .pre-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

#product .content .main-info .right-block.accept-order .pre-title span {
    color: #ff9000;
}

#product .content .main-info .right-block .name i {
    margin-left: 10px;
    color: #22b122;
    font-size: 16px;
}

#product .content .main-info .right-block .functions-block {
    margin-bottom: 30px;
}

#product .content .main-info .right-block .functions-block .func-name {
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 300;
    background: #25242a;
    margin-right: 10px;
    color: rgba(255, 255, 255, .4);
}

#product .content .main-info .right-block .name i {
    color: #55CF94 !important;
}

#product .content .main-info .right-block .functions-block .func-name.cheat-status {
    display: flex;
    align-content: center;
    font-weight: 500;
}

#product .content .main-info .right-block .functions-block .func-name.cheat-status i {
    margin-right: 5px;
}

#product .content .main-info .right-block .name.undetected i,
#product .content .main-info .right-block .functions-block .func-name.cheat-status.undetected {
    color: #55CF94 !important;
}

#product .content .main-info .right-block .name.detected i,
#product .content .main-info .right-block .functions-block .func-name.cheat-status.detected {
    color: #cf5555 !important;
}

#product .content .main-info .right-block .name.onupdate i,
#product .content .main-info .right-block .functions-block .func-name.cheat-status.onupdate {
    color: #5597cf !important;
}

#product .content .main-info .right-block .name.useatownrisk i,
#product .content .main-info .right-block .functions-block .func-name.cheat-status.useatownrisk {
    color: #cfbc55 !important;
}

#product .content .main-info .right-block .functions-block .func-name:last-child {
    margin-right: 0;
}

#product .content .main-info .right-block .pre-title {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#product .content .main-info .right-block .desc {
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
}

#product .content .main-info .right-block .header-line {
    position: relative;
    margin-bottom: 30px;
}

#product .content .main-info .right-block .header-line img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
}

#product .content .main-info .right-block::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #27292e;
}

#product .content .main-info .right-block .header-line .game-block {
    font-weight: 500;
}

#product .content .main-info .right-block .header-line .game-block img {
    margin-right: 7px;
    height: 25px;
    width: 25px;
}

#product .content .main-info .right-block .func {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 40px;
}

#product .content .main-info .right-block .func .m-func i {
    font-size: 12px;
    margin-right: 5px;
}

#product .content .main-info .right-block .func .m-func {
    font-weight: 300;
}

#product .content .main-info .right-block .func span {
    color: rgba(255, 255, 255, .4);
    margin: 0 10px;
    font-size: 15px;
    font-weight: 600;
}

#product .content .main-info .right-block .func .more-func {
    color: orange;
    cursor: pointer;
    text-decoration: underline;
}

#product .content .main-info .right-block .recom .r {
    margin-right: 10px;
}

#product .content .main-info .right-block .recom .r:last-child {
    margin-right: 0;
}

#product .content .main-info .right-block .recom .r i {
    font-size: 18px;
}

#product .content .main-info .right-block .recom .r sup {
    font-size: 11px;
}

#product .content .main-info .right-block .status {
    margin-left: 40px;
}

#product .content .main-info .right-block .status span {
    font-weight: 600;
}

#product .content .main-info .right-block .status span i {
    margin-right: 5px;
}

#product .content .main-info .right-block .status span.undetected {
    color: #22b122;
}

#product .content .main-info .right-block .status span.detected {
    color: #b12222;
}

#product .content .main-info .right-block .status span.updating {
    color: #2264b1;
}

#product .content .main-info .right-block .func,
#product .content .main-info .right-block .recom,
#product .content .main-info .right-block .status {
    height: 70px;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 10px;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel {
    padding: 15px;
    transition: .4s all;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid #ffffff0a;
    font-weight: 500;
    color: #515560;
    border-radius: 10px;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel .check {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    /*    border: 2px solid rgb(79, 84, 98);*/
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s all;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel .check::before {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 1;
    transition: .45s all;
    background: rgb(65 69 80);
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.active .check::before {
    background: #ff9000;
    opacity: 1;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel .price {
    margin-left: auto;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.active {
    color: #ff9000 !important;
    border-color: #ff9000 !important;
    background: #ffffff0a !important;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel:hover {
    background: #ffffff0a;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel.active .check {
    border-color: #ff9000 !important;
}

#product .content .main-info .right-block .select .select-sub .sel-wrapper .sel:not(.active):hover .check::before {
    background: rgb(79, 84, 98) !important;
    opacity: 1;
}

#product .content .main-info .right-block .go-buy .price {
    font-size: 30px;
    margin-right: 20px;
    letter-spacing: 2px;
    font-weight: 600;
}

#product .content .main-info .right-block .go-buy .btn {
    text-transform: none;
    background: #ff9000;
    width: 100%;
    text-align: center;
}

#product .content .main-info .right-block .go-buy .report {
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

#product .content .main-info .right-block .go-buy .report .pretitle i {
    margin-right: 8px;
    margin-left: auto;
}

#product .content .main-info .right-block .go-buy .report .btn {
    background: #21252c;
    border: 2px solid rgba(64, 73, 88, .4);
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: .4s all;
}

#product .content .main-info .right-block .go-buy .report .btn:hover {
    color: #fff;
    background: #27292e;
}

#product .content .main-info .right-block.accept-order::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #27292e;
}

#product .content .main-info .right-block .warning {
    margin-top: 30px;
    padding: 15px 20px;
    border-radius: 10px;
    background: #21252c;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    padding-left: 80px;
    overflow: hidden;
    border: 2px solid #27292e;
}

#product .content .main-info .right-block .warning i {
    margin-right: 20px;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #27292e;
    color: orange;
}

#product .content .info-page .title {
    font-size: 25px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff;
}

#product .content .info-page .title span {
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    font-size: 18px;
}

#product .content .info-page .functions {
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    width: 50%;
    padding-right: 65px;
}

#product .content .info-page .functions .func-name {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

#product .content .info-page .functions .func-name i {
    margin-right: 8px;
    font-size: 15px;
}

#product .content .info-page .functions .desc {
    margin-bottom: 15px;
    line-height: 1.5;
}

#product .content .info-page {
    width: 75%;
    padding-left: 15px;
    margin-left: auto;
}

#product .content .info-page .reviews {
    width: 70%;
}

#product .content .info-page .reviews .send-review {
    margin-bottom: 40px;
    background: #21252cbf;
    overflow: hidden;
    position: relative;
    padding: 15px 20px;
    border-radius: 10px;
    padding-left: 90px;
    width: 100%;
    font-size: 17px;
}

#product .content .info-page .reviews .send-review i.fa-solid.fa-message {
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #27292e;
}

#product .content .info-page .reviews .send-review .rate-f {
    color: #ffba00;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

#product .content .info-page .reviews .send-review .rate-l {
    margin-left: auto;
    margin-right: 15px;
}

#product .content .info-page .reviews .send-review .rate-l i {
    margin-right: 5px;
    color: #ffba00;
}

#product .content .info-page .reviews .send-review .btn {
    font-size: 14px;
    text-transform: none;
    color: #fff;
    background: #ff9000;
    cursor: pointer;
    transition: .4s all;
    padding: 15px;
}

#product .content .info-page .reviews .review-block {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(64, 73, 88, .4);
    margin-bottom: 20px;
}

#product .content .info-page .reviews .review-block:last-child {
    margin-bottom: 0;
    border: none;
}

#product .content .info-page .reviews .review-block .user {
    margin-bottom: 20px;
}

#product .content .info-page .reviews .review-block .user img {
    border-radius: 10px;
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    object-fit: cover;
    margin-right: 15px;
}

#product .content .info-page .reviews .review-block .user .info .nickname {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
}

#product .content .info-page .reviews .review-block .user .info .date {
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    font-size: 13px;
}

#product .content .info-page .reviews .review-block .rate {
    color: #ffba00;
}

#product .content .info-page .reviews .review-block .rate i:not(:last-child) {
    margin-right: 5px;
}

#product .content .info-page .reviews .review-block .message {
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    line-height: 1.4;
}

#product .content i.icon-func {
    font-family: 'Font Awesome 6 Pro';
    font-style: normal;
}

#product .rate-stars {
    margin-top: 20px;
}

#product .rate-stars .pre-title {
    font-size: 16x;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .4);
}

#product .rate-stars .rate {
    color: #ffba00;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

#product .rate-stars .rate i {
    margin-left: 5px;
    font-size: 14px;
}

/*==========================
         POLITIC
==========================*/

#product-wrapper.terms {
    height: auto;
    padding-bottom: 60px;
}

#product-wrapper.terms .terms {
    margin-top: 15px;
    color: #e5e5e5;
    line-height: 1.5;
}

#product-wrapper.terms .terms p {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
    line-height: normal;
}

#product-wrapper.terms .terms span,
#product-wrapper.terms .terms a {
    font-weight: 600;
    color: #ff9000;
}

#product-wrapper.terms .terms a {
    text-decoration: underline;
    color: orange;
}

/*==========================
          TICKETS
==========================*/

#tickets {
    min-height: 300px;
}

.bg-wrap-ticket {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: url(/img/bg-tickets.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

#product-wrapper.tickets .game-logo i {
    font-size: 28px;
}

#tickets .content.select .block {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    height: 270px;
}

#tickets .content.select .vl {
    height: 150px;
    width: 1px;
    background: rgba(11, 11, 11, .48);
    margin: 0 30px;
}

#tickets .content.select .block .icon {
    font-size: 45px;
    margin-bottom: 15px;
}

#tickets .content.select .block .title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#tickets .content.select .block .description {
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

#tickets .content.select .block .go-send .input {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    background: rgba(11, 11, 11, .48);
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    padding-right: 15px;
}

#tickets .content.select .block .go-send .input i {
    height: 100%;
    width: 60px;
    min-width: 60px;
    background: rgb(11, 11, 11, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    margin-right: 15px;
    font-size: 20px;
}

#tickets .content.select .block .go-send .input input {
    height: 100%;
    width: 100%;
}

#tickets .content.select .block .go-send .btn {
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tickets .content.select .block .go-send .btn i {
    font-size: 16px;
}

#tickets .content.select .block.create-new .icon i {
    color: #ff9000;
}

#tickets .content.select .block.show-history .icon i {
    color: #ebbb62;
}

#tickets .content.show-tickets {
    padding-top: 150px;
    min-height: 700px;
}

#tickets .content.show-tickets .title-header {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

#tickets .content.show-tickets .title-header .auth {
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: normal;
}

#tickets .content.show-tickets .title-header .auth span {
    color: rgba(255, 255, 255, .3);
    margin-left: 5px;
}

#tickets .content.show-tickets .title-header .auth span a {
    font-weight: 300;
    cursor: pointer;
    text-decoration: underline;
}

#tickets .content.show-tickets table td .status-ticket {
    font-weight: 600;
}

#tickets .content.show-tickets table td .status-ticket.wait-accept {
    color: orange;
}

#tickets .content.show-tickets table td .status-ticket.open,
#tickets .content.show-tickets table td .accept-ticket-success {
    color: #0ddd25;
    font-weight: 600;
}

#tickets .content.show-tickets table td .status-ticket.reply {
    color: orange;
}

#tickets .content.show-tickets table td .status-ticket.solved {
    color: #0ddd25;
}

#tickets .content.show-tickets table td .status-ticket.refused {
    color: #e01414;
}

/*==========================
          FOOTER
==========================*/

footer {
    position: relative;
    z-index: 12;
    overflow: hidden;
    border-top: 1px solid rgb(30 32 40 / 70%);
}

footer .content {
    padding: 50px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid rgb(30 32 40 / 70%);
    position: relative;
    z-index: 5;
}

footer .content .col {
    width: 25%;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

footer .content .col:last-child {
    padding-right: 0;
}

footer .content .col .title {
    color: #555765;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer .content .col a {
    font-weight: 400;
    margin-bottom: 10px;
}

footer .content .col a:hover {
    color: #ff9000 !important;
}

footer .content .col .logo:hover {
    text-decoration: none;
}

footer .content .col .logo span {
    font-weight: 700;
    font-family: 'Bangers', cursive;
    color: #ff9000;
    -webkit-text-fill-color: #ff9000;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

footer .content .col .contacts {
    margin-top: 20px;
}

footer .content .col .contacts a {
    margin-bottom: 0 !important;
    margin-right: 25px;
    font-size: 28px;
    padding: 10px;
    color: #ff9000;
    transition: all 0.25s;
}

footer .content .col .contacts a:first-child {
    padding-left: 0;
}

footer .content .col .contacts a:hover {
    color: #fff !important;
    text-decoration: none;
    transform: scale(1.15);
}

footer .content .col .contacts a:last-child {
    margin-right: 0;
}

footer .content .col:first-child {
    width: 35%;
    margin-right: 50px;
}

footer .content .col:nth-child(2),
footer .content .col:nth-child(4) {
    width: 16.666666667%;
}

footer .content .col a:not(.logo) {
    margin-bottom: 12px;
    color: #c2c6d7;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .012em;
    line-height: 24px;
}

footer .content .col:first-child .logo img {
    width: 50px;
    transition: .4s all;
}

footer .content .col:first-child .logo {
    margin-bottom: 25px;
    font-size: 35px;
}

footer .content .col:first-child .desc {
    font-size: 13px;
    color: #555765;
    font-weight: 500;
    letter-spacing: .012em;
    line-height: 24px;
}

footer .after-footer {
    padding: 30px 0;
    padding-top: 40px;
    word-spacing: 4px;
    position: relative;
    z-index: 5;
    color: #555765;
    font-size: 12px;
}

footer .after-footer .footer-copyright {
    font-size: 12px;
    color: #555765;
    font-weight: 400;
}

footer .after-footer a,
footer .after-footer a:hover {
    font-weight: 500;
    color: #ff9000 !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ff9000;
}

footer .after-footer .fl.ai-c img {
    margin-right: 15px;
}

footer .after-footer .fl.ai-c img:last-child {
    margin-right: 0;
}

/* Footer layout improvements */
footer .after-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

footer .after-footer .footer-left,
footer .after-footer .footer-center,
footer .after-footer .footer-right {
    display: flex;
    align-items: center;
}

footer .after-footer .footer-center {
    gap: 15px;
}

footer .after-footer .footer-center img {
    transition: all 0.3s ease;
    opacity: 0.8;
}

footer .after-footer .footer-center img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

footer .after-footer .footer-right {
    gap: 10px;
    margin-left: auto;
}

/* Footer icon buttons */
.footer-icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.footer-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer-icon-btn:hover::before {
    width: 300px;
    height: 300px;
}

.footer-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-icon-btn i,
.footer-icon-btn .lang-text {
    position: relative;
    z-index: 1;
}

.footer-icon-btn i {
    font-size: 18px;
}

.footer-icon-btn .lang-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer support button */
.footer-support-btn {
    background: #ff9000;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-support-btn::before {
    display: none;
}

.footer-support-btn:hover::before {
    width: 300px;
    height: 300px;
}

.footer-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 144, 0, 0.4);
}

.footer-support-btn i,
.footer-support-btn span {
    position: relative;
    z-index: 1;
    color: #000;
    transition: color 0.3s ease;
}

.footer-support-btn:hover i,
.footer-support-btn:hover span {
    color: #fff !important;
}

.footer-support-btn i {
    font-size: 16px;
}

/*==========================
       CHEATS STATUS
==========================*/

#products.cheats-status {
    padding-top: 130px;
}

#products.cheats-status .product::before {
    opacity: .7 !important;
}

#products.cheats-status .product::after {
    content: '';
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(33, 36, 41, 0)), color-stop(90%, #1d1e23)) !important;
    background: linear-gradient(1deg, rgba(33, 36, 41, 0) 0%, #1d1e23 80%) !important;
    opacity: .7;
    position: absolute;
    transform: skewX(0) !important;
}

#products.cheats-status .product .blocks-wrap {
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
}

#products.cheats-status .products .product-wrapper .product {
    padding: 15px;
}

#products.cheats-status .products .product-wrapper .product .name::before,
#products.cheats-status .products .product-wrapper .product::before {
    display: none;
}

#products.cheats-status .products .product-wrapper .product .game-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px 0px 20px 20px;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: -2;
    height: 100%;
    width: 100%;
    display: block;
}

#products.cheats-status .products .product-wrapper .product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    display: block;
}

#products.cheats-status .products .product-wrapper {
    min-height: 400px;
    max-height: 400px;
}

#products.cheats-status .products .product-wrapper .product .name {
    width: auto;
    height: auto;
    display: block;
}

#products.cheats-status .products .product-wrapper .product .game-name {
    position: relative;
    z-index: 2;
    width: 70%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -15px;
}

#products.cheats-status .products .product-wrapper .product .game-name span {
    margin-top: -4px;
}

/*
#products.cheats-status .product .block-wrap.game {
    border-radius: 15px;
    background: rgb(17, 17, 17, .5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: hidden;
    padding: 5px;
    margin-bottom: 15px !important;
}
*/

#products.cheats-status .product .blocks-wrap .list-wrap {
    height: 260px;
    overflow-y: auto;
}

#products.cheats-status .product .blocks-wrap .list-wrap::-webkit-scrollbar {
    width: 5px;
}

#products.cheats-status .product .blocks-wrap .list-wrap::-webkit-scrollbar-track {
    background: transparent;
}

#products.cheats-status .product .blocks-wrap .list-wrap::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #27292e;
}

#products.cheats-status .product .blocks-wrap .block-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#products.cheats-status .product .blocks-wrap .block-wrap:last-child {
    margin-bottom: 0;
}

#products.cheats-status .product .blocks-wrap .block-wrap .icon {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#products.cheats-status .product .blocks-wrap .block-wrap .icon img {
    border-radius: 12px;
}

#products.cheats-status .product .blocks-wrap .block-wrap.game .icon {
    margin-right: 5px;
}

#products.cheats-status .product .icon.cheat {
    background: 0;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

#products.cheats-status .product .icon.cheat img {
    height: 100%;
    width: 100%;
    filter: none;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap {
    display: flex;
    flex-direction: column;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .name {
    margin-bottom: 5px;
}

#products.cheats-status .product .blocks-wrap .block-wrap.game .info-wrap .name {
    margin-bottom: 2px;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .count-cheats,
#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status {
    font-size: 12px;
    color: burlywood;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status {
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 12px;
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status.undetected {
    color: #48af48;
    background: rgba(72, 175, 72, .2);
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status.detected {
    color: #d10534;
    background: rgba(177, 0, 41, 0.2);
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status.onupdate {
    color: #048bc7;
    background: rgba(4, 139, 199, .2);
}

#products.cheats-status .product .blocks-wrap .block-wrap .info-wrap .status.useatownrisk {
    color: #d8a80b;
    background: rgba(216, 168, 11, .2);
}

/*==========================
        TRANSLATE
==========================*/

.translate-overlay {
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 15;
    background: #1d1e23;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.translate-overlay .select {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s all;
}

.translate-overlay .select:hover,
.translate-overlay .select.active {
    background: #27292e;
}

/*==========================
            FAQ
==========================*/

#product-wrapper.tickets.terms.faq .content .description {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 5px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
    margin-top: 30px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
    width: 50%;
    padding: 30px;
    padding-left: 0;
    padding-top: 0;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq {
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 15px;
    background: #21252c;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq img {
    width: 100px;
    margin-right: 20px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .prename {
    color: #c2c6d7;
    margin-bottom: 10px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .name {
    font-size: 18px;
}

#product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .btn-new-style {
    margin-left: auto;
}

/*==========================
          OTHERS
==========================*/

.fl {
    display: flex;
}

.fl.fw-w {
    flex-wrap: wrap;
}

.fl.fw-nw {
    flex-wrap: nowrap;
}

.fl.fd-c {
    flex-direction: column;
}

.fl.fd-r {
    flex-direction: row;
}

.fl.ai-s {
    align-items: flex-start;
}

.fl.ai-c {
    align-items: center;
}

.fl.ai-e {
    align-items: flex-end;
}

.fl.jc-s {
    justify-content: flex-start;
}

.fl.jc-c {
    justify-content: center;
}

.fl.jc-sb {
    justify-content: space-between;
}

.fl.jc-e {
    justify-content: flex-end;
}

/*==========================
        MOBILE MENU
==========================*/

.mobile-menu {
    display: flex;
    flex-direction: column;
    width: 40px;
    cursor: pointer;
    margin-left: 40px;
}

.mobile-menu span {
    background: #adadad;
    border-radius: 5px;
    height: 3px;
    margin: 5px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu span:nth-of-type(1) {
    width: 50%;
}

.mobile-menu span:nth-of-type(2) {
    width: 100%;
}

.mobile-menu span:nth-of-type(3) {
    width: 75%;
}

.mobile-menu input[type="checkbox"] {
    display: none;
}

.mobile-menu.active span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(7px, 1px);
}

.mobile-menu.active span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
}

.mobile-menu.active span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(18px, -7px) rotatez(45deg);
}

.mobile-menu {
    display: none;
    z-index: 99999;
}

.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    background: #1d1e23;
    padding-top: 40%;
    height: 100%;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: -6;
    transition: .45s all;
    opacity: 0;
}

.mobile-navbar.show {
    opacity: 1;
    z-index: 45;
}

.mobile-navbar a {
    font-size: 25px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .4);
}

.mobile-navbar a:last-child {
    margin-bottom: 0;
}

.mobile-navbar a.active,
.mobile-navbar a:hover {
    color: #ff9000;
}

/*==========================
     MEDIA MOBILE ADAPT
==========================*/

@media screen and (max-width: 1600px) {
    body {
        /*        background-color: #3BCEAC;*/
    }

    .modal-wrapper.show,
    .modal-wrapper .modal.show {
        z-index: 999;
    }

    .modal-wrapper {
        padding-top: 100px;
    }

    #tickets .content.select .block {
        width: 100%;
    }

    #tickets .content.select .vl {
        display: none;
    }

    #tickets .content.select {
        flex-direction: column;
    }
}

@media screen and (max-width: 1280px) {
    body {
        /*        background-color: #FFD23F;*/
    }

    .container {
        width: 100%;
    }

    #header-wrapper {
        padding: 130px 0;
    }

    #header-wrapper .content {
        width: 60%;
    }

    #header-wrapper .bg-person {
        height: 500px;
        width: 500px;
        top: -10%;
        background-size: cover;
    }

    #products .search-block {
        width: 33.33333333333%;
    }

    #products .sort-by-games-filters {
        width: 25%;
    }

    #products .products .product-wrapper {
        width: 33.3333333333333%;
    }

    #product .content .main-info {
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    #product .content .main-info .left-block {
        width: 50%;
    }

    #product .content .main-info .right-block.accept-order {
        width: 100%;
        margin: 35px auto;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper {
        width: 100%;
    }

    #bg {
        height: 135%;
    }
}

@media screen and (max-width: 960px) {
    body {
        /*        background-color: #EE4266;*/
    }

    #header-wrapper .bg-person {
        display: none;
    }

    #header-wrapper .content {
        width: 100%;
    }

    #header-wrapper {
        padding-bottom: 70px;
    }

    #products .search-block {
        width: 50%;
    }

    #products .sort-games {
        flex-direction: column;
    }

    #products .sort-by-games-filters {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    #products .sort-by-games-filters .pretitle {
        margin-left: 0;
    }

    #products .sort-by-games-filters .list {
        justify-content: flex-start;
    }

    #products .products .product-wrapper {
        width: 50%;
    }

    #product .content .main-info {
        flex-direction: column;
    }

    #product .content .main-info .left-block {
        width: 100%;
        padding-right: 0;
        padding-bottom: 35px;
    }

    #product .content .main-info .left-block .global {
        display: none;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        height: 350px;
    }

    #product .content .main-info .center-f {
        width: 100%;
    }

    .modal-wrapper .modal.tickets-views .ticket-view .chat .msg {
        max-width: 60%;
    }

    .modal-wrapper .modal.tickets-views .ticket-view .chat .msg.full {
        width: 60%;
    }

    .mobile-menu {
        display: flex;
    }

    header .navbar-nav .menu {
        display: none;
    }

    #cheats-page-wrapper .content {
        width: 100%;
    }

    #product .content .main-info .right-block {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    body {
        /*        background-color: #540D6E;*/
    }

    .container {
        padding: 0 30px;
    }

    #products .sort-games .list-cheats {
        max-width: 50%;
        overflow-x: auto;
    }

    #products .sort-games .sort {
        min-width: 120px;
    }

    #products .pre-info {
        flex-direction: column;
    }

    #products .title {
        margin-bottom: 15px;
    }

    #products .search-block {
        padding-left: 0;
        width: 100%;
    }

    #products .sort-games .list-cheats::-webkit-scrollbar {
        width: 0px;
        height: 0;
        background: transparent
    }

    #products .sort-games .list-cheats::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
        background: transparent;
        border-radius: 0;
    }

    #products .sort-games .list-cheats::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #ff9000
    }

    #products .products .product-wrapper {
        width: 100%;
    }

    footer .content {
        flex-wrap: wrap;
    }

    footer .content .col {
        width: 50%;
        padding-right: 0;
    }

    footer .content .col:first-child {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    footer .after-footer {
        flex-direction: column;
        gap: 15px;
    }

    footer .after-footer div:first-child {
        margin-bottom: 20px;
    }
    
    footer .after-footer .footer-left,
    footer .after-footer .footer-center,
    footer .after-footer .footer-right {
        width: 100%;
        justify-content: center;
    }
    
    footer .after-footer .footer-center {
        order: 3;
        flex-wrap: wrap;
    }
    
    footer .after-footer .footer-right {
        order: 2;
        margin-left: 0;
    }
    
    footer .after-footer .footer-left {
        order: 1;
    }
    
    #header-wrapper {
        display: block;
        height: auto;
        min-height: auto;
        padding: 0;
    }
    
    #header-wrapper #slider {
        display: none;
    }
    
    .nivo-controlNav,
    .nivo-directionNav {
        display: none !important;
    }
    
    #header-wrapper .advantages {
        display: none;
    }
    
    #products:not(.cheats) {
        padding-top: 30px;
    }

    #header-wrapper .content .title {
        font-size: 20px;
    }

    #header-wrapper .content .title span {
        align-items: baseline;
    }

    #header-wrapper .content .title span img {
        width: 25px;
    }

    body {
        overflow-x: hidden;
    }

    .mobile-navbar {
        /*
        width: 50%;
        padding-right: 30px;
        padding-left: 0;
*/
        padding-top: 200px;
    }

    .mobile-navbar a {
        text-align: center;
        font-size: 20px;
    }

    #product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper {
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }

    #product .content .info-page .functions {
        width: 100%;
    }

    #product .content .main-info .right-block .functions-block {
        flex-wrap: wrap;
    }

    #product .content .main-info .right-block .functions-block .func-name {
        margin-bottom: 10px;
    }

    #product .content .main-info .right-block .functions-block {
        margin-bottom: 15px;
    }

    #header-wrapper .content h3 {
        font-size: 13px;
    }

    #products .sort-games .sort-by-cheats {
        width: 100%;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq {
        flex-direction: column;
        align-items: flex-start;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq img {
        margin: auto;
        margin-bottom: 15px;
    }

    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .btn {
        margin: auto;
        margin-top: 15px;
    }

    header .navbar-nav .contacts {
        display: none;
    }

    .mobile-menu {
        margin-left: auto;
    }

    #products .pre-info {
        align-items: flex-start;
    }

    #product .content .main-info .left-block .carousel {
        flex-direction: column-reverse;
    }

    #product .content .main-info .left-block .carousel .screens {
        direction: initial;
        flex-direction: row;
        padding-left: 0;
        padding-top: 20px;
        max-width: 100%;
        overflow: hidden;
        overflow-x: auto;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 10px;
    }

    #product .content .main-info .left-block .carousel .screens .item {
        margin-bottom: 0;
        margin-right: 10px;
        min-width: 60px;
    }

    #product .content .main-info .left-block .carousel .screens::-webkit-scrollbar {
        height: 5px;
    }

    #product .content .main-info .right-block .func {
        display: none;
    }

    footer .after-footer {
        font-size: 12px;
    }

    #bg {
        height: 200%;
    }

    #product .content .main-info .left-block .carousel .main-screen {
        height: 300px;
    }
    
    footer .content .col:nth-child(2) {
        width: 100%;
        margin-right: 0;
    }
    
    #cheats-page-wrapper {
        padding-top: 100px;
    }
    
    #product {
        background: 0;
    }
    
    #product .content .main-info .left-block {
        min-width: 100%;
    }
    
    #product .content .main-info .left-block .carousel .screens .item {
        min-width: 80px;
    }
    
    #product .content .main-info .left-block .carousel .screens {
        padding-top: 0;
    }
    
    #product .content .info-page .reviews {
        width: 100%;
    }
    
    #product .content .info-page {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        margin-top: 40px;
    }
    
    #product .content .info-page .reviews .send-review .rate-l {
        display: none;
    }
    
    #product .content .info-page .reviews .send-review .btn {
        margin-left: auto;
    }
    
    #product .content .main-info .right-block-wrapper {
        flex-direction: column;
    }
    
    #product .content .main-info .right-block.accept-order {
        padding-left: 0;
        margin-bottom: 0;
    }
    
    #product .content .main-info .right-block.accept-order::before {
        display: none;
    }
    
    #product .content .main-info .center-f .system-recom-block .blocks .block-recom-wrapper:nth-child(5) {
        padding-bottom: 30px;
    }
    
    #product .content .main-info .right-block .header-line {
        flex-direction: column;
    }
    
    #product .content .main-info .right-block .header-line .game-block {
        margin-top: 15px;
    }
    
    #product .content .main-info .center-f {
        padding-right: 0;
    }
    
    #product .content .main-info .center-f .system-recom-block .filter-info .fil-s {
        margin-right: 0;
        font-size: 11px;
    }
    
    #product-wrapper .content .description {
        font-size: 14px;
    }
    
    #product-wrapper {
        height: 350px;
    }
    
    #product-wrapper.tickets.terms.faq .content .faq-blocks .faq-wrapper .faq .btn-new-style {
        margin-left: 0;
        margin-top: 15px;
    }
}


/* ========================================
   REVIEWS PAGE STYLES
======================================== */

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.review-card {
    background: #1a1d23;
    border: 1px solid rgba(255, 144, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 144, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user-info {
    flex: 1;
    min-width: 0;
}

.review-username {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}

.review-product-info {
    font-size: 14px;
    margin-bottom: 5px;
    color: #7a8a7c;
}

.review-product-link {
    color: #ff9000;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.review-product-link:hover {
    color: #ffb347;
    text-decoration: underline;
}

.review-date {
    font-size: 13px;
    color: #5a6268;
}

.review-rating {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 4px;
}

.review-rating i {
    color: #ffba00;
    font-size: 18px;
}

.review-rating i.fa-regular {
    color: #3a3c42;
}

.review-body {
    line-height: 1.7;
}

.review-text {
    color: #8a9199;
    font-size: 15px;
    word-wrap: break-word;
}

.no-reviews {
    text-align: center;
    padding: 100px 20px;
    color: #c2c6d7;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-rating {
        position: static;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 15px;
    }
    
    .review-username {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
    }
}


/* Logo responsive styles */
@media (max-width: 768px) {
    header .navbar-nav .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    header .navbar-nav .logo img {
        width: 40px;
        height: 40px;
    }
    
    /* ===== MOBILE SEARCH — now uses fullscreen overlay (#searchOverlay) ===== */
    
    .header-search-wrap {
        display: none !important;
    }
    
    .header-icon-btn i {
        font-size: 16px;
    }
    
    .header-support-btn {
        display: none !important;
    }
    
    .header-support-btn span {
        display: none;
    }
    
    .header-support-btn i {
        font-size: 18px;
    }
    
    /* Footer buttons for tablets */
    .footer-icon-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .footer-icon-btn i {
        font-size: 16px;
    }
    
    .footer-support-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    footer .after-footer .footer-center img {
        width: 35px;
        height: auto;
    }
    
    /* Mobile header layout fix — logo left, actions center, hamburger right */
    header .navbar-nav {
        padding-left: 0;
    }
    
    header .navbar-nav .logo {
        margin-right: auto;
    }
    
    .header-actions {
        margin-left: 0;
        margin-right: 10px;
    }
    
    /* ===== MOBILE HERO SECTION ===== */
    .mobile-hero {
        display: block;
        padding: 100px 20px 30px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-hero .mobile-hero-title {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        line-height: 1.3;
        margin-bottom: 14px;
    }
    
    .mobile-hero .mobile-hero-title .gradient-text {
        font-weight: 700 !important;
    }
    
    .mobile-hero .mobile-hero-desc {
        font-size: 14px;
        color: #8a8f9e;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mobile-hero .mobile-hero-btns {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-bottom: 28px;
    }
    
    .mobile-hero .mobile-hero-btns a {
        padding: 14px 24px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .mobile-hero .mobile-hero-btns .btn-primary {
        background: #ff9000;
        color: #000;
    }
    
    .mobile-hero .mobile-hero-btns .btn-primary:hover {
        box-shadow: 0 5px 20px rgba(255, 144, 0, 0.4);
    }
    
    .mobile-hero .mobile-hero-btns .btn-secondary {
        background: #21252c;
        color: #c2c6d7;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .mobile-hero .mobile-hero-btns .btn-secondary i {
        margin-right: 6px;
        opacity: 0.6;
    }
    
    .mobile-hero-games {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .mobile-hero-games .game-badge {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 100px;
        font-size: 12px;
        color: #c2c6d7;
        font-weight: 500;
        transition: all 0.25s ease;
    }
    
    .mobile-hero-games .game-badge:hover {
        background: rgba(255, 144, 0, 0.08);
        border-color: rgba(255, 144, 0, 0.2);
        color: #fff;
    }
    
    .mobile-hero-games .game-badge img {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    /* Menu active state */
    .mobile-navbar a.active {
        color: #ff9000 !important;
    }
    
    header .menu a.active {
        color: #ff9000 !important;
    }
}

@media (max-width: 480px) {
    header .navbar-nav .logo-text {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    
    header .navbar-nav .logo img {
        width: 35px;
        height: 35px;
    }
    
    /* Header buttons for mobile */
    .header-icon-btn {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .header-icon-btn i {
        font-size: 14px;
    }
    
    .header-icon-btn .lang-text {
        font-size: 12px;
    }
    
    .header-support-btn {
        display: none !important;
    }
    
    .header-support-btn i {
        display: none;
    }
    
    /* Footer buttons for mobile */
    .footer-icon-btn {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .footer-icon-btn i {
        font-size: 14px;
    }
    
    .footer-icon-btn .lang-text {
        font-size: 12px;
    }
    
    .footer-support-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .footer-support-btn i {
        font-size: 14px;
    }
    
    footer .after-footer .footer-center {
        gap: 10px;
    }
    
    footer .after-footer .footer-center img {
        width: 30px;
        height: auto;
    }
    
    footer .after-footer .footer-right {
        gap: 8px;
    }
}


/* ========================================
   STATS BAR SECTION
======================================== */

#stats-bar {
    padding: 60px 0 40px 0;
    background: transparent;
    margin: 50px 0 0 0;
}

#stats-bar .stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px;
    background: rgba(26, 29, 35, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid #ff9000;
    border-radius: 15px;
    gap: 40px;
    animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #ff9000;
        box-shadow: 0 0 20px rgba(255, 144, 0, 0.3);
    }
    50% {
        border-color: #ffb347;
        box-shadow: 0 0 40px rgba(255, 144, 0, 0.6);
    }
}

#stats-bar .stat-item {
    text-align: center;
    flex: 1;
}

#stats-bar .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff9000;
    margin-bottom: 10px;
    -webkit-text-fill-color: #ff9000;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 144, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 144, 0, 0.8));
    }
}

#stats-bar .stat-label {
    font-size: 16px;
    color: #8a9199;
    text-transform: lowercase;
}

/* Responsive */
@media (max-width: 992px) {
    #stats-bar .stats-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    #stats-bar .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    #stats-bar .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    #stats-bar {
        padding: 40px 0;
        margin: 40px 0 0 0;
    }
    
    #stats-bar .stats-wrapper {
        padding: 25px 15px;
        gap: 25px;
    }
    
    #stats-bar .stat-item {
        flex: 0 0 calc(50% - 12px);
    }
    
    #stats-bar .stat-number {
        font-size: 32px;
    }
    
    #stats-bar .stat-label {
        font-size: 14px;
    }
}


/* ========================================
   REVIEWS MARQUEE SLIDER
======================================== */

.reviews-slider-section {
    padding: 50px 0 40px;
    overflow: hidden;
    position: relative;
    background: #1d1e23;
}

.reviews-slider-section .section-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.reviews-slider-section .section-title .gradient-text {
    color: #ff9000;
    -webkit-text-fill-color: #ff9000;
}

.reviews-slider-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 144, 0, 0.5), transparent);
    border-radius: 100px;
    filter: blur(1px);
    animation: line-glow 4s ease-in-out infinite;
}

@keyframes shine-flow {
    to { background-position: 200% center; }
}

@keyframes line-glow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.reviews-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
    padding: 15px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, #1d1e23 10%, transparent);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, #1d1e23 10%, transparent);
}

.reviews-track {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    min-width: 100%;
    animation: scroll-reviews 60s linear infinite;
}

.reviews-marquee.reverse .reviews-track {
    animation: scroll-reviews-reverse 90s linear infinite;
}

@keyframes scroll-reviews {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 20px)); }
}

@keyframes scroll-reviews-reverse {
    from { transform: translateX(calc(-100% - 30px)); }
    to { transform: translateX(0); }
}

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

.review-card {
    width: 300px;
    min-height: 180px;
    height: auto;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02), 0 10px 40px rgba(0,0,0,0.4);
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(255,144,0,0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.review-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(45deg);
    transition: all 0.7s ease;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255,255,255,0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05), 0 20px 60px rgba(0,0,0,0.6);
}

.review-card:hover::before { opacity: 1; }
.review-card:hover::after { left: 100%; }

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.review-avatar-container {
    position: relative;
    width: 40px;
    height: 40px;
}

.review-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,144,0,0.4);
    box-shadow: 0 0 15px rgba(255,144,0,0.2);
}

.review-user-info { flex: 1; }

.review-username {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.review-product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,144,0,0.7);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.review-product-link i {
    font-size: 10px;
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: all 0.3s ease;
}

.review-product-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,144,0,0.8);
}

.review-product-link:hover i {
    opacity: 1;
    transform: translate(0, 0);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin: 8px 0;
    position: relative;
    z-index: 2;
}

.review-stars i {
    color: #ffc107;
    font-size: 12px;
    filter: drop-shadow(0 0 6px rgba(255,193,7,0.5));
}

.review-body {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.6);
    margin: 0;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
}

.review-card > i.fa-quote-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 40px;
    color: rgba(255,255,255,0.03);
    z-index: 1;
    pointer-events: none;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.review-game-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.review-game-tag {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    display: inline-block;
}

.review-game-link:hover .review-game-tag {
    background: rgba(255,144,0,0.1);
    border-color: rgba(255,144,0,0.4);
    color: #fff;
    box-shadow: 0 0 20px rgba(255,144,0,0.2);
    transform: translateY(-2px) scale(1.05);
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
    padding: 60px 0 70px;
    background: #1d1e23;
}

.faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 45px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 144, 0, 0.5), transparent);
    border-radius: 100px;
    filter: blur(1px);
    animation: line-glow 4s ease-in-out infinite;
}

.faq-cards {
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: center;
}

.faq-card {
    flex: 1;
    max-width: 380px;
    text-align: center;
    padding: 40px 28px 35px;
    border-radius: 16px;
    background: rgb(15 15 20 / 50%);
    border: 1px solid rgb(30 32 40 / 70%);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 144, 0, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 144, 0, 0.35);
    box-shadow: 0 0 30px rgba(255, 144, 0, 0.1), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.faq-icon {
    font-size: 44px;
    margin-bottom: 22px;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 12px rgba(255, 144, 0, 0.5));
}

.faq-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #e0e0e6;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.faq-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #8a8fa0;
    font-weight: 300;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .faq-cards {
        flex-direction: column;
        align-items: center;
    }
    .faq-card { max-width: 400px; width: 100%; }
}

@media (max-width: 576px) {
    .faq-title { font-size: 28px; }
    .faq-card { padding: 30px 20px 25px; }
    .faq-icon { font-size: 36px; }
}

@media (max-width: 768px) {
    .reviews-slider-section { padding: 40px 0 30px; }
    .reviews-slider-section .section-title { font-size: 28px; margin-bottom: 20px; }
    .review-card { width: 260px; min-height: 160px; padding: 18px; }
    .reviews-marquee::before, .reviews-marquee::after { width: 100px; }
}

@media (max-width: 480px) {
    .reviews-slider-section .section-title { font-size: 22px; }
    .review-card { width: 240px; min-height: 150px; }
    .reviews-marquee::before, .reviews-marquee::after { width: 50px; }
    .review-avatar-container { width: 34px; height: 34px; }
}

/* ========================================
   FULLSCREEN SEARCH OVERLAY (like example)
======================================== */

.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(15, 16, 20, 0.98);
    overflow-y: auto;
    padding-top: 80px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.show {
    display: block;
    opacity: 1;
    animation: overlayFadeIn 0.3s ease forwards;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.search-overlay-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.25s ease;
    z-index: 100000;
}

.search-overlay-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.search-overlay-container {
    width: 90%;
    max-width: 620px;
    margin: 0 auto;
}

.search-overlay-input-wrap {
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: rgba(25, 26, 30, 0.9);
    box-shadow: 0 30px 30px rgba(0,0,0,0.07), 0 15px 15px rgba(0,0,0,0.06), 0 10px 8px rgba(0,0,0,0.05);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    height: 70px;
    border: 1px solid rgba(255, 144, 0, 0.08);
    transition: border-color 0.3s ease;
}

.search-overlay-input-wrap:focus-within {
    border-color: rgba(255, 144, 0, 0.3);
}

.search-overlay-input-wrap i {
    font-size: 20px;
    padding-right: 18px;
    margin-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: #c2c6d7;
    flex-shrink: 0;
}

.search-overlay-input {
    height: 100%;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: none;
    border: none;
    outline: none;
}

.search-overlay-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-overlay-results {
    margin-top: 12px;
    background: rgba(25, 26, 30, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    overflow: hidden;
    display: none;
    box-shadow: 0 30px 30px rgba(0,0,0,0.07), 0 15px 15px rgba(0,0,0,0.06);
}

.search-overlay-results.show {
    display: block;
}

.search-overlay-results .so-result-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: #c2c6d7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.search-overlay-results .so-result-item:last-child {
    border-bottom: none;
}

.search-overlay-results .so-result-item:hover {
    background: rgba(255, 144, 0, 0.06);
}

.search-overlay-results .so-result-img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-right: 14px;
    background: rgba(38, 39, 49, 0.7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-overlay-results .so-result-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.search-overlay-results .so-result-info {
    flex: 1;
    min-width: 0;
}

.search-overlay-results .so-result-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-overlay-results .so-result-meta {
    font-size: 13px;
    color: rgba(255, 144, 0, 0.7);
}

.search-overlay-results .so-result-price {
    margin-left: auto;
    font-size: 18px;
    font-weight: 700;
    color: #ff9000;
    flex-shrink: 0;
    padding-left: 12px;
}

.search-overlay-results .so-result-price span {
    font-size: 13px;
    font-weight: 400;
    color: #9296a9;
    margin-right: 4px;
}

.search-overlay-results .so-no-results {
    padding: 30px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.search-overlay-results .so-no-results i {
    margin-right: 6px;
}

/* Search overlay mobile adjustments */
@media (max-width: 768px) {
    .search-overlay {
        padding-top: 60px;
    }
    
    .search-overlay-container {
        width: 94%;
    }
    
    .search-overlay-input-wrap {
        height: 56px;
        padding: 0 18px;
        border-radius: 12px;
    }
    
    .search-overlay-input-wrap i {
        font-size: 18px;
        padding-right: 14px;
        margin-right: 14px;
    }
    
    .search-overlay-input {
        font-size: 15px;
    }
    
    .search-overlay-results .so-result-item {
        padding: 14px 16px;
    }
    
    .search-overlay-results .so-result-img {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   MOBILE STATS SECTION
======================================== */

.mobile-stats {
    display: none;
}

@media (max-width: 768px) {
    .mobile-stats {
        display: block;
        padding: 40px 20px;
        background: #1a1d23;
        border-top: 1px solid rgba(255, 144, 0, 0.06);
        text-align: center;
    }
    
    .mobile-stats-title {
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .mobile-stats-grid {
        display: flex;
        justify-content: center;
        gap: 50px;
    }
    
    .mobile-stat-item {
        text-align: center;
    }
    
    .mobile-stat-number {
        font-size: 42px;
        font-weight: 700;
        color: #ff9000;
        line-height: 1;
        margin-bottom: 6px;
        -webkit-text-fill-color: #ff9000;
        font-variant-numeric: tabular-nums;
    }
    
    .mobile-stat-label {
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
}

/* ========================================
   NEW PRODUCT PAGE DESIGN
======================================== */

#product.product-new {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
}

/* Breadcrumbs */
.product-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.product-breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumbs a:hover {
    color: #ff9000;
}

.product-breadcrumbs .current {
    color: #ff9000;
}

.product-breadcrumbs i.fa-angle-right {
    font-size: 10px;
    opacity: 0.4;
}

/* Layout: 2 columns */
.product-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.product-main {
    flex: 1;
    min-width: 0;
}

.product-order-sidebar {
    width: 360px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
}

/* Hero image */
.product-hero-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.product-hero-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Info card */
.product-info-card {
    background: #21252c;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.product-game-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.product-game-icon img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.product-cheat-name {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-status.undetected {
    background: rgba(76, 175, 80, 0.12);
    color: #4caf50;
}

.product-status.useatownrisk {
    background: rgba(255, 152, 0, 0.12);
    color: #ff9800;
}

.product-status.detected {
    background: rgba(244, 67, 54, 0.12);
    color: #f44336;
}

.product-status.onupdate {
    background: rgba(33, 150, 243, 0.12);
    color: #2196f3;
}

/* Trust badges */
.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-trust-badges .trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.product-trust-badges .trust-badge i {
    color: #ff9000;
    font-size: 13px;
}

.product-trust-badges .trust-badge b {
    color: #fff;
}

/* Description */
.product-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-height: 120px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.product-description.expanded {
    max-height: 3000px;
}

.product-show-more {
    display: inline-block;
    color: #ff9000;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 18px;
}

.product-show-more:hover {
    text-decoration: underline;
}

/* Function tags */
.product-func-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-func-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 144, 0, 0.08);
    border: 1px solid rgba(255, 144, 0, 0.15);
    border-radius: 8px;
    color: #ff9000;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.product-func-tag:hover {
    background: rgba(255, 144, 0, 0.15);
    border-color: rgba(255, 144, 0, 0.3);
}

/* Screenshots */
.product-screens {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 144, 0, 0.3) transparent;
}

.product-screen-item {
    flex-shrink: 0;
    width: 140px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.product-screen-item:hover {
    border-color: rgba(255, 144, 0, 0.4);
}

.product-screen-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-screen-item .video-figure {
    width: 100%;
    height: 100%;
    background: #1a1d23;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9000;
    font-size: 24px;
}

/* Tabs */
.product-tabs-block {
    background: #21252c;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.product-tabs-header {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-tab {
    flex: 1;
    padding: 16px 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.product-tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.product-tab.active {
    color: #ff9000;
}

.product-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #ff9000;
    border-radius: 2px 2px 0 0;
}

.product-tab-content {
    display: none;
    padding: 24px;
}

.product-tab-content.active {
    display: block;
}

/* Function blocks inside tab */
.product-func-block {
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    overflow: hidden;
}

.product-func-name {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: background 0.2s;
    margin: 0;
}

.product-func-name:hover {
    background: rgba(255, 144, 0, 0.06);
}

.product-func-toggle {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s;
}

.product-func-block.open .product-func-toggle {
    transform: rotate(180deg);
}

.product-func-desc {
    display: none;
    padding: 16px 18px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.product-func-block.open .product-func-desc {
    display: block;
}

/* Reviews inside tab */
.product-review {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.product-review:last-child {
    border-bottom: none;
}

.product-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.product-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.product-review-user {
    flex: 1;
}

.product-review-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.product-review-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.product-review-stars {
    color: #ff9000;
    font-size: 13px;
}

.product-review-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.product-empty-reviews {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.35);
}

.product-empty-reviews i {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    color: rgba(255, 144, 0, 0.3);
}

.product-empty-reviews p {
    margin-bottom: 16px;
}

.product-empty-reviews .go-send {
    display: inline-block;
    padding: 10px 24px;
    background: #ff9000;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

/* System requirements grid */
.product-sysreq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-sysreq-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-sysreq-item > i {
    font-size: 24px;
    color: #ff9000;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.product-sysreq-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-sysreq-item p {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin: 2px 0 0;
}

/* ORDER SIDEBAR */
.product-order-card {
    background: #21252c;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 16px;
}

.product-order-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}

.product-order-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.product-plan {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.product-plan:hover {
    border-color: rgba(255, 144, 0, 0.2);
}

.product-plan.active {
    border-color: #ff9000;
    background: rgba(255, 144, 0, 0.06);
}

.product-plan-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.product-plan.active .product-plan-check {
    border-color: #ff9000;
    background: #ff9000;
}

.product-plan.active .product-plan-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

.product-plan-time {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.product-plan-price {
    margin-left: auto;
    font-size: 16px;
    font-weight: 700;
    color: #ff9000;
}

/* Buy button */
.product-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #ff9000;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}

.product-buy-btn:hover {
    box-shadow: 0 6px 24px rgba(255, 144, 0, 0.35);
    transform: translateY(-1px);
}

.product-buy-btn i {
    font-size: 14px;
}

/* Agreement */
.product-order-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}

.product-order-agree a {
    color: #ff9000;
    text-decoration: none;
}

.product-agree-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.25s;
}

.product-agree-check.active {
    background: #ff9000;
}

.product-agree-check i {
    font-size: 10px;
    color: #000;
    opacity: 0;
    transition: opacity 0.2s;
}

.product-agree-check.active i {
    opacity: 1;
}

.product-buy-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Support card */
.product-support-card {
    background: #21252c;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-support-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.product-support-header i {
    color: #ff9000;
    font-size: 18px;
}

.product-support-links {
    display: flex;
    gap: 10px;
}

.product-support-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.product-support-btn.tg {
    background: rgba(0, 136, 204, 0.12);
    color: #0088cc;
}

.product-support-btn.tg:hover {
    background: rgba(0, 136, 204, 0.2);
}

.product-support-btn.dc {
    background: rgba(88, 101, 242, 0.12);
    color: #5865f2;
}

.product-support-btn.dc:hover {
    background: rgba(88, 101, 242, 0.2);
}

/* ========================================
   PRODUCT PAGE — MOBILE RESPONSIVE
   ======================================== */

@keyframes prodFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes prodPulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 144, 0, 0); }
    50% { box-shadow: 0 0 16px 2px rgba(255, 144, 0, 0.12); }
}

/* Product Lightbox (base styles) */
.plb {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100% - 75px);
    z-index: 50;
}
.plb.show { display: block; }
.plb-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 15, 20, 0.55);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
.plb-close {
    position: absolute;
    top: 16px; right: 18px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 4;
}
.plb-close:hover { color: #fff; background: rgba(255, 255, 255, 0.15); }
.plb-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 4;
}
.plb-arrow:hover { color: #fff; background: rgba(255, 255, 255, 0.15); }
.plb-prev { left: 18px; }
.plb-next { right: 18px; }
.plb-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(100% - 140px);
    max-height: calc(100% - 100px);
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
}
.plb-img {
    max-width: 100%;
    max-height: calc(100vh - 75px - 80px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    user-select: none;
}
.plb-video {
    display: none;
    width: 80vw; max-width: 900px; height: 60vh;
    border: none; border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.plb-counter {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    font-size: 14px; font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 18px;
    border-radius: 20px;
    z-index: 4;
    font-family: 'Montserrat', sans-serif;
}


/* === TABLET: <=900px === */
@media (max-width: 900px) {
    .product-layout { flex-direction: column; gap: 20px; }
    .product-order-sidebar { width: 100%; position: static; }
    .product-hero-img img { height: 220px; }
    .product-cheat-name { font-size: 26px; }
    .product-sysreq-grid { grid-template-columns: 1fr 1fr; }
    .product-tabs-header { overflow-x: auto; scrollbar-width: none; }
    .product-tabs-header::-webkit-scrollbar { display: none; }
    .product-tab { white-space: nowrap; font-size: 13px; padding: 14px 16px; }
}

/* === MOBILE: <=768px === */
@media (max-width: 768px) {
    /* Container */
    #product.product-new { padding-top: 80px; padding-bottom: 80px; }
    #product.product-new .container { padding: 0 14px; }

    /* Breadcrumbs */
    .product-breadcrumbs { font-size: 12px; gap: 6px; margin-bottom: 14px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .product-breadcrumbs::-webkit-scrollbar { display: none; }

    /* Layout */
    .product-layout { flex-direction: column; gap: 14px; }
    .product-main { width: 100%; min-width: 0; }
    .product-order-sidebar { width: 100%; position: static; }

    /* Hero */
    .product-hero-img { border-radius: 10px; margin-bottom: 12px; }
    .product-hero-img img { height: 180px; width: 100%; border-radius: 10px; }

    /* Info card */
    .product-info-card { padding: 16px; border-radius: 10px; margin-bottom: 12px; animation: prodFadeUp 0.4s ease both; }
    .product-info-header { flex-direction: column; gap: 10px; margin-bottom: 12px; }
    .product-info-left { width: 100%; }
    .product-game-name { font-size: 12px; gap: 6px; margin-bottom: 4px; }
    .product-game-icon img { width: 18px; height: 18px; }
    .product-cheat-name { font-size: 22px; line-height: 1.2; word-break: break-word; }
    .product-status { align-self: flex-start; padding: 5px 10px; font-size: 11px; border-radius: 6px; }

    /* Trust badges */
    .product-trust-badges { gap: 6px; margin-bottom: 14px; }
    .product-trust-badges .trust-badge { padding: 5px 8px; font-size: 11px; border-radius: 6px; }

    /* Description */
    .product-description { font-size: 13px; line-height: 1.6; max-height: 90px; }
    .product-show-more { font-size: 12px; margin-bottom: 12px; }

    /* Function tags */
    .product-func-tags { gap: 6px; margin-bottom: 14px; }
    .product-func-tag { padding: 6px 10px; font-size: 11px; border-radius: 6px; }

    /* Screenshots */
    .product-screens { gap: 8px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
    .product-screen-item { width: 140px; height: 88px; border-radius: 8px; scroll-snap-align: start; }
    .product-screen-item:active { transform: scale(0.97); }

    /* Tabs */
    .product-tabs-block { border-radius: 10px; animation: prodFadeUp 0.4s ease 0.05s both; }
    .product-tabs-header { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .product-tabs-header::-webkit-scrollbar { display: none; }
    .product-tab { white-space: nowrap; font-size: 12px; padding: 12px 14px; flex: none; }
    .product-tab-content { padding: 14px; }

    /* Function blocks */
    .product-func-block { margin-bottom: 8px; border-radius: 8px; }
    .product-func-name { padding: 11px 14px; font-size: 13px; }
    .product-func-desc { padding: 11px 14px; font-size: 12px; line-height: 1.7; }

    /* Reviews */
    .product-review { padding: 12px 0; }
    .product-review-header { gap: 10px; margin-bottom: 8px; }
    .product-review-avatar { width: 32px; height: 32px; }
    .product-review-name { font-size: 13px; }
    .product-review-date { font-size: 11px; }
    .product-review-stars { font-size: 12px; }
    .product-review-text { font-size: 13px; line-height: 1.5; }
    .product-empty-reviews { padding: 24px 14px; }
    .product-empty-reviews i { font-size: 28px; margin-bottom: 8px; }
    .product-empty-reviews p { font-size: 13px; }
    .product-empty-reviews .go-send { padding: 10px 20px; font-size: 12px; }

    /* System requirements */
    .product-sysreq-grid { grid-template-columns: 1fr; gap: 8px; }
    .product-sysreq-item { padding: 12px; gap: 10px; border-radius: 8px; }
    .product-sysreq-item > i { font-size: 18px; width: 24px; }
    .product-sysreq-item span { font-size: 10px; }
    .product-sysreq-item p { font-size: 13px; }

    /* Order card */
    .product-order-card { padding: 16px; border-radius: 10px; margin-bottom: 12px; animation: prodFadeUp 0.4s ease 0.1s both; }
    .product-order-title { font-size: 17px; margin-bottom: 14px; }
    .product-order-plans { gap: 8px; margin-bottom: 14px; }
    .product-plan { padding: 11px 12px; gap: 10px; border-radius: 8px; }
    .product-plan:active { transform: scale(0.98); }
    .product-plan.active { animation: prodPulseGlow 2s ease infinite; }
    .product-plan-check { width: 18px; height: 18px; }
    .product-plan.active .product-plan-check::after { width: 7px; height: 7px; }
    .product-plan-time { font-size: 13px; }
    .product-plan-price { font-size: 15px; }
    .product-buy-btn { padding: 14px; font-size: 15px; border-radius: 10px; }
    .product-buy-btn:active:not(.disabled) { transform: scale(0.97); }

    /* Agreement */
    .product-order-agree { margin-top: 12px; gap: 8px; font-size: 11px; }
    .product-agree-check { width: 16px; height: 16px; border-radius: 3px; }
    .product-agree-check i { font-size: 9px; }

    /* Support */
    .product-support-card { padding: 14px; border-radius: 10px; animation: prodFadeUp 0.4s ease 0.15s both; }
    .product-support-header { margin-bottom: 10px; font-size: 13px; gap: 8px; }
    .product-support-header i { font-size: 16px; }
    .product-support-links { gap: 8px; }
    .product-support-btn { padding: 10px; font-size: 12px; border-radius: 8px; }
    .product-support-btn:active { transform: scale(0.96); }

    /* Review modal */
    .modal-wrapper .modal.send-review { width: calc(100% - 24px); max-width: 400px; border-radius: 12px; }

    /* Lightbox */
    .plb { top: 60px; height: calc(100% - 60px); }
    .plb-arrow { width: 36px; height: 36px; font-size: 14px; border-radius: 8px; }
    .plb-prev { left: 8px; }
    .plb-next { right: 8px; }
    .plb-content { max-width: calc(100% - 80px); max-height: calc(100% - 80px); }
    .plb-close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 16px; border-radius: 8px; }
    .plb-img { max-height: calc(100vh - 60px - 60px); border-radius: 8px; }
    .plb-counter { bottom: 14px; font-size: 12px; padding: 6px 14px; }

    /* Mobile sticky bar */
    .product-mobile-bar { display: flex; }
}

/* === SMALL MOBILE: <=420px === */
@media (max-width: 420px) {
    #product.product-new { padding-top: 72px; }
    #product.product-new .container { padding: 0 10px; }
    .product-breadcrumbs { font-size: 11px; gap: 4px; margin-bottom: 10px; }
    .product-hero-img img { height: 160px; }
    .product-info-card { padding: 12px; border-radius: 8px; }
    .product-cheat-name { font-size: 19px; }
    .product-status { padding: 4px 8px; font-size: 10px; }
    .product-trust-badges .trust-badge { padding: 4px 7px; font-size: 10px; }
    .product-description { font-size: 12px; max-height: 75px; }
    .product-func-tag { padding: 5px 8px; font-size: 10px; }
    .product-screen-item { width: 120px; height: 75px; }
    .product-tab { font-size: 11px; padding: 10px 11px; }
    .product-tab-content { padding: 12px; }
    .product-func-name { padding: 10px 12px; font-size: 12px; }
    .product-func-desc { padding: 10px 12px; font-size: 11px; }
    .product-review-avatar { width: 28px; height: 28px; }
    .product-review-name { font-size: 12px; }
    .product-review-text { font-size: 12px; }
    .product-sysreq-item { padding: 10px; gap: 8px; }
    .product-sysreq-item > i { font-size: 16px; width: 20px; }
    .product-order-card { padding: 12px; border-radius: 8px; }
    .product-order-title { font-size: 15px; margin-bottom: 12px; }
    .product-plan { padding: 10px; gap: 8px; }
    .product-plan-time { font-size: 12px; }
    .product-plan-price { font-size: 14px; }
    .product-buy-btn { padding: 13px; font-size: 14px; border-radius: 8px; }
    .product-support-card { padding: 12px; border-radius: 8px; }
    .product-support-btn { padding: 9px; font-size: 11px; }
    .plb-content { max-width: calc(100% - 20px); }
    .plb-arrow { width: 30px; height: 30px; font-size: 12px; }
    .plb-prev { left: 4px; }
    .plb-next { right: 4px; }
    .plb-close { width: 30px; height: 30px; top: 6px; right: 6px; }
}

/* ========================================
   MOBILE STICKY BUY BAR
   ======================================== */
.product-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(33, 37, 44, 0.95);
    border-top: 1px solid rgba(255, 144, 0, 0.15);
    padding: 10px 14px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.product-mobile-bar.visible { transform: translateY(0); }
.product-mobile-bar-info { display: flex; flex-direction: column; min-width: 0; }
.product-mobile-bar-name { font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-mobile-bar-price { font-size: 15px; font-weight: 700; color: #ff9000; }
.product-mobile-bar-btn { flex-shrink: 0; display: flex; align-items: center; gap: 6px; padding: 11px 22px; background: #ff9000; color: #000; border-radius: 8px; font-size: 13px; font-weight: 700; font-family: 'Montserrat', sans-serif; text-decoration: none; }
.product-mobile-bar-btn:active { transform: scale(0.96); }
.product-mobile-bar-btn i { font-size: 11px; }

/* ========================================
   GLOBAL MOBILE FIXES
   ======================================== */
@media (max-width: 768px) {
    .container { padding: 0 14px; }
    #products .products { margin-right: 0; }
    #product .content .main-info .center-f .system-recom-block .blocks { margin-right: 0; }
    #product-wrapper.tickets.terms.faq .content .faq-blocks { margin-right: 0; }
}

@media (max-width: 600px) {
    .container { padding: 0 14px; }
}

/* ========================================
   FAQ PAGE (new design)
======================================== */
.faq-page-hero {
    padding: 100px 0 50px;
    text-align: center;
    background: #1a1d23;
    border-bottom: 1px solid rgba(255,144,0,0.06);
}
.faq-page-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-page-hero-icon {
    font-size: 64px;
    color: #ff9000;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255,144,0,0.3));
}
.faq-page-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.faq-page-hero-desc {
    font-size: 15px;
    color: #8a8fa0;
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

.faq-page-content {
    padding: 50px 0 80px;
    background: #1d1e23;
}

.faq-block {
    margin-bottom: 45px;
}
.faq-block:last-child {
    margin-bottom: 0;
}

.faq-block-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,144,0,0.1);
}
.faq-block-title i {
    font-size: 22px;
    color: #ff9000;
}
.faq-block-title span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.faq-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.faq-download-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #21252c;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
    transition: all 0.3s ease;
}
.faq-download-card:hover {
    border-color: rgba(255,144,0,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.faq-download-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.faq-download-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,144,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-download-icon-circle i {
    font-size: 20px;
    color: #ff9000;
}

.faq-download-info {
    flex: 1;
    min-width: 0;
}
.faq-download-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e6;
    line-height: 1.3;
}
.faq-download-desc {
    display: block;
    font-size: 12px;
    color: #6b7080;
    margin-top: 4px;
}

.faq-download-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,144,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.faq-download-btn i {
    font-size: 16px;
    color: #ff9000;
}
.faq-download-card:hover .faq-download-btn {
    background: #ff9000;
}
.faq-download-card:hover .faq-download-btn i {
    color: #fff;
}

/* ========================================
   WARRANTY PAGE
======================================== */
.warranty-hero {
    padding: 100px 0 50px;
    text-align: center;
    background: #1a1d23;
    border-bottom: 1px solid rgba(255,144,0,0.06);
}
.warranty-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.warranty-hero-icon {
    font-size: 64px;
    color: #ff9000;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255,144,0,0.3));
}
.warranty-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.warranty-hero-desc {
    font-size: 15px;
    color: #8a8fa0;
    max-width: 460px;
    line-height: 1.6;
    margin: 0;
}

.warranty-section {
    padding: 50px 0 80px;
    background: #1d1e23;
}

.warranty-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.warranty-card {
    text-align: center;
    padding: 35px 25px 30px;
    border-radius: 14px;
    background: #21252c;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.warranty-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,144,0,0.25);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.warranty-card-icon {
    font-size: 40px;
    color: #ff9000;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255,144,0,0.3));
}

.warranty-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e6;
    margin: 0 0 12px;
}

.warranty-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #8a8fa0;
    margin: 0;
}

/* Warranty Statistics */
.warranty-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,144,0,0.08);
}

.warranty-stat {
    text-align: center;
}

.warranty-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #ff9000;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.warranty-stat p {
    font-size: 13px;
    color: #8a8fa0;
    line-height: 1.4;
    margin: 0;
}

/* ========================================
   FAQ & WARRANTY RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .faq-page-hero { padding: 80px 0 35px; }
    .faq-page-hero-icon { font-size: 48px; }
    .faq-page-hero-title { font-size: 28px; }
    .faq-page-hero-desc { font-size: 13px; padding: 0 15px; }
    
    .faq-page-content { padding: 30px 0 50px; }
    .faq-download-grid { grid-template-columns: 1fr; }
    .faq-block-title span { font-size: 18px; }
    
    .warranty-hero { padding: 80px 0 35px; }
    .warranty-hero-icon { font-size: 48px; }
    .warranty-hero-title { font-size: 28px; }
    .warranty-hero-desc { font-size: 13px; padding: 0 15px; }
    
    .warranty-section { padding: 30px 0 50px; }
    .warranty-cards-grid { grid-template-columns: 1fr; gap: 14px; }
    .warranty-card { padding: 25px 20px; }
    
    .warranty-stats { gap: 25px; flex-wrap: wrap; }
    .warranty-stat-number { font-size: 32px; }
}

@media (max-width: 480px) {
    .faq-page-hero-title { font-size: 24px; }
    .warranty-hero-title { font-size: 24px; }
    .faq-download-card { padding: 14px 16px; gap: 12px; }
    .faq-download-card img { width: 40px; height: 40px; }
    .faq-download-name { font-size: 13px; }
    .warranty-stats { gap: 15px; }
    .warranty-stat-number { font-size: 28px; }
}

/* Footer Telegram icon */
.footer-tg-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,144,0,0.08);
    border: 1px solid rgba(255,144,0,0.15);
    transition: all 0.3s ease;
}
.footer-tg-link i {
    font-size: 26px;
    color: #ff9000;
    transition: all 0.3s ease;
}
.footer-tg-link:hover {
    background: rgba(255,144,0,0.15);
    border-color: rgba(255,144,0,0.35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,144,0,0.15);
}
.footer-tg-link:hover i {
    color: #ffaa33;
    transform: scale(1.1);
}

/* ========================================
   SUPPORT MODAL
======================================== */
.support-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.support-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.support-modal-box {
    background: #21252c;
    border-radius: 16px;
    padding: 40px 35px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,144,0,0.1);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}
.support-modal-overlay.active .support-modal-box {
    transform: translateY(0) scale(1);
}
.support-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: #6b7080;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}
.support-modal-close:hover {
    color: #ff9000;
}
.support-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.support-modal-desc {
    font-size: 14px;
    color: #8a8fa0;
    margin: 0 0 28px;
}
.support-modal-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.support-modal-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255,144,0,0.08);
    border: 1px solid rgba(255,144,0,0.15);
    color: #ff9000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.support-modal-card i {
    font-size: 22px;
}
.support-modal-card:hover {
    background: #ff9000;
    color: #fff;
    border-color: #ff9000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,144,0,0.25);
}

/* ========================================
   TICKETS / SUPPORT PAGE
======================================== */
.tickets-hero {
    padding: 100px 0 50px;
    text-align: center;
    background: #1a1d23;
    border-bottom: 1px solid rgba(255,144,0,0.06);
}
.tickets-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tickets-hero-icon {
    font-size: 64px;
    color: #ff9000;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255,144,0,0.3));
}
.tickets-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.tickets-hero-desc {
    font-size: 15px;
    color: #8a8fa0;
    margin: 0;
}

.tickets-content {
    padding: 50px 0 80px;
    background: #1d1e23;
}
.tickets-center {
    max-width: 560px;
    margin: 0 auto;
}

.tickets-card-main {
    text-align: center;
    padding: 45px 35px;
    border-radius: 16px;
    background: #21252c;
    border: 1px solid rgba(255,144,0,0.08);
    margin-bottom: 30px;
}
.tickets-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,144,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.tickets-card-icon i {
    font-size: 34px;
    color: #ff9000;
}
.tickets-card-main h2 {
    font-size: 22px;
    font-weight: 700;
    color: #e0e0e6;
    margin: 0 0 14px;
}
.tickets-card-main p {
    font-size: 14px;
    line-height: 1.7;
    color: #8a8fa0;
    margin: 0 0 28px;
}
.tickets-tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    background: #ff9000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tickets-tg-btn i {
    font-size: 20px;
}
.tickets-tg-btn:hover {
    background: #e68200;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,144,0,0.3);
}

.tickets-info-row {
    display: flex;
    gap: 16px;
}
.tickets-info-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    border-radius: 12px;
    background: #21252c;
    border: 1px solid rgba(255,255,255,0.04);
}
.tickets-info-item > i {
    font-size: 20px;
    color: #ff9000;
    flex-shrink: 0;
}
.tickets-info-label {
    display: block;
    font-size: 11px;
    color: #6b7080;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tickets-info-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e6;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .tickets-hero { padding: 80px 0 35px; }
    .tickets-hero-icon { font-size: 48px; }
    .tickets-hero-title { font-size: 28px; }
    .tickets-info-row { flex-direction: column; }
    .tickets-card-main { padding: 30px 20px; }
}

/* ChatBro — no custom overrides, let it manage its own styles */
