@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: var(--bg-color);
    --bg2: var(--surface-color);
    --bg3: var(--border-color);
    --bg4: rgba(255, 255, 255, 0.05);
    --accent: var(--primary-color);
    --accent2: var(--accent-color);
    --accent-g: rgba(var(--primary-rgb, 0, 212, 255), 0.15);
    --green: var(--success-color);
    --red: var(--error-color);
    --orange: var(--warning-color);
    --purple: var(--accent-color);
    --pink: #ff6b9d;
    --text: var(--text-color);
    --text2: var(--text-muted);
    --text3: rgba(var(--text-rgb, 232, 237, 243), 0.5);
    --border: var(--border-color);
    --glow: 0 0 20px rgba(var(--primary-rgb, 0, 212, 255), 0.2);
    --r: 12px;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px
}

/* TOPBAR */
.topbar {
    background: linear-gradient(90deg, #00d4ff, #a855f7);
    padding: .4rem;
    text-align: center;
    font-size: .75rem;
    font-weight: 700;
    color: #000;
    letter-spacing: .5px
}

/* NAV */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 14, 20, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all .3s
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    text-decoration: none;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background: var(--bg2);
    z-index: 1000;
    width: 250px;
    padding: 2rem;
}

.mobile-nav-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.mobile-language-switcher {
    margin-top: 1.5rem;
}

.pc-clickable {
    cursor: pointer;
}

.pc-img {
    position: relative;
    overflow: hidden;
}

.pc-bg {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
}

.pc-layer-10 {
    z-index: 10;
}

.pc-layer-20 {
    z-index: 20;
}

.pc-action-wrap {
    pointer-events: auto;
}

.pc-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    cursor: pointer;
    color: #fff;
}

.pc-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: absolute;
    inset: 0;
}

.pc-placeholder {
    font-size: 5rem;
    z-index: 1;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pc-cart[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pc-cart-compact {
    font-size: 12px;
    padding: 0 8px;
}

.games-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.games-centered-row {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px
}

.logo .lt {
    color: var(--accent)
}

.logo .icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none
}

.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: all .3s;
    padding: .4rem 0;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent)
}

.nav-acts {
    display: flex;
    align-items: center;
    gap: .6rem
}

.ni {
    width: 40px;
    height: 40px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    color: var(--text2);
    position: relative
}

.ni:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-g)
}

.ni svg {
    width: 18px;
    height: 18px
}

.cb {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--bg);
    font-size: .6rem;
    font-weight: 800;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn-login {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: .45rem 1.3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    font-family: 'Cairo';
    transition: all .3s
}

.btn-login:hover {
    box-shadow: var(--glow);
    transform: translateY(-1px)
}

.mob-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer
}

.mob-toggle svg {
    width: 24px;
    height: 24px
}

/* PAGES */
.page {
    display: none;
    opacity: 0;
    transition: opacity .3s ease
}

.page.active {
    display: block;
    opacity: 1
}

/* BTN */
.btn {
    padding: .8rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cairo';
    border: none
}

.btn-accent {
    background: var(--accent);
    color: var(--bg)
}

.btn-accent:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text)
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.btn-outline2 {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent)
}

.btn-outline2:hover {
    background: var(--accent);
    color: var(--bg)
}

.btn-dark {
    background: var(--bg3);
    color: var(--text);
    border: 1px solid var(--border)
}

.btn-dark:hover {
    border-color: var(--accent)
}

.btn-sm {
    padding: .45rem 1.2rem;
    font-size: .8rem
}

/* SECTION */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem
}

.sh {
    text-align: center;
    margin-bottom: 2.5rem
}

.sh .lb {
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: .3rem
}

.sh h2 {
    font-size: 2rem;
    font-weight: 900
}

.sh p {
    color: var(--text2);
    margin-top: .3rem;
    font-size: .95rem
}

/* HERO */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg)
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, .06), transparent 60%)
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent)
}

.h-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1
}

.h-text .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-g);
    border: 1px solid rgba(0, 212, 255, .2);
    color: var(--accent);
    padding: .3rem .9rem;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem
}

.h-text h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem
}

.h-text h1 span {
    color: var(--accent)
}

.h-text p {
    color: var(--text2);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px
}

