:root {
    --bg: #070910;
    --bg-secondary: #0b0e17;
    --surface: #111522;
    --surface-2: #161b29;
    --text: #f7f8fc;
    --muted: #9299a9;
    --border: rgba(255,255,255,.08);
    --primary: #793cff;
    --primary-2: #9b63ff;
    --cyan: #00d9ff;
    --danger: #ff4d73;
    --shadow: 0 25px 70px rgba(0,0,0,.35);
    --radius: 18px;
    --theme-speed: 1.2s;
}

html[data-bs-theme="light"] {
    --bg: #f3f5fa;
    --bg-secondary: #ffffff;
    --surface: #ffffff;
    --surface-2: #eef1f7;
    --text: #121622;
    --muted: #697183;
    --border: rgba(18,22,34,.1);
    --primary: #6733df;
    --primary-2: #8555ee;
    --cyan: #009fc2;
    --shadow: 0 25px 70px rgba(40,45,65,.13);
}

html {
    scroll-behavior: smooth;
}

html.theme-changing {
    transition: background-color 1.2s ease, color 1.2s ease;
}

html.theme-changing body {
    transition: background-color 1.2s ease, color 1.2s ease;
}

* {
    font-family: "Vazirmatn", sans-serif;
}

body,
button,
input,
textarea,
select {
    font-family: "Vazirmatn", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Vazirmatn", sans-serif;
}

