/********** Template CSS **********/

:root {
    --brand-primary: #3300cc;
    --brand-primary-hover: #2900a3;
    --brand-primary-shadow: rgba(51, 0, 204, .25);
    --bs-primary: var(--brand-primary);
    --bs-primary-rgb: 51, 0, 204;
}

a {
    color: var(--brand-primary);
}

a:hover {
    color: var(--brand-primary-hover);
}

.text-primary {
    color: var(--brand-primary) !important;
}

.bg-primary {
    background-color: var(--brand-primary) !important;
}

.border-primary {
    border-color: var(--brand-primary) !important;
}

.btn-primary {
    color: var(--bs-white);
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-check:focus + .btn-primary,
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary {
    color: var(--bs-white) !important;
    background-color: var(--brand-primary-hover) !important;
    border-color: var(--brand-primary-hover) !important;
    box-shadow: 0 0 0 .25rem var(--brand-primary-shadow) !important;
}

.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-check:focus + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary {
    color: var(--bs-white) !important;
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 .25rem var(--brand-primary-shadow) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--brand-primary);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 .25rem var(--brand-primary-shadow);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar .navbar-brand .brand-logo {
    display: block;
    height: 58px;
    width: auto;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        padding-top: .75rem;
        padding-bottom: .75rem;
    }

    .navbar .navbar-brand .brand-logo {
        height: 44px;
    }

    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}


/*** HYVEN Home ***/
.gaming-home {
    --store-bg: #05010f;
    --store-bg-soft: rgba(13, 6, 34, .82);
    --store-panel: rgba(18, 10, 46, .82);
    --store-panel-strong: rgba(28, 16, 67, .9);
    --store-border: rgba(145, 115, 255, .24);
    --store-border-strong: rgba(170, 146, 255, .42);
    --store-text: #f5f0ff;
    --store-muted: #cfc3f4;
    --store-shadow: 0 24px 60px rgba(16, 4, 45, .55);
    color: var(--store-text);
    background:
        radial-gradient(circle at 12% 14%, rgba(118, 56, 255, .22), transparent 18%),
        radial-gradient(circle at 88% 18%, rgba(91, 25, 255, .18), transparent 18%),
        radial-gradient(circle at 50% 55%, rgba(76, 26, 201, .11), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, #04010d 0%, #090315 36%, #05010d 100%);
    font-family: "Rajdhani", sans-serif;
    overflow-x: hidden;
}

html {
    scroll-padding-top: 180px;
}

.gaming-home h1,
.gaming-home h2,
.gaming-home h3,
.gaming-home h4,
.gaming-home h5,
.gaming-home h6 {
    font-family: "Orbitron", sans-serif;
    letter-spacing: .04em;
}

.gaming-home .store-shell {
    position: relative;
    isolation: isolate;
}

.gaming-home .store-shell::before,
.gaming-home .store-shell::after {
    position: fixed;
    content: "";
    inset: auto;
    pointer-events: none;
    z-index: -1;
}

.gaming-home .store-shell::before {
    width: 36rem;
    height: 36rem;
    left: -10rem;
    top: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(119, 55, 255, .14) 0%, rgba(119, 55, 255, 0) 72%);
    filter: blur(10px);
}

.gaming-home .store-shell::after {
    width: 34rem;
    height: 34rem;
    right: -8rem;
    top: 6rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153, 101, 255, .12) 0%, rgba(153, 101, 255, 0) 70%);
    filter: blur(10px);
}

.gaming-home .store-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.gaming-home .store-hero#hero {
    background:
        radial-gradient(circle at 18% 48%, rgba(124, 68, 255, .18), transparent 20%),
        radial-gradient(circle at 84% 34%, rgba(131, 79, 255, .13), transparent 18%),
        radial-gradient(circle at 52% 92%, rgba(154, 107, 255, .1), transparent 24%),
        linear-gradient(115deg, rgba(72, 29, 188, .1), transparent 34%, transparent 70%, rgba(132, 91, 255, .08)),
        linear-gradient(180deg, rgba(7, 3, 19, .56), rgba(5, 1, 15, .2)),
        url(../img/carousel-1.jpg);
    background-size: auto, auto, auto, auto, auto, 138% auto;
    background-position: center, center, center, center, center, 58% 28%;
}

.gaming-home .store-hero#hero .container {
    position: relative;
    isolation: isolate;
}

.gaming-home .store-hero#hero .container::before,
.gaming-home .store-hero#hero .container::after {
    position: absolute;
    content: "";
    pointer-events: none;
    z-index: 0;
}

.gaming-home .store-hero#hero .container::before {
    inset: 6rem 1rem 3rem;
    border-radius: 42px;
    background:
        linear-gradient(90deg, rgba(5, 1, 15, .94) 0%, rgba(5, 1, 15, .82) 18%, rgba(5, 1, 15, .34) 52%, rgba(5, 1, 15, .84) 100%),
        linear-gradient(180deg, rgba(24, 11, 59, .18), rgba(5, 1, 15, .62)),
        url(../img/carousel-1.jpg);
    background-size: auto, auto, cover;
    background-position: center, center, 58% 34%;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .03) inset,
        0 28px 70px rgba(7, 2, 22, .42);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .72) 62%, transparent);
    opacity: .74;
}