.h-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.h-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem
}

.h-stat {
    text-align: center
}

.h-stat .n {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent)
}

.h-stat .l {
    font-size: .75rem;
    color: var(--text3);
    font-weight: 600
}

.h-visual {
    display: flex;
    justify-content: center;
    position: relative
}

.h-main {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 212, 255, .1), rgba(168, 85, 247, .1));
    border: 1px solid var(--border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative
}

.h-main::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    opacity: .15;
    z-index: -1
}

.f-card {
    position: absolute;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .7rem 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    gap: 8px
}

.f-card.fc1 {
    top: 5%;
    right: -30px;
    animation: f 3s ease-in-out infinite
}

.f-card.fc2 {
    bottom: 10%;
    left: -30px;
    animation: f 3s ease-in-out infinite .5s
}

@keyframes f {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.f-card .fi {
    width: 38px;
    height: 38px;
    background: var(--accent-g);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem
}

.f-card .ft {
    font-weight: 800;
    font-size: .8rem
}

.f-card .fs {
    font-size: .68rem;
    color: var(--text3)
}

/* MARQUEE */
.marquee {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .6rem 0;
    overflow: hidden;
    white-space: nowrap
}

.marquee-i {
    display: inline-flex;
    gap: 2rem;
    animation: ms 25s linear infinite
}

.marquee-i span {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 5px
}

.marquee-i span::before {
    content: 'âš¡';
    color: var(--accent)
}

@keyframes ms {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* CAT GRID */
.cg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.cc {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.cc::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-g);
    border-radius: 0 16px 0 60px
}

.cc:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--glow)
}

.cc .ci {
    font-size: 2rem;
    margin-bottom: .6rem;
    position: relative;
    z-index: 1
}

.cc h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: .2rem;
    position: relative;
    z-index: 1
}

.cc p {
    font-size: .78rem;
    color: var(--text3);
    position: relative;
    z-index: 1
}

.cc .cnt {
    display: inline-flex;
    background: var(--accent-g);
    color: var(--accent);
    padding: .15rem .6rem;
    border-radius: 6px;
    font-size: .72rem;
    font-weight: 700;
    margin-top: .6rem;
    position: relative;
    z-index: 1
}

/* PRODUCT CARD */
.pg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.pc {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all .4s
}

.pc:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 212, 255, .15)
}

.pc-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.pc-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s
}

.pc:hover .pc-bg {
    transform: scale(1.05)
}

.pc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--red);
    color: #fff;
    padding: .15rem .6rem;
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 700;
    z-index: 2
}

.pc-badge.new {
    background: var(--green);
    color: var(--bg)
}

.pc-acts {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: all .3s;
    z-index: 2
}

.pc:hover .pc-acts {
    opacity: 1
}

.pa {
    width: 32px;
    height: 32px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    font-size: .75rem
}

.pa:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent)
}

.pa.wish {
    background: var(--red);
    color: #fff;
    border-color: var(--red)
}

.pc-body {
    padding: 1rem
}

.pc-brand {
    font-size: .68rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .2rem
}

.pc-name {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.pc-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: .6rem
}

.pc-rating .s {
    color: var(--orange);
    font-size: .75rem
}

.pc-rating .c {
    font-size: .7rem;
    color: var(--text3)
}

.pc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.pc-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent)
}

.pc-price .old {
    font-size: .72rem;
    color: var(--text3);
    text-decoration: line-through;
    margin-right: 4px;
    font-weight: 400
}

.pc-cart {
    width: 34px;
    height: 34px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem
}

.pc-cart:hover {
    box-shadow: var(--glow);
    transform: scale(1.05)
}

/* FEATURES */
.fg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.fc {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all .3s
}

.fc:hover {
    border-color: var(--accent);
    transform: translateY(-3px)
}

.fc .fi2 {
    font-size: 2rem;
    margin-bottom: .6rem
}

.fc h4 {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: .3rem
}

.fc p {
    font-size: .78rem;
    color: var(--text3)
}

/* BC */
.bc {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--text3)
}

.bc a {
    color: var(--text2);
    text-decoration: none;
    cursor: pointer;
    transition: color .3s
}

.bc a:hover {
    color: var(--accent)
}