a {
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

::selection {
    background: var(--primary);
    color: #fff;
}

.site-header {
    position: relative;
    z-index: 1000;
}

.gameziro-navbar {
    min-height: 88px;
    padding: 0;
    background: rgba(7,9,16,.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition:
        background-color var(--theme-speed) ease,
        border-color var(--theme-speed) ease;
}

html[data-bs-theme="light"] .gameziro-navbar {
    background: rgba(255,255,255,.82);
}

.gameziro-navbar .container {
    min-height: 88px;
}

.brand-area {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.brand-area:hover {
    color: var(--text);
}

.brand-mark {
    position: relative;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(145deg,#8f52ff,#4d1fd2);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow:
        0 10px 30px rgba(121,60,255,.32),
        inset 0 1px 1px rgba(255,255,255,.2);
}

.brand-g {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: Arial,sans-serif;
    font-size: 30px;
    font-weight: 1000;
    line-height: 1;
}

.brand-mark i {
    position: absolute;
    right: -4px;
    bottom: -5px;
    color: #d9c8ff;
    font-size: 19px;
    transform: rotate(-15deg);
}

.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-info strong {
    color: var(--text);
    font-size: 19px;
    font-weight: 900;
}

.brand-info small {
    margin-top: 5px;
    color: var(--muted);
    direction: ltr;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.main-menu {
    gap: 3px;
}

.main-menu .nav-link {
    position: relative;
    padding: 13px 17px !important;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    transition: color .35s ease;
}

.main-menu .nav-link::after {
    content: "";
    position: absolute;
    right: 17px;
    left: 17px;
    bottom: 2px;
    height: 2px;
    border-radius: 20px;
    background: linear-gradient(90deg,var(--primary),var(--cyan));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .4s ease;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
    color: var(--text);
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    min-width: 215px;
    margin-top: 12px !important;
    padding: 9px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.dropdown-item {
    padding: 12px 14px;
    color: var(--muted);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.dropdown-item:hover {
    color: var(--text);
    background: var(--surface-2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.tool-button {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 18px;
    cursor: pointer;
    transition:
        background-color .4s ease,
        color .4s ease,
        border-color .4s ease,
        transform .3s ease;
}

.tool-button:hover {
    color: var(--primary-2);
    border-color: rgba(121,60,255,.45);
    transform: translateY(-2px);
}

.cart-button {
    min-height: 45px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    background: linear-gradient(135deg,#803cff,#5721dc);
    border: 0;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(121,60,255,.25);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.cart-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(121,60,255,.35);
}

.cart-button b {
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,.16);
    border-radius: 50%;
    font-size: 10px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 13px;
    font-size: 22px;
}

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 150px 20px 30px;
    background: rgba(3,5,10,.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .45s ease,
        visibility .45s ease;
}

html[data-bs-theme="light"] .search-panel {
    background: rgba(235,238,246,.78);
}

.search-panel.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-panel .container {
    width: 100%;
    max-width: 850px;
    padding: 0;
}

.search-box {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 12px 10px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    transform: translateY(-20px) scale(.97);
    transition:
        background-color var(--theme-speed) ease,
        border-color var(--theme-speed) ease,
        box-shadow .4s ease,
        transform .45s cubic-bezier(.22,1,.36,1);
}

.search-panel.show .search-box {
    transform: translateY(0) scale(1);
}

.search-box > i {
    flex: 0 0 auto;
    color: var(--primary-2);
    font-size: 22px;
}

.search-box input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0;
    outline: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 16px;
}

.search-box input::placeholder {
    color: var(--muted);
}

.search-box button {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: .3s ease;
}

.search-box button:hover {
    color: #fff;
    background: var(--danger);
    border-color: var(--danger);
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 85px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 30%,rgba(121,60,255,.15),transparent 30%),
        radial-gradient(circle at 92% 75%,rgba(0,217,255,.08),transparent 28%),
        var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    align-items: center;
    gap: 70px;
    direction: ltr;
}

.hero-visual {
    grid-column: 1;
    direction: ltr;
}

.hero-copy {
    grid-column: 2;
    direction: rtl;
    text-align: right;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: var(--primary-2);
    direction: ltr;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-label span {
    width: 36px;
    height: 2px;
    display: block;
    border-radius: 20px;
    background: linear-gradient(90deg,var(--primary),var(--cyan));
}

.hero-copy h1 {
    max-width: 700px;
    margin: 0;
    color: var(--text);
    font-size: clamp(44px,5.3vw,80px);
    font-weight: 1000;
    line-height: 1.12;
    letter-spacing: -3px;
}

.hero-copy h1 strong {
    display: block;
    color: transparent;
    background: linear-gradient(90deg,var(--text),var(--primary-2),var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy p {
    max-width: 570px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 2;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.btn-main,
.btn-secondary {
    min-height: 53px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    transition: .35s ease;
}

.btn-main {
    color: #fff;
    background: linear-gradient(135deg,#803cff,#5721dc);
    box-shadow: 0 15px 35px rgba(121,60,255,.25);
}

.btn-main:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(121,60,255,.35);
}

.btn-secondary {
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    color: var(--text);
    background: var(--surface-2);
    border-color: rgba(121,60,255,.45);
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 44px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-stats strong {
    color: var(--text);
    font-size: 22px;
    font-weight: 1000;
}

.hero-stats span {
    color: var(--muted);
    font-size: 11px;
}

.hero-image-card {
    position: relative;
    padding: 11px;
    overflow: visible;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.025));
    box-shadow: var(--shadow);
}

.hero-image-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 32px;
    background: linear-gradient(135deg,rgba(121,60,255,.55),transparent 45%,rgba(0,217,255,.25));
    filter: blur(20px);
    opacity: .7;
}

.hero-image-card img {
    width: 100%;
    height: 530px;
    display: block;
    object-fit: cover;
    border-radius: 22px;
}

.hero-glow {
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 170px;
    height: 170px;
    z-index: -2;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(85px);
    opacity: .3;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    color: #fff;
    background: rgba(9,11,18,.82);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
    font-size: 10px;
    font-weight: 900;
}

.badge-one {
    top: 38px;
    left: -20px;
}

.badge-two {
    right: -20px;
    bottom: 38px;
}

.floating-badge i {
    color: var(--cyan);
}

.local-seo-section {
    padding: 0 0 80px;
    background: var(--bg);
}

.local-seo-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.local-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg,var(--primary),#5421d5);
    border-radius: 16px;
    font-size: 22px;
}

.local-seo-box h2 {
    margin: 0 0 7px;
    color: var(--text);
    font-size: 20px;
    font-weight: 900;
}

.local-seo-box p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.mobile-menu {
    width: 310px !important;
    background: var(--surface);
    color: var(--text);
    border-left: 1px solid var(--border);
}

.mobile-menu .offcanvas-header {
    padding: 25px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
}

.mobile-menu .offcanvas-body a {
    padding: 15px;
    color: var(--text);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    transition: .3s ease;
}

.mobile-menu .offcanvas-body a:hover {
    background: var(--surface-2);
    color: var(--primary-2);
}

@media (max-width: 1199.98px) {
    .main-menu .nav-link {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .main-menu .nav-link::after {
        right: 11px;
        left: 11px;
    }

    .hero-grid {
        gap: 45px;
    }
}

@media (max-width: 991.98px) {
    .gameziro-navbar,
    .gameziro-navbar .container {
        min-height: 76px;
    }

    .header-actions {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 70px 0 85px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual,
    .hero-copy {
        grid-column: 1;
    }

    .hero-visual {
        grid-row: 1;
    }

    .hero-copy {
        grid-row: 2;
        text-align: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-copy p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-card img {
        height: 450px;
    }

    .badge-one {
        left: 10px;
    }

    .badge-two {
        right: 10px;
    }
}

@media (max-width: 575.98px) {
    .brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 13px;
    }

    .brand-g {
        font-size: 27px;
    }

    .brand-info strong {
        font-size: 17px;
    }

    .brand-info small {
        display: none;
    }

    .hero-section {
        padding-top: 50px;
    }

    .hero-copy h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-image-card {
        padding: 8px;
        border-radius: 23px;
    }

    .hero-image-card img {
        height: 330px;
        border-radius: 17px;
    }

    .floating-badge {
        padding: 9px 11px;
        font-size: 8px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 18px;
    }

    .hero-stats span {
        font-size: 9px;
    }

    .local-seo-box {
        align-items: flex-start;
    }

    .search-panel {
        padding: 110px 14px 20px;
    }

    .search-box {
        min-height: 64px;
        padding-left: 14px;
        border-radius: 17px;
    }

    .search-box input {
        font-size: 14px;
    }

    .search-box button {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }
}

@media (min-width: 1400px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 110px;
    }

    .hero-grid {
        max-width: 1350px;
        margin: 0 auto;
        gap: 90px;
    }

    .hero-copy h1 {
        font-size: 78px;
    }

    .hero-image-card img {
        height: 580px;
    }
}

@media (max-width: 1199.98px) {
    .gameziro-navbar .container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .main-menu {
        gap: 0;
    }

    .main-menu .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 13px;
    }

    .main-menu .nav-link::after {
        right: 10px;
        left: 10px;
    }

    .cart-button span {
        display: none;
    }

    .cart-button {
        width: 45px;
        padding: 0;
        justify-content: center;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 5.2vw, 65px);
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-image-card img {
        height: 470px;
    }
}

@media (max-width: 991.98px) {
    .gameziro-navbar {
        min-height: 74px;
    }

    .gameziro-navbar .container {
        min-height: 74px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .navbar-collapse {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        order: -1;
    }

    .brand-area {
        margin-right: auto;
    }

    .brand-mark {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .brand-g {
        font-size: 27px;
    }

    .hero-section {
        min-height: auto;
        padding: 55px 0 75px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 48px;
        direction: rtl;
    }

    .hero-visual {
        width: 100%;
        order: 1;
    }

    .hero-copy {
        width: 100%;
        order: 2;
        text-align: center;
    }

    .hero-image-card {
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .hero-image-card img {
        width: 100%;
        height: min(62vw, 470px);
        min-height: 330px;
        max-height: 470px;
    }

    .hero-copy h1 {
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(42px, 7vw, 65px);
        line-height: 1.15;
        letter-spacing: -2px;
    }

    .hero-copy p {
        max-width: 600px;
        margin: 22px auto 0;
        font-size: 16px;
        line-height: 1.9;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .local-seo-box {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .gameziro-navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-info strong {
        font-size: 17px;
    }

    .brand-info small {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .hero-section {
        padding: 42px 0 65px;
    }

    .hero-grid {
        gap: 38px;
    }

    .hero-image-card {
        padding: 7px;
        border-radius: 22px;
    }

    .hero-image-card img {
        height: 56vw;
        min-height: 270px;
        max-height: 390px;
        border-radius: 16px;
    }

    .hero-copy h1 {
        font-size: clamp(37px, 9vw, 55px);
        line-height: 1.18;
        letter-spacing: -1.5px;
    }

    .hero-copy p {
        padding: 0 12px;
        font-size: 15px;
    }

    .hero-label {
        margin-bottom: 16px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .hero-label span {
        width: 28px;
    }

    .hero-buttons {
        width: 100%;
        padding: 0 10px;
        gap: 10px;
    }

    .btn-main,
    .btn-secondary {
        flex: 1;
        min-width: 0;
        min-height: 50px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero-stats {
        width: 100%;
        gap: 0;
        justify-content: space-between;
        padding: 0 12px;
    }

    .hero-stats div {
        min-width: 0;
        text-align: center;
    }

    .hero-stats strong {
        font-size: 18px;
    }

    .hero-stats span {
        font-size: 9px;
        white-space: nowrap;
    }

    .floating-badge {
        padding: 8px 10px;
        font-size: 8px;
    }

    .badge-one {
        top: 20px;
        left: 12px;
    }

    .badge-two {
        right: 12px;
        bottom: 20px;
    }

    .local-seo-section {
        padding-bottom: 55px;
    }

    .local-seo-box {
        padding: 18px;
        gap: 14px;
    }

    .local-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        border-radius: 13px;
        font-size: 18px;
    }

    .local-seo-box h2 {
        font-size: 17px;
    }

    .local-seo-box p {
        font-size: 11px;
        line-height: 1.8;
    }

    .search-panel {
        padding: 95px 12px 20px;
    }

    .search-box {
        min-height: 60px;
        gap: 10px;
        padding: 8px 8px 8px 14px;
        border-radius: 16px;
    }

    .search-box > i {
        font-size: 18px;
    }

    .search-box input {
        height: 44px;
        font-size: 13px;
    }

    .search-box button {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        border-radius: 12px;
    }
}

@media (max-width: 575.98px) {
    .gameziro-navbar {
        min-height: 68px;
    }

    .gameziro-navbar .container {
        min-height: 68px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
    }

    .brand-g {
        font-size: 25px;
    }

    .brand-mark i {
        font-size: 16px;
    }

    .brand-info strong {
        font-size: 16px;
    }

    .brand-info small {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .hero-section {
        padding: 35px 0 55px;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero-image-card {
        width: calc(100% - 4px);
        padding: 6px;
    }

    .hero-image-card img {
        height: 64vw;
        min-height: 245px;
        max-height: 330px;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 10vw, 45px);
        letter-spacing: -1px;
    }

    .hero-copy p {
        margin-top: 17px;
        padding: 0 5px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 5px;
        margin-top: 25px;
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
        flex: none;
    }

    .hero-stats {
        margin-top: 32px;
        padding: 0 2px;
    }

    .hero-stats strong {
        font-size: 16px;
    }

    .hero-stats span {
        font-size: 8px;
    }

    .floating-badge {
        padding: 7px 9px;
        font-size: 7px;
    }

    .badge-one {
        top: 15px;
        left: 10px;
    }

    .badge-two {
        right: 10px;
        bottom: 15px;
    }

    .local-seo-box {
        padding: 15px;
    }

    .local-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 16px;
    }

    .local-seo-box h2 {
        font-size: 15px;
    }

    .local-seo-box p {
        font-size: 10px;
    }
}

@media (max-width: 399.98px) {
    .hero-copy h1 {
        font-size: 32px;
    }

    .hero-copy p {
        font-size: 13px;
    }

    .hero-image-card img {
        height: 66vw;
        min-height: 220px;
    }

    .hero-stats strong {
        font-size: 14px;
    }

    .hero-stats span {
        font-size: 7px;
    }

    .floating-badge {
        display: none;
    }
}

.quick-categories {
    padding: 45px 0 30px;
    background: var(--bg);
}

.quick-categories-head {
    text-align: center;
    margin-bottom: 25px;
}

.quick-categories-head span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.quick-categories-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
}

.quick-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.quick-category {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    color: var(--text);
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition:
        transform .35s ease,
        border-color .35s ease,
        background-color var(--theme-speed) ease,
        box-shadow .35s ease;
}

.quick-category:hover {
    color: var(--text);
    transform: translateY(-5px);
    border-color: rgba(121, 60, 255, .55);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.quick-category-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(121, 60, 255, .25);
}

.quick-category > span:nth-child(2) {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
}

.quick-category > i:last-child {
    color: var(--muted);
    font-size: 15px;
    transition: transform .3s ease, color .3s ease;
}

.quick-category:hover > i:last-child {
    color: var(--primary-2);
    transform: translateX(-4px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

@media (max-width: 992px) {
    .quick-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-categories {
        padding: 35px 0 25px;
    }

    .quick-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-category {
        min-height: 90px;
    }
}

@media (max-width: 480px) {
    .quick-categories-grid {
        grid-template-columns: 1fr;
    }

    .quick-category {
        min-height: 78px;
    }
}

 .console-showcase {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(121,60,255,.13), transparent 28%),
        radial-gradient(circle at 90% 75%, rgba(0,217,255,.08), transparent 25%),
        var(--bg-secondary);
    scroll-margin-top: 90px;
}

.console-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.console-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 45px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.console-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
}

.console-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 430px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    backdrop-filter: blur(15px);
}

.console-notice > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-size: 19px;
}

.console-notice strong,
.console-notice span {
    display: block;
}

.console-notice strong {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 13px;
}

.console-notice span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}

.console-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.console-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: 0 12px 35px rgba(0,0,0,.14);
    transition:
        transform .35s ease,
        border-color .3s ease,
        box-shadow .35s ease;
}

.console-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(35px);
    opacity: .12;
    transition: .5s ease;
}

.playstation::before {
    background: #684cff;
}

.xbox::before {
    background: #32d56f;
}
.console-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 20px 45px rgba(0,0,0,.22);
}

.console-card:hover::before {
    transform: translateX(-50%) scale(1.3);
    opacity: .35;
}

.console-top {
    position: absolute;
    z-index: 4;
    top: 17px;
    right: 17px;
    left: 17px;
    display: flex;
    justify-content: space-between;
}

.console-brand,
.console-generation {
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(0,0,0,.3);
    color: rgba(255,255,255,.8);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1px;
}

.console-image {
    position: relative;
    height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px 5px;
}

.image-glow {
    position: absolute;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(45px);
    opacity: .2;
    transition: .6s ease;
}

.xbox .image-glow {
    background: #32d56f;
}

.console-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 185px;
    object-fit: contain;
   filter: drop-shadow(0 25px 20px rgba(0,0,0,.45));
    transition: .65s cubic-bezier(.22,1,.36,1);
}

.console-card:hover .console-image img {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 16px 15px rgba(0,0,0,.32));
}

.console-card:hover .image-glow {
    transform: scale(1.3);
    opacity: .35;
}

.console-info {
    position: relative;
    z-index: 3;
    padding: 5px 18px 18px;
}

.console-type {
    color: var(--primary-2);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.xbox .console-type {
    color: #54dc88;
}

.console-info h3 {
    margin: 7px 0 5px;
    color: var(--text);
    font-size: 19px;
    font-weight: 900;
}

.console-info p {
    min-height: 39px;
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

.variable-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255,255,255,.025);
}

.variable-price span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
}

.variable-price strong {
    color: var(--text);
    font-size: 10px;
}

.telegram-order {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 10px;
    border: 1px solid rgba(34,158,217,.4);
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #168bc4, #229ed9);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(34,158,217,.14);
    transition: .3s ease;
}

.telegram-order:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34,158,217,.3);
}

.telegram-order i:first-child {
    font-size: 17px;
}

.telegram-order i:last-child {
    margin-right: auto;
}

@media (max-width: 1200px) {
    .console-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .console-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .console-notice {
        max-width: none;
    }

    .console-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .console-showcase {
        padding: 70px 0;
    }

    .console-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 500px) {
    .console-grid {
        grid-template-columns: 1fr;
    }
}

.search-results {
    width: 100%;
    margin-top: 18px;
}

.search-results-head {
    margin-bottom: 12px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    font-weight: 700;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: 58vh;
    overflow-y: auto;
    padding: 4px;
}

.search-result-item {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    color: var(--text);
    text-align: right;
    cursor: pointer;
    transition:
        transform .3s ease,
        border-color .3s ease,
        background-color .3s ease,
        box-shadow .3s ease;
}

.search-result-item:hover {
    transform: translateY(-3px);
    border-color: rgba(121,60,255,.45);
    background: var(--surface-2);
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.search-result-image {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-result-content {
    min-width: 0;
    flex: 1;
}

.search-result-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.search-result-content small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
}

.search-result-item > i {
    color: var(--primary-2);
    font-size: 14px;
    transition: transform .3s ease;
}

.search-result-item:hover > i {
    transform: translateX(-4px);
}

.search-empty {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    text-align: center;
}

.search-empty i {
    margin-bottom: 5px;
    color: var(--primary-2);
    font-size: 30px;
}

.search-empty strong {
    color: var(--text);
    font-size: 14px;
}

.search-empty span {
    color: var(--muted);
    font-size: 10px;
}

.search-highlight {
    animation: searchCardHighlight 1.8s ease;
}

@keyframes searchCardHighlight {
    0% {
        transform: translateY(-8px);
        box-shadow: 0 0 0 0 rgba(121,60,255,0);
    }

    35% {
        transform: translateY(-8px);
        box-shadow: 0 0 0 5px rgba(121,60,255,.25), 0 25px 70px rgba(121,60,255,.2);
    }

    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(121,60,255,0);
    }
}

html[data-bs-theme="light"] .search-result-item,
html[data-bs-theme="light"] .search-empty {
    background: var(--surface);
}

html[data-bs-theme="light"] .search-results-head {
    color: var(--muted);
}

@media (max-width: 700px) {
    .search-results-grid {
        grid-template-columns: 1fr;
        max-height: 62vh;
    }

    .search-panel {
        padding: 115px 15px 25px;
    }
}

.gameziro-navbar .container {
    display: flex;
    align-items: center;
}

.gameziro-navbar .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .gameziro-navbar .header-actions {
        margin-right: auto;
        margin-left: 10px;
    }

    .gameziro-navbar .navbar-toggler {
        order: 4;
    }

    .gameziro-navbar .brand-area {
        order: 1;
    }

    .gameziro-navbar .header-actions {
        order: 2;
    }
}

.controller-showcase {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.controller-heading {
    margin-bottom: 45px;
}

.controller-card {
    position: relative;
    overflow: hidden;
}

.controller-card .console-image {
    min-height: 220px;
}

.controller-card .console-image img {
    max-width: 82%;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}

.controller-card:hover .console-image img {
    transform: scale(1.08) translateY(-5px);
}

.controller-card .console-type {
    letter-spacing: 1px;
}

.controller-grid {
    row-gap: 24px;
}

@media (max-width: 768px) {
    .controller-showcase {
        padding: 70px 0;
    }

    .controller-card .console-image {
        min-height: 200px;
    }
}

.controller-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
    column-gap: 24px;
}

@media (max-width: 992px) {
    .controller-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .controller-grid {
        grid-template-columns: 1fr;
    }
}

.games-showcase {
    padding: 100px 0;
    background: var(--bg);
}

.games-heading {
    margin-bottom: 45px;
}

.games-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.game-card {
    overflow: hidden;
}

.game-card .console-image {
    min-height: 210px;
}

.game-card .console-image img {
    max-width: 88%;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}

.game-card:hover .console-image img {
    transform: scale(1.07) translateY(-5px);
}

.more-games-box {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.more-games-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(0,217,255,.1);
    color: var(--cyan);
    font-size: 26px;
}

.more-games-content {
    flex: 1;
}

.more-games-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-2);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.more-games-content h3 {
    margin: 0 0 5px;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
}

.more-games-content p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.more-games-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: transform .3s ease, box-shadow .3s ease;
}