.gaming-home .store-hero#hero .container::after {
    inset: 8rem 0 3rem;
    background:
        linear-gradient(90deg, rgba(173, 146, 255, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(173, 146, 255, .04) 1px, transparent 1px),
        radial-gradient(circle at 12% 56%, rgba(156, 104, 255, .22), transparent 20%),
        radial-gradient(circle at 84% 26%, rgba(128, 74, 255, .16), transparent 18%),
        linear-gradient(90deg, rgba(5, 1, 15, .3), rgba(181, 145, 255, .06) 50%, rgba(5, 1, 15, .3));
    background-size: 148px 148px, 148px 148px, auto, auto, auto;
    filter: blur(22px);
    opacity: .72;
}

.gaming-home .store-hero::before,
.gaming-home .store-hero::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.gaming-home .store-hero::before {
    bottom: 6%;
    width: min(1240px, 94vw);
    height: 220px;
    background:
        radial-gradient(circle at center, rgba(147, 92, 255, .14), rgba(147, 92, 255, 0) 62%),
        linear-gradient(90deg, rgba(51, 0, 204, 0) 0%, rgba(120, 76, 224, .08) 50%, rgba(51, 0, 204, 0) 100%);
    filter: blur(34px);
    opacity: .45;
}

.gaming-home .store-hero::after {
    display: none;
}

.gaming-home .store-navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    width: min(1320px, calc(100vw - 2rem));
    margin: 0;
    transform: translateX(-50%) translateZ(0);
    z-index: 3000;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid var(--store-border);
    border-radius: 24px;
    background: rgba(9, 4, 23, .24);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .03) inset, 0 20px 40px rgba(10, 2, 28, .45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    will-change: transform;
    transition: none;
}

.gaming-home .store-nav-shell {
    position: relative;
    min-height: 120px;
    z-index: 2999;
}

.gaming-home .store-navbar::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 50%, rgba(112, 60, 255, .08), transparent 34%),
        linear-gradient(180deg, rgba(13, 6, 34, .88), rgba(9, 4, 23, .84));
}

.gaming-home .store-navbar .navbar-brand,
.gaming-home .store-navbar .navbar-collapse,
.gaming-home .store-navbar .navbar-toggler {
    position: relative;
    z-index: 1;
}

.gaming-home .store-navbar .navbar-brand {
    padding-top: .85rem;
    padding-bottom: .85rem;
}

.gaming-home .store-navbar .brand-logo {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(130, 66, 255, .35));
}

.gaming-home .store-navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 1rem .95rem;
    color: rgba(255, 255, 255, .76);
    font-family: "Orbitron", sans-serif;
    font-size: .78rem;
    letter-spacing: .12em;
}

.gaming-home .store-navbar .navbar-nav .nav-link:hover,
.gaming-home .store-navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
    text-shadow: 0 0 16px rgba(164, 117, 255, .65);
}

.gaming-home .store-navbar .navbar-toggler {
    border-color: var(--store-border);
    box-shadow: 0 0 16px rgba(79, 18, 209, .18);
}

.gaming-home .btn-discord,
.gaming-home .btn-primary,
.gaming-home .btn-outline-primary {
    border-radius: 18px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.05rem;
    letter-spacing: .02em;
}

.gaming-home .btn-primary {
    color: var(--bs-white);
    background: linear-gradient(180deg, rgba(112, 60, 255, .95), rgba(51, 0, 204, .92));
    border: 1px solid rgba(189, 165, 255, .42);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset, 0 0 28px rgba(88, 32, 230, .34);
}

.gaming-home .btn-primary:hover,
.gaming-home .btn-primary:focus {
    color: var(--bs-white) !important;
    background: linear-gradient(180deg, rgba(131, 84, 255, .98), rgba(68, 20, 230, .96)) !important;
    border-color: rgba(206, 184, 255, .56) !important;
}

.gaming-home .btn-outline-primary {
    color: var(--bs-white);
    background: rgba(39, 17, 89, .28);
    border-color: rgba(171, 146, 255, .42);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .03) inset, 0 0 22px rgba(78, 22, 225, .16);
}

.gaming-home .btn-outline-primary:hover,
.gaming-home .btn-outline-primary:focus {
    color: var(--bs-white) !important;
    background: rgba(74, 31, 188, .72) !important;
    border-color: rgba(206, 184, 255, .58) !important;
}

.gaming-home .btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background: linear-gradient(180deg, rgba(102, 52, 255, .9), rgba(51, 0, 204, .85));
    border: 1px solid rgba(178, 151, 255, .46);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset, 0 0 24px rgba(86, 35, 230, .38);
}

.gaming-home .btn-discord:hover {
    color: var(--bs-white);
    background: linear-gradient(180deg, rgba(120, 74, 255, .96), rgba(58, 8, 220, .92));
}

.gaming-home .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 170px);
    padding: 4.5rem 0 3rem;
    z-index: 1;
}

.gaming-home .hero-grid::before,
.gaming-home .hero-grid::after {
    position: absolute;
    content: "";
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.gaming-home .hero-grid::before {
    width: min(520px, 40vw);
    height: min(520px, 40vw);
    right: -2rem;
    top: 7rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 92, 255, .22), rgba(151, 92, 255, 0) 68%);
    opacity: 1;
    transform: none;
    filter: blur(18px);
}