.bc .sep {
    opacity: .5
}

.bc .cur {
    color: var(--text);
    font-weight: 700
}

/* PRODUCT DETAIL */
.dg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start
}

.d-gallery {
    position: sticky;
    top: 80px
}

.d-main {
    width: 100%;
    height: 450px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    margin-bottom: .6rem;
    overflow: hidden
}

.d-main-bg {
    position: absolute;
    inset: 0;
    opacity: .15
}

.d-thumbs {
    display: flex;
    gap: .5rem
}

.d-thumb {
    width: 70px;
    height: 80px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    font-size: 1.5rem
}

.d-thumb:hover,
.d-thumb.active {
    border-color: var(--accent)
}

.di {
    padding: .3rem 0
}

.di-brand {
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .3rem
}

.di-title {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: .3rem
}

.di-rating {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 1rem
}

.di-rating .s {
    color: var(--orange);
    font-size: .8rem
}

.di-rating .c {
    font-size: .78rem;
    color: var(--text3)
}

.di-price {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem
}

.di-price .dp {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent)
}

.di-price .do {
    font-size: 1rem;
    color: var(--text3);
    text-decoration: line-through
}

.di-price .ds {
    background: var(--red);
    color: #fff;
    padding: .2rem .6rem;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700
}

.di-sec {
    margin-bottom: 1.2rem
}

.di-sec label {
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: .5rem;
    display: block
}

.sizes {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.so {
    width: 42px;
    height: 38px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    font-weight: 700;
    font-size: .8rem
}

.so:hover,
.so.sel {
    border-color: var(--accent);
    background: var(--accent-g);
    color: var(--accent)
}

.colors {
    display: flex;
    gap: .6rem
}

.co {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s
}

.co:hover,
.co.sel {
    border-color: var(--accent);
    transform: scale(1.1)
}

.qs {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content
}

.qb {
    width: 36px;
    height: 36px;
    background: var(--bg3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text);
    transition: all .3s
}

.qb:hover {
    background: var(--accent);
    color: var(--bg)
}

.qv {
    width: 40px;
    text-align: center;
    font-weight: 700;
    background: var(--bg2)
}

.di-acts {
    display: flex;
    gap: .6rem;
    margin-bottom: 1.2rem
}

.di-acts .btn {
    flex: 1;
    justify-content: center
}

.di-meta {
    border-top: 1px solid var(--border);
    padding-top: 1rem
}

.di-row {
    display: flex;
    justify-content: space-between;
    padding: .4rem 0;
    font-size: .82rem
}

.di-row .dl {
    color: var(--text3)
}

.di-row .dv {
    font-weight: 700
}

/* TABS */
.ts-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem
}

.t-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem
}

.tb {
    padding: .7rem 1.5rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--text3);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all .3s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'Cairo'
}

.tb:hover {
    color: var(--text)
}

.tb.active {
    color: var(--accent);
    border-bottom-color: var(--accent)
}

.tc {
    display: none;
    animation: fu .4s ease
}

.tc.active {
    display: block
}

@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.tg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.tg h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: .8rem
}

.tg p {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: .6rem
}

.tg ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.tg ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text2);
    font-size: .88rem
}

.tg ul li .ck {
    color: var(--accent);
    font-weight: 700
}

/* CAT PAGE */
.cph {
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, .1), rgba(168, 85, 247, .1));
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem
}

.cph h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: .3rem
}

.cph h1 span {
    color: var(--accent)
}

.cph p {
    color: var(--text2)
}

.cpg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.cpc {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    cursor: pointer;
    transition: all .4s;
    text-align: center
}

.cpc:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--glow)
}

.cpc .cpi {
    font-size: 2.5rem;
    margin-bottom: .6rem
}

.cpc h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: .3rem
}

.cpc p {
    color: var(--text3);
    font-size: .82rem;
    margin-bottom: .6rem
}

.cpc .cpcnt {
    display: inline-flex;
    background: var(--accent-g);
    color: var(--accent);
    padding: .2rem .6rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700
}

/* PRODUCTS PAGE */
.p-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: .6rem
}

.fg2 {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap
}

.fs {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .45rem .8rem;
    border-radius: 8px;
    font-size: .82rem;
    outline: none;
    font-family: 'Cairo';
    cursor: pointer
}