.more-games-button:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(121,60,255,.25);
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .more-games-box {
        flex-wrap: wrap;
    }

    .more-games-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.account-storage-showcase {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.account-storage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.account-card,
.storage-card {
    min-width: 0;
    overflow: hidden;
}

.account-card .console-image,
.storage-card .console-image {
    min-height: 220px;
}

.account-card .console-image img,
.storage-card .console-image img {
    max-width: 84%;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}

.account-card:hover .console-image img,
.storage-card:hover .console-image img {
    transform: scale(1.08) translateY(-5px);
}

@media (max-width: 1200px) {
    .account-storage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .account-storage-showcase {
        padding: 70px 0;
    }

    .account-storage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gameziro-navbar,
    .search-panel,
    .floating-badge,
    .console-notice {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .console-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .console-card::before {
        filter: blur(25px);
    }

    .hero-image-card::before {
        filter: blur(12px);
    }

    .hero-glow {
        filter: blur(45px);
    }

    .console-image img {
        filter: drop-shadow(0 10px 10px rgba(0,0,0,.25));
    }
}

:root {
    --theme-speed: .45s;
}

html.theme-changing,
html.theme-changing * {
    transition:
        background-color var(--theme-speed) ease,
        color var(--theme-speed) ease,
        border-color var(--theme-speed) ease,
        box-shadow var(--theme-speed) ease !important;
}

.gameziro-navbar {
    position: relative;
    top: auto;
    z-index: 1000;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.gameziro-navbar {
    transition: transform .35s ease, background-color .45s ease, border-color .45s ease;
}

.why-gameziro {
    position: relative;
    padding: 110px 0;
    background: var(--bg);
    overflow: hidden;
}

.why-gameziro::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    background: rgba(121, 60, 255, .08);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.why-gameziro-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    text-align: center;
}

.why-gameziro-heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.why-gameziro-heading h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
}

.why-gameziro-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.why-gameziro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.why-gameziro-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 145px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.why-gameziro-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -45px;
    bottom: -55px;
    border-radius: 50%;
    background: rgba(0, 217, 255, .08);
    filter: blur(25px);
    pointer-events: none;
}