.gaming-home .hero-grid::after {
    width: min(420px, 32vw);
    height: min(420px, 32vw);
    left: -5rem;
    bottom: .5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(98, 35, 255, .22), rgba(98, 35, 255, 0) 70%);
    opacity: 1;
    transform: none;
    filter: blur(26px);
}

.gaming-home .hero-copy {
    position: relative;
    max-width: 660px;
    padding-right: 1.5rem;
    z-index: 1;
}

.gaming-home .hero-copy::before {
    position: absolute;
    content: "";
    width: 32rem;
    height: 32rem;
    left: -12rem;
    top: 4rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132, 74, 255, .18), rgba(132, 74, 255, 0) 68%);
    filter: blur(24px);
    pointer-events: none;
    z-index: -1;
}

.gaming-home .hero-tag,
.gaming-home .eyebrow,
.gaming-home .hero-panel-tag,
.gaming-home .product-pill,
.gaming-home .product-state {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .42rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(185, 162, 255, .34);
    background: rgba(81, 31, 219, .14);
    color: #efe8ff;
    font-family: "Orbitron", sans-serif;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 0 16px rgba(97, 31, 238, .14);
}

.gaming-home .hero-copy h1 {
    margin: 1.5rem 0 1.25rem;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.04;
    text-transform: uppercase;
    text-shadow: 0 0 26px rgba(95, 36, 232, .22);
}

.gaming-home .hero-copy p,
.gaming-home .section-heading p,
.gaming-home .category-card p,
.gaming-home .product-body p,
.gaming-home .info-panel p,
.gaming-home .hero-logo-panel p {
    color: var(--store-muted);
    font-size: 1.12rem;
    line-height: 1.7;
}

.gaming-home .hero-copy p {
    max-width: 620px;
}

.gaming-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.gaming-home .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gaming-home .hero-stat,
.gaming-home .category-card,
.gaming-home .product-card,
.gaming-home .info-panel {
    position: relative;
    border: 1px solid var(--store-border);
    background: linear-gradient(180deg, rgba(18, 9, 47, .82), rgba(9, 5, 22, .92));
    border-radius: 24px;
    box-shadow: var(--store-shadow);
    overflow: hidden;
}

.gaming-home .hero-stat {
    padding: 1.1rem 1rem;
}

.gaming-home .hero-stat::before,
.gaming-home .category-card::before,
.gaming-home .product-card::before,
.gaming-home .info-panel::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 36%);
    pointer-events: none;
}

.gaming-home .hero-stat span {
    display: block;
    color: rgba(217, 202, 255, .72);
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.gaming-home .hero-stat strong {
    display: block;
    margin-top: .4rem;
    color: var(--bs-white);
    font-size: 1.08rem;
}

.gaming-home .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.gaming-home .hero-visual::before {
    position: absolute;
    content: "";
    inset: 8% 4% 12% 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 87, 255, .26), rgba(143, 87, 255, 0) 65%);
    filter: blur(24px);
}

.gaming-home .hero-logo-panel {
    position: relative;
    width: 100%;
    max-width: 540px;
    padding: 2rem;
    border: 1px solid var(--store-border-strong);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(25, 14, 61, .96), rgba(12, 6, 28, .96)),
        radial-gradient(circle at 50% 15%, rgba(169, 116, 255, .16), transparent 36%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .04) inset,
        0 0 34px rgba(88, 30, 240, .24),
        0 30px 70px rgba(8, 2, 24, .5);
    transform: rotate(-4deg);
    overflow: hidden;
}

.gaming-home .hero-logo-panel::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 2, 15, .18), rgba(5, 2, 15, .72)),
        linear-gradient(135deg, rgba(109, 57, 255, .18), rgba(255, 255, 255, 0) 42%),
        url(../img/carousel-2.jpg);
    background-size: auto, auto, cover;
    background-position: center, center, 56% 38%;
    opacity: .24;
}

.gaming-home .hero-logo-panel::after {
    position: absolute;
    content: "";
    width: 160%;
    height: 2px;
    left: -30%;
    top: 54%;
    background: linear-gradient(90deg, rgba(51, 0, 204, 0), rgba(206, 174, 255, .86), rgba(51, 0, 204, 0));
    transform: rotate(-10deg);
    box-shadow: 0 0 18px rgba(179, 132, 255, .86);
}

.gaming-home .hero-logo-panel > * {
    position: relative;
    z-index: 1;
}

.gaming-home .hero-panel-tag {
    margin-bottom: 1.25rem;
}

.gaming-home .hero-mark {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 1.25rem;
    filter: drop-shadow(0 0 26px rgba(140, 80, 255, .5));
}