.fs:focus {
    border-color: var(--accent)
}

.rc {
    color: var(--text3);
    font-size: .82rem
}

/* CHECKOUT */
.cog {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem
}

.cs {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem
}

.cs h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px
}

.fg3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem
}

.fg4 {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.fg4 label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--text2)
}

.fg4 input,
.fg4 select,
.fg4 textarea {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .7rem .8rem;
    border-radius: 8px;
    font-size: .88rem;
    outline: none;
    transition: all .3s;
    font-family: 'Cairo'
}

.fg4 input:focus,
.fg4 select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-g)
}

.po {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem
}

.po-i {
    background: var(--bg2);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: .9rem;
    cursor: pointer;
    transition: all .3s;
    text-align: center
}

.po-i:hover,
.po-i.sel {
    border-color: var(--accent);
    background: var(--accent-g)
}

.po-i .pi {
    font-size: 1.4rem;
    margin-bottom: .2rem
}

.po-i .pn {
    font-weight: 700;
    font-size: .78rem
}

.si {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border)
}

.si:last-child {
    border-bottom: none
}

.si-img {
    width: 50px;
    height: 60px;
    background: var(--bg2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem
}

.si-info {
    flex: 1
}

.si-n {
    font-weight: 700;
    font-size: .82rem
}

.si-d {
    font-size: .72rem;
    color: var(--text3)
}

.si-p {
    font-weight: 800;
    font-size: .9rem
}

.sr {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    font-size: .88rem;
    color: var(--text2)
}

.sr.total {
    border-top: 1px solid var(--accent);
    padding-top: .6rem;
    font-size: 1.1rem;
    font-weight: 900
}

.sr.total .v {
    color: var(--accent)
}

.promo {
    display: flex;
    gap: .4rem;
    margin-top: .6rem
}

.promo input {
    flex: 1;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .6rem;
    border-radius: 8px;
    font-size: .82rem;
    outline: none;
    font-family: 'Cairo'
}

.promo input:focus {
    border-color: var(--accent)
}

/* SUCCESS */
.sp {
    text-align: center;
    padding: 5rem 2rem
}

.sp .si2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bi .5s ease
}

@keyframes bi {
    0% {
        transform: scale(0)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.sp h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: .3rem
}

.sp>p {
    color: var(--text2);
    margin-bottom: 1.5rem
}

.sb2 {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 450px;
    margin: 0 auto 1.5rem;
    text-align: right
}

.sb2 .sb-r {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border)
}

.sb2 .sb-r:last-child {
    border-bottom: none
}

.sb2 .sb-l {
    color: var(--text3);
    font-size: .85rem
}

.sb2 .sb-v {
    font-weight: 700;
    font-size: .88rem
}

/* AUTH */
.ac {
    max-width: 420px;
    margin: 2.5rem auto;
    padding: 0 1.5rem
}

.ac-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem
}

.ac-card h2 {
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: .3rem
}

.ac-card .as2 {
    text-align: center;
    color: var(--text3);
    margin-bottom: 1.5rem;
    font-size: .88rem
}

.ac-card .fg4 {
    margin-bottom: .8rem
}

.ac-card .fg4 input {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .8rem;
    border-radius: 10px;
    font-size: .92rem;
    outline: none;
    transition: all .3s;
    font-family: 'Cairo'
}

.ac-card .fg4 input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-g)
}

.ac-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: .8rem
}

.ad {
    text-align: center;
    margin: 1.2rem 0;
    color: var(--text3);
    font-size: .82rem;
    position: relative
}

.ad::before,
.ad::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--border)
}

.ad::before {
    right: 0
}

.ad::after {
    left: 0
}

.asw {
    text-align: center;
    margin-top: 1.2rem;
    font-size: .88rem;
    color: var(--text3)
}

.asw a {
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none
}

.sa {
    display: flex;
    gap: .6rem;
    margin-top: .8rem
}

.sa-btn {
    flex: 1;
    padding: .6rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg2);
    cursor: pointer;
    transition: all .3s;
    font-size: 1.1rem;
    text-align: center
}

.sa-btn:hover {
    border-color: var(--accent);
    background: var(--accent-g)
}