.why-gameziro-card:hover {
    transform: translateY(-6px);
    border-color: rgba(121, 60, 255, .45);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .18);
}

.why-gameziro-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(121, 60, 255, .2);
    border-radius: 18px;
    background: rgba(121, 60, 255, .1);
    color: var(--primary-2);
    font-size: 27px;
}

.why-gameziro-card h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
}

.why-gameziro-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 2;
}

@media (max-width: 768px) {
    .why-gameziro {
        padding: 75px 0;
    }

    .why-gameziro-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-gameziro-card {
        min-height: 125px;
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .why-gameziro-card {
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .why-gameziro-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        font-size: 23px;
    }

    .why-gameziro-card h3 {
        font-size: 15px;
    }

    .why-gameziro-card p {
        font-size: 11px;
    }
}

.special-offers {
    position: relative;
    padding: 110px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.special-offers::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 20%;
    right: -220px;
    border-radius: 50%;
    background: rgba(121, 60, 255, .1);
    filter: blur(100px);
    pointer-events: none;
}

.special-offers::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -180px;
    left: -160px;
    border-radius: 50%;
    background: rgba(0, 217, 255, .07);
    filter: blur(90px);
    pointer-events: none;
}

.special-offers-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    text-align: center;
}

.special-offers-heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.special-offers-heading h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
}