.gaming-home .hero-logo-panel p {
    margin-bottom: 0;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gaming-home .store-section {
    position: relative;
    padding: 2rem 0 4.5rem;
}

.gaming-home:not(.category-page) .category-strip,
.gaming-home:not(.category-page) .featured-products,
.gaming-home:not(.category-page) .services-section,
.gaming-home:not(.category-page) .reviews-section,
.gaming-home:not(.category-page) .info-band {
    padding-top: 4.5rem;
}

.gaming-home:not(.category-page) .category-strip,
.gaming-home:not(.category-page) .featured-products,
.gaming-home:not(.category-page) .services-section,
.gaming-home:not(.category-page) .reviews-section,
.gaming-home:not(.category-page) .info-band,
.gaming-home:not(.category-page) .category-showcase-grid,
.gaming-home:not(.category-page) .product-grid,
.gaming-home:not(.category-page) .services-shell,
.gaming-home:not(.category-page) .services-tab-list,
.gaming-home:not(.category-page) .services-content,
.gaming-home:not(.category-page) .service-panel,
.gaming-home:not(.category-page) .service-group,
.gaming-home:not(.category-page) .services-footer,
.gaming-home:not(.category-page) .reviews-layout,
.gaming-home:not(.category-page) .reviews-intro,
.gaming-home:not(.category-page) .review-summary-card,
.gaming-home:not(.category-page) .reviews-carousel-shell,
.gaming-home:not(.category-page) .reviews-carousel,
.gaming-home:not(.category-page) .review-card,
.gaming-home:not(.category-page) .reviews-control,
.gaming-home:not(.category-page) .info-grid,
.gaming-home:not(.category-page) .category-card-link,
.gaming-home:not(.category-page) .product-card,
.gaming-home:not(.category-page) .product-body,
.gaming-home:not(.category-page) .product-meta,
.gaming-home:not(.category-page) .product-meta a,
.gaming-home:not(.category-page) .product-pill,
.gaming-home:not(.category-page) .product-state,
.gaming-home:not(.category-page) .review-badge,
.gaming-home:not(.category-page) .review-source-pill,
.gaming-home:not(.category-page) .info-panel .btn {
    position: relative;
    z-index: 0;
}

.gaming-home .section-heading {
    margin-bottom: 1.5rem;
}

.gaming-home .section-heading.centered {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.gaming-home .section-heading h2,
.gaming-home .info-panel h2 {
    margin: 1rem 0 0;
    font-size: clamp(1.7rem, 3.4vw, 2.8rem);
    line-height: 1.15;
    text-transform: uppercase;
}

.gaming-home .category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.gaming-home .category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.gaming-home .category-card-link {
    display: block;
    color: inherit;
}

.gaming-home .category-card-link:hover {
    color: inherit;
}

.gaming-home .category-card-link .product-card {
    height: 100%;
}

.gaming-home .category-card-link .product-card:hover {
    transform: translateY(-8px);
}

.gaming-home .category-card-link .product-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--bs-white);
    font-weight: 600;
}

.gaming-home .category-card {
    padding: 1.35rem;
}

.gaming-home .category-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 1rem;
    color: var(--bs-white);
    font-size: 1.5rem;
    background: linear-gradient(180deg, rgba(112, 60, 255, .88), rgba(51, 0, 204, .86));
    box-shadow: 0 0 24px rgba(84, 28, 225, .32);
}

.gaming-home .category-card h3,
.gaming-home .product-body h3 {
    margin-bottom: .55rem;
    font-size: 1.15rem;
    text-transform: uppercase;
}

.gaming-home .category-card p {
    margin-bottom: 0;
}

.gaming-home .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.gaming-home .product-card {
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.gaming-home .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(193, 170, 255, .48);
    box-shadow: 0 32px 72px rgba(10, 3, 28, .62), 0 0 26px rgba(79, 23, 225, .2);
}

.gaming-home .product-art {
    position: relative;
    min-height: 220px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--store-border);
}

.gaming-home .product-art::before,
.gaming-home .product-art::after {
    position: absolute;
    content: "";
    inset: auto;
    pointer-events: none;
}

.gaming-home .product-art::before {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(4px);
}

.gaming-home .product-art::after {
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -1px;
    background: linear-gradient(90deg,
        rgba(51, 0, 204, 0) 0%,
        rgba(122, 75, 255, .16) 20%,
        rgba(236, 227, 255, .96) 50%,
        rgba(122, 75, 255, .16) 80%,
        rgba(51, 0, 204, 0) 100%);
    background-size: 200% 100%;
    box-shadow: 0 0 16px rgba(179, 132, 255, .8);
    animation: productGlowLine 3.4s linear infinite;
}

@keyframes productGlowLine {
    0% {
        background-position: 200% 50%;
        opacity: .45;
    }

    50% {
        background-position: 100% 50%;
        opacity: 1;
    }

    100% {
        background-position: 0% 50%;
        opacity: .45;
    }
}

.gaming-home .product-art i {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .94);
    font-size: 4.8rem;
    text-shadow: 0 0 24px rgba(165, 121, 255, .65);
}

.gaming-home .art-vehicle {
    background:
        radial-gradient(circle at 50% 30%, rgba(165, 110, 255, .24), transparent 30%),
        linear-gradient(180deg, rgba(61, 31, 134, .92), rgba(18, 8, 46, .96));
}

.gaming-home .art-map {
    background:
        radial-gradient(circle at 50% 32%, rgba(148, 99, 255, .2), transparent 28%),
        linear-gradient(180deg, rgba(47, 25, 107, .92), rgba(12, 7, 35, .98));
}

.gaming-home .art-outfit {
    background:
        radial-gradient(circle at 50% 30%, rgba(174, 114, 255, .2), transparent 28%),
        linear-gradient(180deg, rgba(74, 32, 124, .92), rgba(18, 10, 41, .98));
}