/* ORDERS */
.of {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap
}

.of-btn {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text2);
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Cairo'
}

.of-btn:hover,
.of-btn.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent)
}

.ol {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.oc {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    transition: all .3s
}

.oc:hover {
    border-color: var(--accent)
}

.oc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .6rem;
    flex-wrap: wrap;
    gap: .3rem
}

.oc-id {
    font-weight: 800;
    color: var(--accent);
    font-size: .95rem
}

.oc-date {
    font-size: .78rem;
    color: var(--text3)
}

.oc-items {
    display: flex;
    gap: .3rem;
    margin-bottom: .6rem;
    flex-wrap: wrap
}

.oc-item {
    width: 40px;
    height: 48px;
    background: var(--bg2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.oc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .6rem
}

.oc-total {
    font-size: 1.05rem;
    font-weight: 900
}

.badge {
    padding: .2rem .7rem;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700
}

.b-completed {
    background: rgba(0, 255, 136, .12);
    color: var(--green)
}

.b-processing {
    background: var(--accent-g);
    color: var(--accent)
}

.b-pending {
    background: rgba(255, 71, 87, .1);
    color: var(--red)
}

/* TRACKING */
.tc2 {
    max-width: 700px;
    margin: 0 auto
}

.t-search {
    display: flex;
    gap: .6rem;
    margin-bottom: 2rem
}

.t-search input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .8rem 1rem;
    border-radius: 12px;
    font-size: .95rem;
    outline: none;
    font-family: 'Cairo'
}

.t-search input:focus {
    border-color: var(--accent)
}

.t-result {
    display: none
}

.t-result.show {
    display: block;
    animation: fu .5s ease
}

.t-header {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center
}

.t-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: .2rem
}

.t-header p {
    color: var(--text3)
}

.t-tl {
    position: relative;
    padding: 1.2rem 0
}

.t-tl::before {
    content: '';
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg4)
}

.tl-item {
    position: relative;
    padding: 0 50px 1.8rem 0
}

.tl-item:last-child {
    padding-bottom: 0
}

.tl-dot {
    position: absolute;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid var(--bg4);
    background: var(--bg);
    z-index: 1
}

.tl-item.done .tl-dot {
    border-color: var(--green);
    background: var(--green)
}

.tl-item.cur .tl-dot {
    border-color: var(--accent);
    background: var(--accent);
    animation: p2 2s infinite
}

.tl-item.pending .tl-dot {
    border-color: var(--bg4);
    background: var(--bg)
}

@keyframes p2 {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, .4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 212, 255, 0)
    }
}

.tl-c h4 {
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .1rem
}

.tl-c p {
    color: var(--text2);
    font-size: .82rem
}

.tl-c .t {
    font-size: .72rem;
    color: var(--text3);
    margin-top: .15rem
}

/* ADMIN */
.aw {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem
}

.ah {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: .6rem
}

.ah h2 {
    font-size: 1.5rem;
    font-weight: 900
}

.ah p {
    color: var(--text2);
    font-size: .82rem
}

.at {
    display: flex;
    gap: .4rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.at-btn {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text2);
    padding: .4rem 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Cairo'
}

.at-btn:hover,
.at-btn.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent)
}

.as {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem
}

.as-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem;
    position: relative;
    overflow: hidden
}

.as-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--purple))
}

.as-card .asi {
    font-size: 1.6rem;
    margin-bottom: .5rem
}

.as-card .asv {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: .15rem
}

.as-card .asl {
    font-size: .75rem;
    color: var(--text3)
}

.as-card .asch {
    font-size: .7rem;
    font-weight: 700;
    margin-top: .3rem
}

.as-card .asch.up {
    color: var(--green)
}

.as-card .asch.down {
    color: var(--red)
}

.ag {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.ap {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem
}

.ap h3 {
    font-size: .98rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px
}

.ch-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 160px;
    padding: 0 .3rem
}

.ch-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    flex: 1
}

.ch-bar {
    width: 24px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, var(--accent), var(--purple));
    transition: height 1s
}

.ch-label {
    font-size: .65rem;
    color: var(--text3)
}

.ts-i {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border)
}

.ts-i:last-child {
    border-bottom: none
}