.special-offers-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.offer-timer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto 48px;
}

.timer-box {
    min-width: 82px;
    padding: 13px 15px;
    border: 1px solid rgba(121, 60, 255, .35);
    border-radius: 16px;
    background: var(--surface);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.timer-box strong {
    display: block;
    color: var(--text);
    font-size: 27px;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-box span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.timer-separator {
    color: var(--primary-2);
    font-size: 25px;
    font-weight: 900;
}

.special-offers-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.offer-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(121, 60, 255, .5);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .22);
}

.offer-card-top {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #ff3158;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.offer-percent {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(121, 60, 255, .5);
    border-radius: 50%;
    background: rgba(10, 10, 20, .65);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.offer-image {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 25px 20px;
    background: linear-gradient(145deg, rgba(121, 60, 255, .08), rgba(0, 217, 255, .04));
}

.offer-image::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(121, 60, 255, .13);
    filter: blur(45px);
}

.offer-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.offer-card:hover .offer-image img {
    transform: scale(1.08) translateY(-5px);
}

.offer-content {
    padding: 22px;
}

.offer-category {
    display: block;
    margin-bottom: 7px;
    color: var(--primary-2);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.offer-content h3 {
    margin: 0 0 7px;
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
}

.offer-content p {
    min-height: 40px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.9;
}

.offer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.offer-price {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.offer-price b {
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
}

.offer-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 13px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    transition: transform .3s ease, box-shadow .3s ease;
}

.offer-button:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(121, 60, 255, .3);
}