.gaming-home .art-peds {
    background:
        radial-gradient(circle at 50% 30%, rgba(149, 100, 255, .22), transparent 30%),
        linear-gradient(180deg, rgba(57, 26, 122, .92), rgba(14, 7, 38, .98));
}

.gaming-home .product-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.gaming-home .product-state {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    background: rgba(20, 10, 52, .88);
}

.gaming-home .product-body {
    padding: 1.25rem 1.1rem 1.2rem;
}

.gaming-home .product-body p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.gaming-home .product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gaming-home .product-meta strong {
    color: #d7ffc5;
    font-size: 1.45rem;
    line-height: 1;
}

.gaming-home .product-meta a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-weight: 600;
    color: var(--bs-white);
}

.gaming-home .services-shell {
    display: grid;
    gap: 1.2rem;
}

.gaming-home .services-tab-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .95rem;
}

.gaming-home .service-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
    padding: 1.15rem 1.1rem;
    border: 1px solid var(--store-border);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(18, 9, 47, .82), rgba(9, 5, 22, .92));
    box-shadow: var(--store-shadow);
    color: var(--store-text);
    text-align: left;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.gaming-home .service-tab:hover,
.gaming-home .service-tab.active {
    transform: translateY(-4px);
    border-color: rgba(193, 170, 255, .48);
    background:
        radial-gradient(circle at top right, rgba(165, 110, 255, .12), transparent 36%),
        linear-gradient(180deg, rgba(31, 15, 75, .95), rgba(10, 5, 26, .98));
    box-shadow: 0 28px 64px rgba(10, 3, 28, .5), 0 0 22px rgba(79, 23, 225, .18);
}

.gaming-home .service-tab i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(112, 60, 255, .88), rgba(51, 0, 204, .86));
    color: var(--bs-white);
    font-size: 1.2rem;
    box-shadow: 0 0 24px rgba(84, 28, 225, .32);
}

.gaming-home .service-tab span,
.gaming-home .service-panel h3,
.gaming-home .service-group h4 {
    color: var(--bs-white);
    text-transform: uppercase;
}

.gaming-home .service-tab span {
    font-family: "Orbitron", sans-serif;
    font-size: .95rem;
    letter-spacing: .08em;
}

.gaming-home .service-tab small {
    display: block;
    color: rgba(221, 210, 255, .72);
    font-size: .92rem;
    line-height: 1.45;
}

.gaming-home .service-panel {
    position: relative;
    border: 1px solid var(--store-border);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(165, 110, 255, .14), transparent 36%),
        linear-gradient(180deg, rgba(18, 9, 47, .82), rgba(9, 5, 22, .92));
    box-shadow: var(--store-shadow);
    padding: 1.7rem;
}

.gaming-home .service-panel::before,
.gaming-home .service-group::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.gaming-home .service-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.gaming-home .service-panel-copy {
    max-width: 880px;
}

.gaming-home .service-panel-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(185, 162, 255, .34);
    background: rgba(81, 31, 219, .14);
    color: #efe8ff;
    font-family: "Orbitron", sans-serif;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 0 16px rgba(97, 31, 238, .14);
}

.gaming-home .service-panel h3 {
    margin: 1rem 0 .7rem;
    font-size: clamp(1.45rem, 2.7vw, 2.35rem);
    line-height: 1.18;
}

.gaming-home .service-panel p {
    margin-bottom: 0;
    max-width: 760px;
    color: var(--store-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.gaming-home .service-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gaming-home .service-groups-vehicles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gaming-home .service-group {
    position: relative;
    padding: 1.15rem 1.1rem;
    border: 1px solid rgba(170, 146, 255, .18);
    border-radius: 22px;
    background: rgba(69, 32, 176, .12);
    overflow: hidden;
}

.gaming-home .service-group h4 {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin: 0 0 1rem;
    font-size: .98rem;
    line-height: 1.3;
}

.gaming-home .service-group h4 i {
    color: #f4a7ff;
    font-size: .95rem;
}

.gaming-home .service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gaming-home .service-list li {
    position: relative;
    padding-left: 1.15rem;
    color: rgba(236, 229, 255, .88);
    font-size: .98rem;
    line-height: 1.55;
}

.gaming-home .service-list li + li {
    margin-top: .5rem;
}

.gaming-home .service-list li::before {
    position: absolute;
    content: "";
    left: 0;
    top: .52rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 12px rgba(127, 70, 255, .8);
}

.gaming-home .services-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .9rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(170, 146, 255, .18);
    border-radius: 22px;
    background: rgba(18, 9, 47, .54);
}

.gaming-home .services-note {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem .9rem;
    border-radius: 16px;
    border: 1px solid rgba(170, 146, 255, .16);
    background: rgba(69, 32, 176, .1);
    color: rgba(236, 229, 255, .88);
    font-size: .96rem;
    line-height: 1.45;
}

.gaming-home .services-note i {
    color: #f4a7ff;
}

.gaming-home .services-footer .btn {
    margin-left: auto;
}

.gaming-home .reviews-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.gaming-home .reviews-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center;
}

.gaming-home .review-summary-card,
.gaming-home .review-card {
    position: relative;
    border: 1px solid var(--store-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--store-shadow);
}