.ts-r {
    font-size: 1rem;
    font-weight: 900;
    color: var(--accent);
    min-width: 25px
}

.ts-img {
    width: 35px;
    height: 42px;
    background: var(--bg2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem
}

.ts-info {
    flex: 1
}

.ts-n {
    font-weight: 700;
    font-size: .8rem
}

.ts-s {
    font-size: .7rem;
    color: var(--text3)
}

.ts-p {
    font-weight: 800;
    font-size: .9rem
}

.at2 {
    width: 100%;
    border-collapse: collapse
}

.at2 th {
    text-align: right;
    padding: .7rem;
    background: var(--bg4);
    color: var(--text3);
    font-weight: 700;
    font-size: .72rem;
    border-bottom: 1px solid var(--border)
}

.at2 td {
    padding: .7rem;
    border-bottom: 1px solid var(--border);
    font-size: .82rem
}

.at2 tr:hover td {
    background: var(--accent-g)
}

.af {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem
}

.af h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem
}

/* CART SIDEBAR */
.co2 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.co2.open {
    opacity: 1;
    visibility: visible
}

.csb {
    position: fixed;
    top: 0;
    left: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg2);
    z-index: 2001;
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border)
}

.csb.open {
    left: 0
}

.csh {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.csh h3 {
    font-size: 1.05rem;
    font-weight: 800
}

.csc {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text2);
    transition: color .3s
}

.csc:hover {
    color: var(--red)
}

.ci2 {
    flex: 1;
    overflow-y: auto;
    padding: .6rem
}

.ci-item {
    display: flex;
    gap: .6rem;
    padding: .7rem;
    background: var(--bg3);
    border-radius: 12px;
    margin-bottom: .5rem
}

.ci-img {
    width: 60px;
    height: 70px;
    background: var(--bg2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0
}

.ci-info {
    flex: 1
}

.ci-n {
    font-weight: 700;
    font-size: .82rem;
    margin-bottom: .15rem
}

.ci-d {
    font-size: .72rem;
    color: var(--text3);
    margin-bottom: .15rem
}

.ci-p {
    font-weight: 800;
    font-size: .88rem
}

.ci-rm {
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    font-size: .85rem;
    transition: color .3s;
    align-self: flex-start
}

.ci-rm:hover {
    color: var(--red)
}

.ce {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text3)
}

.csf {
    padding: 1rem;
    border-top: 1px solid var(--border)
}

.cst {
    display: flex;
    justify-content: space-between;
    margin-bottom: .6rem;
    font-weight: 800
}

.cob {
    width: 100%;
    background: var(--accent);
    color: var(--bg);
    padding: .85rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: .95rem;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Cairo';
    border: none
}

.cob:hover {
    box-shadow: var(--glow)
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(70px);
    background: var(--bg3);
    border: 1px solid var(--green);
    color: var(--text);
    padding: .7rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1)
}

.toast.show {
    transform: translateX(-50%) translateY(0)
}

/* FOOTER */
.footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 2.5rem
}

.fi {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem
}

.fb .fl {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: .6rem
}

.fb .fl span {
    color: var(--accent)
}

.fb p {
    color: var(--text3);
    line-height: 1.6;
    font-size: .82rem;
    margin-bottom: 1rem
}

.sl {
    display: flex;
    gap: .5rem
}

.sl-a {
    width: 36px;
    height: 36px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    text-decoration: none;
    transition: all .3s;
    font-size: .9rem
}

.sl-a:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent)
}

.fcl h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.fcl ul {
    list-style: none
}

.fcl ul li {
    margin-bottom: .5rem
}

.fcl ul li a {
    color: var(--text3);
    text-decoration: none;
    font-size: .82rem;
    transition: all .3s;
    cursor: pointer
}

.fcl ul li a:hover {
    color: var(--accent);
    padding-right: 3px
}

.fbot {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text3);
    font-size: .78rem;
    flex-wrap: wrap;
    gap: .6rem
}

.pi {
    display: flex;
    gap: .5rem
}

.pi span {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: .25rem .6rem;
    font-size: .72rem
}

/* SCROLL TOP */
.st {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 44px;
    width: auto;
    height: 44px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all .3s
}

.st.show {
    display: flex
}

.st:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow)
}