.offer-xbox .offer-image {
    background: linear-gradient(145deg, rgba(0, 190, 80, .1), rgba(0, 217, 255, .04));
}

.offer-gta .offer-image {
    background: linear-gradient(145deg, rgba(190, 40, 255, .1), rgba(121, 60, 255, .04));
}

.offer-hdd .offer-image {
    background: linear-gradient(145deg, rgba(255, 130, 20, .1), rgba(255, 60, 30, .04));
}

@media (max-width: 1200px) {
    .special-offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .special-offers {
        padding: 75px 0;
    }

    .offer-timer {
        gap: 6px;
        margin-bottom: 35px;
    }

    .timer-box {
        min-width: 65px;
        padding: 11px 8px;
    }

    .timer-box strong {
        font-size: 21px;
    }

    .timer-separator {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .special-offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-image {
        min-height: 230px;
    }
}

@media (max-width: 430px) {
    .timer-box {
        min-width: 57px;
        padding: 10px 5px;
    }

    .timer-box strong {
        font-size: 18px;
    }

    .timer-box span {
        font-size: 8px;
    }

    .timer-separator {
        font-size: 15px;
    }
}

.blog-showcase {
    padding: 110px 0;
    background: var(--bg);
}

.blog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.blog-heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.blog-heading h2 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 950;
}