.gaming-home .review-summary-card::before,
.gaming-home .review-card::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.gaming-home .review-summary-card {
    flex: 1;
    padding: 1.65rem;
    background:
        radial-gradient(circle at top right, rgba(161, 97, 255, .16), transparent 34%),
        linear-gradient(180deg, rgba(21, 10, 54, .94), rgba(8, 4, 22, .98));
}

.gaming-home .review-source-pill,
.gaming-home .review-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(185, 162, 255, .34);
    background: rgba(81, 31, 219, .14);
    color: #efe8ff;
    font-family: "Orbitron", sans-serif;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 0 16px rgba(97, 31, 238, .14);
}

.gaming-home .review-source-pill {
    margin: 0 auto;
}

.gaming-home .review-source-pill-secondary {
    margin-top: .15rem;
}

.gaming-home .review-heading {
    max-width: 980px;
    margin: .9rem auto .7rem;
}

.gaming-home .review-heading h2 {
    font-size: clamp(2.1rem, 5vw, 3.85rem);
    letter-spacing: .04em;
    text-shadow: 0 0 22px rgba(95, 36, 232, .16);
}

.gaming-home .review-heading p {
    max-width: 720px;
    margin: .85rem auto 0;
    font-size: 1rem;
}

.gaming-home .review-author h3 {
    display: block;
    margin: 0;
    color: var(--bs-white);
    font-size: 1rem;
    text-transform: uppercase;
}

.gaming-home .review-date {
    display: block;
    margin-top: .35rem;
    color: rgba(221, 210, 255, .72);
    font-size: .95rem;
}

.gaming-home .reviews-carousel-shell {
    position: relative;
    display: flex;
    align-items: stretch;
    min-width: 0;
    width: 100%;
    padding: 0 3.6rem;
}

.gaming-home .reviews-carousel {
    width: 100%;
}

.gaming-home .reviews-carousel .carousel-inner,
.gaming-home .reviews-carousel .carousel-item {
    height: 100%;
}

.gaming-home .reviews-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(225, 219, 255, .68);
    border-radius: 50%;
    background: rgba(56, 26, 147, .56);
    color: var(--bs-white);
    box-shadow:
        0 0 0 1px rgba(201, 182, 255, .22) inset,
        0 12px 28px rgba(10, 2, 28, .3),
        0 0 18px rgba(78, 21, 225, .22);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gaming-home .reviews-control:hover {
    background: rgba(74, 32, 191, .88);
    color: var(--bs-white);
    transform: translateY(-50%) scale(1.04);
    box-shadow:
        0 0 0 1px rgba(223, 210, 255, .34) inset,
        0 14px 30px rgba(10, 2, 28, .34),
        0 0 20px rgba(95, 32, 237, .3);
}

.gaming-home .reviews-control-prev {
    left: -1.6rem;
}

.gaming-home .reviews-control-next {
    right: -1.6rem;
}

.gaming-home .review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 160px;
    padding: 1.15rem 1.35rem .95rem;
    background:
        radial-gradient(circle at top right, rgba(165, 110, 255, .12), transparent 34%),
        linear-gradient(180deg, rgba(18, 9, 47, .82), rgba(9, 5, 22, .92));
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.gaming-home .review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(193, 170, 255, .48);
    box-shadow: 0 32px 72px rgba(10, 3, 28, .62), 0 0 26px rgba(79, 23, 225, .2);
}

.gaming-home .review-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 1rem;
    margin-bottom: .55rem;
    min-height: auto;
}

.gaming-home .review-author {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 0;
}

.gaming-home .review-author > div:last-child {
    min-width: 0;
}

.gaming-home .review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(193, 170, 255, .34);
    background: linear-gradient(180deg, rgba(110, 58, 255, .9), rgba(45, 14, 130, .95));
    color: var(--bs-white);
    font-family: "Orbitron", sans-serif;
    font-size: 1rem;
    letter-spacing: .1em;
    box-shadow: 0 0 20px rgba(86, 28, 226, .24);
}

.gaming-home .review-rating {
    display: inline-flex;
    gap: .3rem;
    margin-bottom: .65rem;
    color: #ffd86b;
    text-shadow: 0 0 14px rgba(255, 215, 107, .28);
    font-size: .92rem;
}

.gaming-home .review-quote {
    margin-bottom: 0;
    color: var(--store-text);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
}

.gaming-home .review-author h3 {
    line-height: 1.08;
}

.gaming-home .review-badge {
    min-width: 132px;
    min-height: 46px;
    justify-content: center;
    align-self: flex-start;
    text-align: center;
    line-height: 1.25;
}

.gaming-home .review-card-footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
}

.gaming-home .review-card-footer .btn {
    min-width: 0;
    padding: .7rem 1.15rem;
    font-size: .92rem;
}

.gaming-home.home-main .reviews-preview-home {
    padding-top: 3rem;
}

.gaming-home.home-main .reviews-preview-home .reviews-layout {
    gap: .9rem;
}

.gaming-home.home-main .reviews-preview-home .reviews-intro {
    margin-bottom: .15rem;
}

.gaming-home.home-main .reviews-preview-home .review-card {
    min-height: 214px;
}

.gaming-home .info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 1.25rem;
}