/* MOBILE NAV */
.mn {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg2);
    z-index: 2000;
    transition: right .3s;
    padding: 1.5rem;
    border-right: 1px solid var(--border)
    ;overflow-y: auto;
}

.mn.open {
    right: 0
}

.mnc {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text);
    margin-bottom: 1.2rem
}

.mn ul {
    list-style: none
}

.mn ul li {
    border-bottom: 1px solid var(--border)
}

.mn ul li a {
    display: block;
    padding: .8rem 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer
}

.mo {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1999;
    display: none
}

.mo.show {
    display: block
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .h-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .h-text p {
        max-width: 100%;
        margin: 0 auto 1.5rem
    }

    .h-btns {
        justify-content: center
    }

    .h-stats {
        justify-content: center
    }

    .h-visual {
        display: none
    }

    .cg {
        grid-template-columns: repeat(2, 1fr)
    }

    .pg {
        grid-template-columns: repeat(2, 1fr)
    }

    .fg {
        grid-template-columns: repeat(2, 1fr)
    }

    .dg {
        grid-template-columns: 1fr
    }

    .tg {
        grid-template-columns: 1fr
    }

    .cog {
        grid-template-columns: 1fr
    }

    .as {
        grid-template-columns: repeat(2, 1fr)
    }

    .ag {
        grid-template-columns: 1fr
    }

    .fi {
        grid-template-columns: 1fr 1fr
    }

    .cpg {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .mob-toggle {
        display: block
    }

    .h-text h1 {
        font-size: 2.2rem
    }

    .pg {
        grid-template-columns: repeat(2, 1fr)
    }

    .cg {
        grid-template-columns: 1fr
    }

    .fg3 {
        grid-template-columns: 1fr
    }

    .po {
        grid-template-columns: 1fr
    }

    .fi {
        grid-template-columns: 1fr
    }

    .cpg {
        grid-template-columns: 1fr
    }

    .d-main {
        height: 300px
    }

    .as {
        grid-template-columns: 1fr
    }

    .ac-card {
        padding: 1.5rem
    }
}

@media(max-width:480px) {
    .pg {
        grid-template-columns: 1fr
    }

    .h-text h1 {
        font-size: 1.8rem
    }

    .h-stats {
        gap: 1rem
    }

    .h-btns {
        flex-direction: column;
        align-items: center
    }
}

.games-panel {
    background: rgba(var(--surface-rgb, 17, 24, 32), 0.8) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--primary-rgb, 0, 212, 255), 0.1) !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.games-panel:hover {
    border-color: rgba(var(--primary-rgb, 0, 212, 255), 0.3) !important;
    transform: translateY(-2px);
}

.games-neon-btn {
    background: linear-gradient(135deg, var(--primary-color, #00d4ff), var(--accent-color, #a855f7)) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.games-neon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.games-neon-btn:hover::before {
    left: 100%;
}

.games-neon-btn:hover {
    box-shadow: 0 0 20px rgba(var(--primary-rgb, 0, 212, 255), 0.4) !important;
    transform: scale(1.02);
}

.games-input {
    background: rgba(var(--bg-rgb, 11, 14, 20), 0.5) !important;
    border: 1px solid rgba(var(--primary-rgb, 0, 212, 255), 0.1) !important;
    color: var(--text-color, #e8edf3) !important;
    transition: all 0.3s ease;
}

.games-input:focus {
    background: rgba(var(--bg-rgb, 11, 14, 20), 0.8) !important;
    border-color: var(--primary-color, #00d4ff) !important;
    box-shadow: 0 0 15px rgba(var(--primary-rgb, 0, 212, 255), 0.1) !important;
}

.games-dot-grid {
    background-image: radial-gradient(rgba(var(--primary-rgb, 0, 212, 255), 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
}

.games-dot-grid-sm {
    background-image: radial-gradient(rgba(var(--primary-rgb, 0, 212, 255), 0.15) 1px, transparent 1px);
    background-size: 15px 15px;
}

.games-scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.games-scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Theme-level language dropdown direction (Games): open downward */
.navbar .store-lang-switcher .lang-dropdown {
    top: calc(100% + 20px) !important;
    bottom: auto !important;
    right: 0 !important;
    left: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