.blog-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.blog-all-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .3s ease, border-color .3s ease;
}

.blog-all-button:hover {
    color: var(--text);
    transform: translateY(-3px);
    border-color: var(--primary-2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    border-color: rgba(121, 60, 255, .45);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .18);
}

.blog-featured {
    grid-column: span 2;
}

.blog-image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-featured .blog-image {
    height: 300px;
}

.blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .55));
    pointer-events: none;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-category {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(10, 10, 18, .75);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.blog-content {
    padding: 22px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 9px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-2);
}

.blog-content h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.7;
}

.blog-featured .blog-content h3 {
    font-size: 21px;
}

.blog-content p {
    min-height: 45px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 11px;
    line-height: 2;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-2);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    transition: gap .3s ease;
}

.blog-read-more:hover {
    color: var(--primary-2);
    gap: 13px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .blog-showcase {
        padding: 75px 0;
    }

    .blog-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured {
        grid-column: span 1;
    }

    .blog-featured .blog-image,
    .blog-image {
        height: 230px;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 18px;
    }

    .blog-content h3,
    .blog-featured .blog-content h3 {
        font-size: 15px;
    }

    .blog-content p {
        font-size: 10px;
    }
}

.contact-showcase {
    position: relative;
    padding: 110px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.contact-showcase::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    top: 10%;
    right: -200px;
    border-radius: 50%;
    background: rgba(121, 60, 255, .09);
    filter: blur(100px);
    pointer-events: none;
}

.contact-showcase::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -180px;
    left: -130px;
    border-radius: 50%;
    background: rgba(0, 217, 255, .07);
    filter: blur(90px);
    pointer-events: none;
}

.contact-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    text-align: center;
}

.contact-heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-heading h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 950;
}

.contact-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 25px;
    align-items: stretch;
}