.gaming-home .info-panel {
    padding: 1.65rem;
}

.gaming-home .feature-list {
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.gaming-home .feature-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--store-text);
    font-size: 1.05rem;
}

.gaming-home .feature-list li + li {
    margin-top: .8rem;
}

.gaming-home .feature-list li::before {
    position: absolute;
    content: "";
    top: .5rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 12px rgba(127, 70, 255, .8);
}

.gaming-home .discord-panel,
.gaming-home .process-panel {
    background:
        radial-gradient(circle at top right, rgba(164, 103, 255, .14), transparent 34%),
        linear-gradient(180deg, rgba(26, 14, 60, .92), rgba(10, 5, 24, .96));
}

.gaming-home .process-steps {
    display: grid;
    gap: .85rem;
    margin: 1.5rem 0;
}

.gaming-home .process-step {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid var(--store-border-strong);
    background: rgba(89, 38, 229, .12);
    box-shadow: 0 0 22px rgba(85, 28, 226, .12);
}

.gaming-home .process-step strong {
    display: block;
    margin: 0 0 .35rem;
    color: var(--bs-white);
    font-size: 1rem;
    text-transform: uppercase;
}

.gaming-home .process-step span {
    display: block;
    color: rgba(220, 210, 255, .78);
    font-size: .98rem;
    line-height: 1.55;
}

.gaming-home .store-footer {
    position: relative;
    padding: 1rem 0 3rem;
}

.gaming-home .store-footer::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    width: min(1100px, 88vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(51, 0, 204, 0), rgba(168, 139, 255, .72), rgba(51, 0, 204, 0));
}

.gaming-home .footer-logo {
    display: block;
    width: min(340px, 80vw);
    margin: 1.5rem auto 1rem;
    filter: drop-shadow(0 0 18px rgba(121, 63, 255, .32));
}

.gaming-home .store-footer p {
    margin-bottom: 0;
    color: rgba(220, 210, 255, .72);
    font-size: 1rem;
}

.gaming-home:not(.category-page) .store-hero {
    min-height: auto;
    overflow: visible;
}

.gaming-home:not(.category-page) .store-hero#hero {
    background: none;
}

.gaming-home:not(.category-page) .store-hero#hero .container::before,
.gaming-home:not(.category-page) .store-hero#hero .container::after,
.gaming-home:not(.category-page) .store-hero::before,
.gaming-home:not(.category-page) .store-hero::after {
    display: none;
}

.gaming-home .compact-hero {
    position: relative;
    padding: 1rem 0 .5rem;
    z-index: 1;
}

.gaming-home #hero,
.gaming-home #categories,
.gaming-home #products,
.gaming-home #about-section,
.gaming-home #about,
.gaming-home #community {
    scroll-margin-top: 180px;
}

.gaming-home:not(.category-page) #categories,
.gaming-home:not(.category-page) #products,
.gaming-home:not(.category-page) #about-section,
.gaming-home:not(.category-page) #community {
    scroll-margin-top: 240px;
}

.gaming-home .compact-hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(136, 101, 255, .34);
    background: rgba(255, 255, 255, .02);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .03) inset,
        0 18px 44px rgba(8, 2, 23, .34),
        0 0 26px rgba(74, 18, 224, .16);
}

.gaming-home .compact-hero-banner::after {
    position: absolute;
    content: "";
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
    pointer-events: none;
}

.gaming-home .compact-hero-carousel {
    position: relative;
}

.gaming-home .compact-hero-carousel .carousel-inner {
    border-radius: inherit;
}

.gaming-home .compact-hero-slide {
    aspect-ratio: 688 / 264;
}

.gaming-home .compact-hero-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaming-home .compact-hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(39, 11, 111, .86);
    color: var(--bs-white);
    box-shadow:
        0 0 0 1px rgba(201, 182, 255, .22) inset,
        0 12px 28px rgba(10, 2, 28, .3),
        0 0 18px rgba(78, 21, 225, .22);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gaming-home .compact-hero-control:hover {
    background: rgba(59, 20, 163, .94);
    color: var(--bs-white);
    transform: translateY(-50%) scale(1.04);
    box-shadow:
        0 0 0 1px rgba(223, 210, 255, .34) inset,
        0 14px 30px rgba(10, 2, 28, .34),
        0 0 20px rgba(95, 32, 237, .3);
}

.gaming-home .compact-hero-control-prev {
    left: 1rem;
}

.gaming-home .compact-hero-control-next {
    right: 1rem;
}

.gaming-home .compact-hero-control i {
    font-size: 1.1rem;
}

.gaming-home.category-page .store-hero {
    min-height: auto;
}

.gaming-home.home-main .compact-banner-section {
    padding-top: 0;
    padding-bottom: 2rem;
}

.gaming-home.home-main .compact-hero {
    padding: 0;
}

.gaming-home .category-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 1.25rem;
    align-items: stretch;
    padding: 2.75rem 0 1rem;
}

.gaming-home .category-page-copy h1 {
    margin: 1.2rem 0 1rem;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.06;
    text-transform: uppercase;
}

.gaming-home .category-page-copy p {
    max-width: 760px;
}

.gaming-home .category-page-highlight {
    padding: 1.65rem;
}

.gaming-home .category-page-highlight h2 {
    margin: 1rem 0 .9rem;
}