.contact-info,
.contact-form-box {
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.contact-info {
    position: relative;
    padding: 35px;
    overflow: hidden;
}

.contact-info::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -70px;
    border-radius: 50%;
    background: rgba(121, 60, 255, .1);
    filter: blur(35px);
}

.contact-info-top {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.contact-info-top > span {
    color: var(--primary-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-info-top h3 {
    margin: 12px 0 10px;
    color: var(--text);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.7;
}

.contact-info-top p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 2;
}

.contact-items {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 17px;
    color: var(--text);
    text-decoration: none;
    transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}

.contact-item:hover {
    color: var(--text);
    transform: translateX(-5px);
    border-color: rgba(121, 60, 255, .45);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(121, 60, 255, .1);
    color: var(--primary-2);
    font-size: 20px;
}

.contact-item-icon.telegram-icon {
    background: rgba(0, 217, 255, .1);
    color: var(--cyan);
}

.contact-item div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.contact-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
}

.contact-item strong {
    display: block;
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.contact-item-arrow {
    color: var(--muted);
    font-size: 14px;
}

.contact-form-box {
    padding: 35px;
}

.contact-form-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.contact-form-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(121, 60, 255, .18), rgba(0, 217, 255, .1));
    color: var(--primary-2);
    font-size: 23px;
}

.contact-form-title span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-2);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.contact-form-title h3 {
    margin: 0;
    color: var(--text);
    font-size: 20px;
    font-weight: 900;
}

.contact-input-group {
    margin-bottom: 17px;
}

.contact-input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
}

.contact-input {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 53px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg);
    transition: border-color .3s ease, box-shadow .3s ease;
}

.contact-input:focus-within {
    border-color: var(--primary-2);
    box-shadow: 0 0 0 3px rgba(121, 60, 255, .1);
}

.contact-input i {
    color: var(--primary-2);
    font-size: 16px;
}

.contact-input input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 12px;
}

.contact-input input::placeholder {
    color: var(--muted);
}

.contact-submit {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 20px;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(121, 60, 255, .2);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(121, 60, 255, .3);
}

.contact-submit i:first-child {
    font-size: 19px;
}

.contact-submit i:last-child {
    font-size: 13px;
}

.contact-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

.contact-form-note i {
    color: var(--primary-2);
    font-size: 12px;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-showcase {
        padding: 75px 0;
    }

    .contact-info,
    .contact-form-box {
        padding: 25px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-box {
        padding: 20px;
    }

    .contact-info-top h3 {
        font-size: 18px;
    }

    .contact-form-title h3 {
        font-size: 17px;
    }
}

.gameziro-footer {
    position: relative;
    padding: 75px 0 25px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.gameziro-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -250px;
    right: 15%;
    border-radius: 50%;
    background: rgba(121, 60, 255, .07);
    filter: blur(90px);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 55px;
}

.footer-brand {
    max-width: 370px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: var(--text);
    text-decoration: none;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: 1px;
}

.footer-logo > span:last-child span {
    color: var(--primary-2);
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(121, 60, 255, .25);
}

.footer-brand p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 11px;
    line-height: 2.2;
}

.footer-telegram {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: transform .3s ease, border-color .3s ease;
}

.footer-telegram:hover {
    color: var(--text);
    transform: translateY(-3px);
    border-color: var(--primary-2);
}

.footer-telegram i:first-child {
    color: var(--cyan);
    font-size: 17px;
}

.footer-telegram i:last-child {
    color: var(--muted);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

.footer-column a {
    width: fit-content;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    transition: color .25s ease, transform .25s ease;
}

.footer-column a:hover {
    color: var(--primary-2);
    transform: translateX(-4px);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a i {
    width: 28px;
    color: var(--primary-2);
    font-size: 14px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}

.footer-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20d66b;
    box-shadow: 0 0 12px rgba(32, 214, 107, .7);
}

.footer-divider {
    position: relative;
    z-index: 1;
    height: 1px;
    margin: 55px 0 22px;
    background: var(--border);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 9px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color .25s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-2);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--surface);
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    transition: transform .3s ease, color .3s ease, border-color .3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--cyan);
    border-color: var(--cyan);
}

@media (max-width: 1000px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .footer-contact {
        grid-column: span 3;
    }
}

@media (max-width: 700px) {
    .gameziro-footer {
        padding: 60px 0 22px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: none;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 450px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: span 1;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: transform .3s ease, border-color .3s ease, background-color .3s ease, color .3s ease;
}

.back-to-top i {
    font-size: 15px;
    transition: transform .3s ease;
}

.back-to-top:hover {
    color: var(--primary-2);
    border-color: var(--primary-2);
    transform: translateY(-3px);
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}