.gaming-home .category-page-highlight p {
    margin-bottom: 0;
}

.gaming-home .category-page-copy .hero-actions {
    margin-top: 1.6rem;
}

@media (max-width: 991.98px) {
    .gaming-home .store-nav-shell {
        min-height: 98px;
    }

    .gaming-home .store-navbar {
        top: .65rem;
        width: calc(100vw - 1rem);
        border-radius: 22px;
    }

    .gaming-home .store-navbar .brand-logo {
        height: 48px;
    }

    .gaming-home .store-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem 1.1rem;
        border-radius: 20px;
        border: 1px solid rgba(166, 138, 255, .16);
        background: rgba(10, 5, 25, .88);
    }

    .gaming-home .store-navbar .navbar-nav .nav-link {
        padding: .75rem 0;
    }

    .gaming-home .hero-grid,
    .gaming-home .info-grid,
    .gaming-home .category-page-intro {
        grid-template-columns: 1fr;
    }

    .gaming-home .hero-grid {
        gap: 2rem;
        min-height: auto;
        padding: 3rem 0 2rem;
    }

    .gaming-home .hero-grid::before {
        width: min(420px, 52vw);
        height: min(420px, 52vw);
        right: -2rem;
        top: 8rem;
    }

    .gaming-home .hero-grid::after {
        width: min(320px, 40vw);
        height: min(320px, 40vw);
        left: -4rem;
        bottom: 2rem;
    }

    .gaming-home .store-hero#hero {
        background-size: auto, auto, auto, auto, auto, 188% auto;
        background-position: center, center, center, center, center, 62% 24%;
    }

    .gaming-home .store-hero#hero .container::before {
        background-position: center, center, 62% 34%;
    }

    .gaming-home .hero-stats,
    .gaming-home .category-grid,
    .gaming-home .category-showcase-grid,
    .gaming-home .product-grid,
    .gaming-home .services-tab-list,
    .gaming-home .service-groups,
    .gaming-home .service-groups-vehicles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gaming-home .hero-logo-panel {
        max-width: 620px;
        transform: none;
    }

    .gaming-home .compact-hero-banner {
        border-radius: 24px;
    }

    .gaming-home .compact-hero-control {
        width: 46px;
        height: 46px;
    }

    .gaming-home .reviews-layout,
    .gaming-home .info-grid {
        grid-template-columns: 1fr;
    }

    .gaming-home .services-footer .btn {
        margin-left: 0;
    }

    .gaming-home .reviews-carousel-shell {
        padding: 0 3.75rem;
    }
}

@media (max-width: 767.98px) {
    .gaming-home .hero-copy h1 {
        font-size: clamp(2rem, 12vw, 3.35rem);
    }

    .gaming-home .hero-grid::before {
        width: 270px;
        height: 270px;
        right: -2.5rem;
        top: 9rem;
    }

    .gaming-home .hero-grid::after {
        width: 220px;
        height: 220px;
        left: -3.5rem;
        bottom: 1rem;
    }

    .gaming-home .store-hero#hero {
        background-size: auto, auto, auto, auto, auto, 250% auto;
        background-position: center, center, center, center, center, 64% 26%;
    }

    .gaming-home .store-hero#hero .container::before {
        inset: 6rem .35rem 2rem;
        background-position: center, center, 62% 30%;
    }

    .gaming-home .hero-actions {
        flex-direction: column;
    }

    .gaming-home .hero-actions .btn,
    .gaming-home .discord-panel .btn {
        width: 100%;
    }

    .gaming-home .hero-stats,
    .gaming-home .category-grid,
    .gaming-home .category-showcase-grid,
    .gaming-home .product-grid,
    .gaming-home .services-tab-list,
    .gaming-home .service-groups,
    .gaming-home .service-groups-vehicles {
        grid-template-columns: 1fr;
    }

    .gaming-home .compact-hero {
        padding-top: .65rem;
    }

    .gaming-home .compact-hero-banner {
        border-radius: 20px;
    }

    .gaming-home .compact-hero-control {
        width: 40px;
        height: 40px;
    }

    .gaming-home .compact-hero-control-prev {
        left: .55rem;
    }

    .gaming-home .compact-hero-control-next {
        right: .55rem;
    }

    .gaming-home .hero-logo-panel,
    .gaming-home .category-card,
    .gaming-home .product-card,
    .gaming-home .review-summary-card,
    .gaming-home .review-card,
    .gaming-home .info-panel {
        border-radius: 22px;
    }

    .gaming-home .hero-logo-panel {
        padding: 1.5rem;
    }

    .gaming-home .product-art {
        min-height: 200px;
    }

    .gaming-home .service-panel {
        padding: 1.25rem;
    }

    .gaming-home .service-panel-header {
        margin-bottom: 1rem;
    }

    .gaming-home .services-footer {
        align-items: stretch;
    }

    .gaming-home .services-note,
    .gaming-home .services-footer .btn {
        width: 100%;
    }

    .gaming-home .reviews-carousel-shell {
        padding: 0 3rem;
    }

    .gaming-home .review-card-head {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .gaming-home .review-avatar {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .gaming-home .reviews-control {
        width: 42px;
        height: 42px;
    }

    .gaming-home .review-badge {
        min-width: 0;
    }
}
