/** Reset **/
* {
    margin: 0;
    padding: 0;
}

/** Text Selection **/
::selection {
    background-color: var(--primary-color, #1976d2);
    color: #ffffff;
}
::-moz-selection {
    background-color: var(--primary-color, #1976d2);
    color: #ffffff;
}
*, *::before, *::after {
    box-sizing: border-box;
}
ol, ul, menu {
    list-style: none;
}
::placeholder {
    color: unset;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video { 
    margin: 0; 
    padding: 0; 
    border: 0; 
    font-size: 100%; 
    font: inherit; 
    vertical-align: baseline;
} 
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
}

/** Variables **/
:root {
    --body-bgcolor: #F4F6FC;
    --orange: #FBB03B;
    --green: #66C76A;
    --green2: #41B741;;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #333333;
    --pink: #F47E7E;
    --grey1: #AAB4C8;
    --grey2: #858E9F;
    --grey3: #f0f0f0;
    --grey4: #C6C6C6;
    --grey5: #EEF0F4;
    --grey6: #929396;
    --blue: #668EFF;
    --red: #F03827;
}

/** Definitions **/
html {
    font-size: 15px;
}
body {
    background-color: var(--body-bgcolor);
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}
body.opened {
    overflow: hidden;
}
input, select, textarea {
    font-family: 'Roboto', sans-serif;
}
button {
    cursor: pointer;
}
.container {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 24px;
    box-sizing: border-box;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.col {
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
}
.d-bl { display: block; }
.d-i-bl { display: inline-block; }
.d-fx { display: flex; }
.d-i-fx { display: inline-flex; }
.fx-aic { align-items: center; }
.fx-jcfs { justify-content: flex-start; }
.fx-jcc { justify-content: center; }
.fx-jcsb { justify-content: space-between; }
.fx-fww { flex-wrap: wrap; }
.fx-fdc { flex-direction: column; }
.ta-c { text-align: center; }
.h-100 { height: 100%; }
.mt-auto { margin-top: auto; }

/** Header **/
#topBar {
    background: var(--orange);
    height: 40px;
    font-size: 0.8rem;
    font-weight: 500;
}
#topBar .campaign {
    height: 40px;
}
#topBar .campaign .icon {
    margin-right: 0.5333rem;
}
#topBar a {
    color: var(--white);
}
#topBar .links {
    justify-content: end;
}
#topBar .links a {
    padding:0 20px;
    line-height: 21px;
}
#topBar .links a:not(:last-child) {
    border-right: 1px var(--white) solid;
}
#topBar .links a:first-child {
    padding-left: 0;
}
#topBar .links a:last-child {
    padding-right: 0;
}

#logoButtons {
    background: var(--white);
    border-bottom: 1px var(--grey3) solid;
}
#logoButtons .row {
    height: 90px;
}
.mobileMenuIcon, .mobileUserMenuIcon {
    display: none;
}
.headerLogo {
    max-width: 360px;
}
.headerLogo img {
    height: 75px;
}
#logoButtons #searchForm {
    width: 100%;
    max-width: 550px;
    position: relative;
}
#logoButtons #searchForm input {
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    width: calc( 100% - 40px );
    height: 50px;
    line-height: 48px;
    padding:0 30px;
    color: var(--grey4);
    font-weight: 500;
    font-size: 1rem;
}
#logoButtons #searchForm input:focus {
    color: var(--text-dark);
}
#logoButtons #searchForm button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 5px;
    top:0;
    right: 0;
    border:0;
    z-index: 2;
}
.lightOrDark {
    background: var(--body-bgcolor);
    border-radius: 17px;
    width: 70px;
    height: 34px;
    margin-left: auto;
    padding: 4px;
    justify-content: space-between;
    position: relative;
}
.lightOrDark a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.lightOrDark a img {
    height: 12px;
}
.lightOrDark > span {
    position: absolute;
    width: 26px;
    height: 26px;
    background: var(--white);
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: all 0.5s;
    z-index: 1;
}
.lightOrDark.dark > span {
    left: 40px;
}
.languageArea {
    margin-left: 25px;
}
.languageArea > div {
    position: relative;
}
.languageArea div ul {
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 10px;
    width: 110px;
    top: 30px;
    z-index: 3;
    display: none;
    box-shadow: 0px 0px 4px 0px var(--grey3);
}
.languageArea div.opened ul {
    display: block;
}
.languageArea ul li a {
    display: block;
    height: 30px;
    font-size: 0.7333rem;
    line-height: 30px;
    font-weight: 500;
    color: var(--grey1);
}
.languageArea ul li a:hover {
    background: var(--orange);
    color: var(--white);
}
.languageArea ul li:first-child a {
    border-radius: 10px 10px 0 0;
}
.languageArea ul li:last-child a {
    border-radius: 0 0 10px 10px;
}
.userButtons {
    font-size: 0;
}
.userButtons a {
    margin-left: 25px;
    width: 120px;
    height: 40px;
    background: var(--orange);
    border-radius: 5px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.8667rem;
    display: inline-block;
    line-height: 40px;
    text-align: center;
}
.cartArea {
    margin-left: 25px;
}
.cartArea .cartBtn {
    width: 40px;
    height: 40px;
    background: var(--green);
    color: #fff;
    position: relative;
    border-radius: 5px;
}
.cartArea .cartBtn em {
    position: absolute;
    top:-9px;
    right: -9px;
    font-style: normal;
    width: 22px;
    height: 22px;
    font-weight: 500;
    font-size: 0.6667rem;
    background: var(--pink);
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    border:2px var(--white) solid;
}
.cartArea .cartBtn em {}



#headerNav {
    height: 50px;
    background: var(--white);
    border-bottom: 1px solid #eef0f4;
}
/* Yeni: flex layout — sol:nav | orta:catLinks | sağ:addAdvsBtn */
#headerNav .headerNavInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    position: relative;
}
#headerNav .addAdvsBtn {
    flex-shrink: 0;
    height: 32px;
    line-height: 32px;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0 16px;
    color: var(--white);
    background: var(--green);
    border-radius: 6px;
    white-space: nowrap;
}
#headerNav nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
#headerNav nav ul.mainmenu {
    display: flex;
    align-items: center;
    gap: 4px;
}
#headerNav nav ul.mainmenu > li {
    position: relative;
    max-width: 200px;
    width:100%;
}
#headerNav nav ul.mainmenu > li:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    opacity: 0;
    transition: all 0.4s;
}
#headerNav nav ul.mainmenu > li:hover:before {
    opacity: 1;
}
#headerNav nav ul.mainmenu > li > a {
    display: block;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0 14px;
    transition: color 0.2s;
}
#headerNav nav ul.mainmenu > li:hover > a {
    color: var(--orange);
}
#headerNav nav ul.mainmenu > li ul.submenu {
    display: none;
    position: absolute;
    background: var(--white);
    left: 50%;
    width: 160px;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0px 1px 4px 0px var(--grey3);
    border-radius: 0 0 10px 10px;
    transition: all 0.4s;
    opacity: 0;
}
#headerNav nav ul.mainmenu > li:hover ul.submenu {
    display: block;
    opacity: 1;
}
#headerNav nav ul.mainmenu > li ul.submenu li a {
    color: var(--grey1);
    padding:0 15px;
    line-height: 40px;
    font-weight: 500;
    font-size: 0.8667rem;
    display: block;
    text-align: left;
}
#headerNav nav ul.mainmenu > li ul.submenu li a:hover {
    background: var(--orange);
    color: var(--white);
}
#headerNav nav ul.mainmenu > li ul.submenu li:last-child,
#headerNav nav ul.mainmenu > li ul.submenu li:last-child a {
    border-radius: 0 0 10px 10px;
}

/* Nav Category Quick Links */
.navCatLinks {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}
.navCatItem {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    background: #f4f6fc;
    border: 1.5px solid transparent;
    transition: all 0.18s;
    white-space: nowrap;
}
.navCatItem:hover {
    background: #fff8ee;
    border-color: var(--orange);
}
.nci-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nci-label {
    font-weight: 600;
    font-size: 0.82rem;
    color: #1a1a2e;
}
.nci-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--orange);
    background: #fff3d6;
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 2px;
}

#homeStories {
    padding: 20px;
}
#homeStories .container {
    padding-left: 20px;
}
#homeStories .story {
    width: 70px;
    margin-right: 70px;
}
#homeStories .story a {
    display: block;
    position: relative;
}
#homeStories .story a img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border:2px var(--white) solid;
    transition: all 0.4s;
    display: block;
}
#homeStories .story a span {
    transition: all 0.4s;
    background: var(--white);
    position: relative;
    z-index: 2;
    left: 0;
    font-size: 0.7333rem;
    line-height: 20px;
    height: 20px;
    width: 70px;
    overflow: hidden;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    top: -10px;
    border-radius: 5px;
}
#homeStories .story a:hover img {
    border-color:var(--orange);
}
#homeStories .story a:hover span {
    background: var(--orange);
}
#slideArea {
    margin-bottom: 20px;
}
#bigSlide {
    width: 1000px;
    height: 360px;
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
}
#bigSlide .swiper,
#smallSlide .swiper {
    width: 100%;
    height: 100%;
}
#bigSlide .swiper .slideImg,
#smallSlide .swiper .slideImg {
    display: block;
}
#bigSlide .swiper .swiper-horizontal>.swiper-pagination-bullets, 
#bigSlide .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
#smallSlide .swiper .swiper-horizontal>.swiper-pagination-bullets, 
#smallSlide .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: auto;
    top: 20px;
    text-align: left;
    padding-left: 25px;
}
#bigSlide .swiper .swiper-pagination-bullet,
#smallSlide .swiper .swiper-pagination-bullet {
    width: 15px;
    height: 10px;
    background: #F4F6FC;
    opacity: 0.5;
    border-radius: 5px;
    margin:0 10px 0 0;
    display: block;
    float: left;
    transition: all 0.4s ease;
}
#bigSlide .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
#smallSlide .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
}
#bigSlide .swiper .swiper-button-next,
#bigSlide .swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
    opacity: 0.5;
}
#bigSlide .swiper .swiper-button-next:after,
#bigSlide .swiper .swiper-button-prev:after {
    display: none;
}
#bigSlide .swiper .swiper-button-prev i {
    transform: rotate(180deg);
}
#smallSlide {
    width: 340px;
    height: 360px;
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
}
#otherImages {}
#otherImages {
    width: 140px;
    height: 360px;
    display: flex;
    flex-direction: column;
}
#otherImages .slide {
    width: 140px;
    height: 75px;
    border-radius: 5px;
    overflow: hidden;
}
#otherImages .slide + .slide {
    margin-top: 20px;
}
#otherImages .slide img {
    display: block;
}
#bannerArea {
    margin-bottom: 20px;
}
#bannerList {
    display: flex;
}
#bannerList .banner {
    margin-right: 20px;
}
#bannerList .banner:last-child {
    margin-right: 0;
}
#bannerList .banner a {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    width: 365px;
    height: 90px;
    display: block;
}
#bannerList .banner a:before {
    content: "";
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);    
}
#bannerList .banner a img {
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}
#bannerList .banner a:hover img {
    transform: scale(1.04);
}
#bannerList .banner a span {
    position: absolute;
    z-index: 3;
    display: flex;
    width: calc(100% - 90px);
    height: 90px;
    left: 0;
    top: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--white);
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2rem;
}
#bannerList .banner a span em {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
}
#bannerList .banner a i {
    position: absolute;
    z-index: 3;
    top: 28px;
    right: 38px;
    opacity: 0.5;
    font-size: 23px;
    transition: all 0.4s;
}
#bannerList .banner a:hover i {
    opacity: 1;
}
#homeGameTabLinks {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 19px;
}
#homeGameTabLinks ul {
    display: flex;
    width: 100%;
}
#homeGameTabLinks ul li {
    width: 20%;
}
#homeGameTabLinks ul li a {
    height: 50px;
    color: var(--grey1);
    font-weight: 500;
    font-size: 0.7333rem;
    position: relative;
    display: flex;
}
#homeGameTabLinks ul li a div {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
#homeGameTabLinks ul li a div.mobile {
    display: none;
}
#homeGameTabLinks ul li a span {
    display: block;
    font-weight: 700;
    font-size: 0.8667rem;
}
#homeGameTabLinks ul li a:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 32px;
    top: 9px;
    left: 0;
    background: var(--grey3);
}
#homeGameTabLinks ul li:first-child a:before {
    display: none;
}
#homeGameTabLinks ul li a.active {
    color: var(--text-dark);
}
#homeGameTabLinks ul li a.active:after {
    content: "";
    position: absolute;
    height: 4px;
    bottom: -2px;
    left: 50%;
    transform:translateX(-50%);
    transition: all 0.4s;
    width: 75px;
    border-radius: 2px;
    background: var(--orange);
}
#homeGameTabLinks ul li a.active:hover:after {
    width: 150px;
}
#homeGameTabContents {
    margin-bottom: 20px;
    min-height: 340px;
}
#homeGameTabContents .homeGameTab {
    display: flex;
    display: none;
}
#homeGameTabContents .homeGameTab.active {
    display: block;
}
#homeGameTabContents .homeGameTab .tabBox {
    width: 100%;
    max-width: 240px;
}
#homeGameTabContents .homeGameTab .tabBox + .tabBox {
    margin-left: 16px;
}

#homeGameTabContents .homeGameTab .tabBox a {
    display: block;
    position: relative;
    transition: all 0.4s;
}
#homeGameTabContents .homeGameTab .tabBox a .img {
    position: relative;
    border-radius: 5px;
    z-index: 1;
    overflow: hidden;
}
#homeGameTabContents .homeGameTab .tabBox a span {
    position: relative;
    display: block;
    z-index:3;
    background: var(--white);
    border-radius: 5px;
    width: 160px;
    height: 40px;
    line-height: 40px;
    font-weight: 500;
    font-size: 0.8667rem;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    color: var(--black);
}
#homeGameTabContents .homeGameTab .tabBox a .img:after {
    content: "";
    position: absolute;
    z-index:2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 5px;
    transition: all 0.4s;
}
#homeGameTabContents .homeGameTab .tabBox a:hover {
    transform: scale(1.04);
}
#homeGameTabContents .homeGameTab .tabBox a:hover .img:after {
    opacity: 0.5;
}
#homeAdvsTabs {
    margin-bottom: 40px;
}
#homeAdvsTabLinks {
    margin-bottom: 47px;
    align-items: center;
}
#homeAdvsTabLinks .sectionTitle {
    margin-top: 10px;
}
.sectionTitle {
    font-weight: 600;
    height: 35px;
}
.sectionTitle.centered {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
}
.sectionTitle label {
    font-size: 1.3333rem;
    color: var(--text-dark);
}
.sectionTitle span {
    font-size: 0.8667rem;
    color: var(--orange);
}
.growingLine {
    position: relative;
}
.growingLine:after {
    content: "";
    position: absolute;
    background: var(--orange);
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: all 0.4s;
}
.growingLine.centered:after {
    left: 50%;
    transform: translateX(-50%);
}
.growingLine:hover:after {
    width: 130px;
}
#homeAdvsTabLinks .tabLinks {
    margin-left: auto;
    width: 100%;
    max-width: 1200px;
}
#homeAdvsTabLinks .tabLinks ul {
    background: var(--white);
    border-radius: 5px;
}
#homeAdvsTabLinks .tabLinks ul li {
    width: 100%;
    max-width: 200px;
}
#homeAdvsTabLinks .tabLinks ul li a {
    position: relative;
    display: block;
    height: 48px;
    color: var(--grey1);
    font-size: 0.8667rem;
    font-weight: 500;
    text-align: center;
    line-height: 48px;
    transition: all 0.4s;
}
#homeAdvsTabLinks .tabLinks ul li a div {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
}
#homeAdvsTabLinks .tabLinks ul li a div.mobile {
    display: none;
}
#homeAdvsTabLinks .tabLinks ul li a.active {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}
#homeAdvsTabLinks .tabLinks ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 2px;
    height: 24px;
    background: var(--grey3);
    display: none;
}
#homeAdvsTabLinks .tabLinks ul li + li a:before {
    display: block;
}
#homeAdvsTabLinks .tabLinks ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 2px;
    background: var(--orange);
    opacity: 0;
    transition: all 0.4s;
}
#homeAdvsTabLinks .tabLinks ul li a.active:after {
    opacity: 1;
}
#homeAdvsTabContents {
    margin-left: -20px;
    margin-right: -20px;
}
#homeAdvsTabContents .homeAdvsTab {
    display: none;
}
#homeAdvsTabContents .homeAdvsTab.active {
    display: block;
}
#homeAdvsTabContents .homeAdvsTab .tabBox {
    margin:0 20px 25px;
    max-width: 220px;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a {
    display: block;
    width: 100%;
    height: 360px;
    position: relative;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .discount {
    position: absolute;
    font-size: 0.6667rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1rem;
    text-align: center;
    background: var(--pink);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: -15px;
    right: -15px;
    z-index: 5;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .discount span {
    font-size: 1.3333rem;
    font-weight: 800;
    display: block;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .img {
    width: 220px;
    height: 220px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 10px 10px 0 0;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .img > * {
    transition: all 0.4s;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .img img {
    display: block;
    width: 100%;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a:hover .img img {
    transform: scale(1.10);
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .img span {
    position: absolute;
    bottom: 15px;
    left: 10px;
    width: calc(100% - 20px);
    color: var(--white);
    font-size: 0.7333rem;
    font-weight: 600;
    z-index: 4;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .img .icon {
    position: absolute;
    background-color: var(--white);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 3;
    opacity: 0;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a:hover .img .icon {
    opacity: 1;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .img:before,
#homeAdvsTabContents .homeAdvsTab .tabBox a .img:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .img:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .img:after {
    background: var(--black);
    opacity: 0;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a:hover .img:after {
    opacity: 0.5;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .txt {
    height: 140px;
    background: var(--white);
    padding: 10px 0 15px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 0 0 10px 10px;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .txt .desc {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--black);
    height: 40px;
    overflow: hidden;
    margin-bottom: 5px;
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .txt .old-price {
    height: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration-line: line-through;
    color: var(--grey1);
}
#homeAdvsTabContents .homeAdvsTab .tabBox a .txt .price {
    display: block;
    margin: auto 15px 0;
    height: 40px;
    line-height: 40px;
    background: var(--green2);
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.4s;
}
.showAllBtn {
    background: var(--white);
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--grey1);
    width: 100px;
    height: 28px;
    margin-left: 30px;
}
/* blogList — home.css'te yeniden tanımlandı */
/* whyUsList — home.css'te yeniden tanımlandı */
#platformsArea .platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.333rem;
    padding-top: 1.0667rem;
}
#footer {
    background: var(--white);
    padding:1.3333rem 0 2rem;
    border-bottom: 5px var(--orange) solid;
}
.footerContent > div {
    width: 20%;
}
.footerAbout { }
.footerAbout img {
    height: 60px;
    margin-bottom: 10px;
}
.footerAbout .txt {
    font-weight: 400;
    color: var(--grey1);
    font-size: 1rem;
    line-height: 1.2rem;
    max-width: 250px;
}
.footerAbout .txt .allRightsText {
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}
.footerMenu .menuTitle {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--text-dark);
    padding:16px 0;
}
.footerMenu ul li {
    height: 40px;
    padding: 12px 0;
}
.footerMenu ul li a {
    line-height: 1.0667rem;
    font-size: 13px;
    color: var(--grey1);
    font-weight: 500;
}
.footerContact {}
.footerContact .title {
    color: var(--grey1);
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 1rem;
    display: flex;
    align-items: center;
    height: 50px;
}
.footerContact .form {
    background: var(--body-bgcolor);
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
}
.footerContact .form form {
    width: 100%;
    display: flex;
    height: 40px;
    align-items: center;
}
.footerContact .form form input {
    flex-grow: 1;
    background: transparent;
    border:0;
    outline: 0;
    padding:0 20px;
    color: var(--grey1);
    font-weight: 400;
    font-size: 0.8667rem;
}
.footerContact .form form button {
    background: var(--grey1);
    border-radius: 5px;
    width: 80px;
    height: 28px;
    flex-shrink: 0;
    font-weight: 500;
    font-size: 0.7333rem;
    text-align: center;
    color: var(--body-bgcolor);
    border: 0;
    margin-right: 6px;
}
.footerContact .contact {
    background: var(--body-bgcolor);
    border-radius: 5px;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    height: 40px;
    align-items: center;
    color: var(--grey1);
    font-weight: 700;
    font-size: 1rem;
    padding:0 20px;
}
.footerContact .contact i {
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    margin-right: 16px;
}
.footerContact .contact a {
    color: var(--grey1);
}
.footerContact .contact.email {
    margin-bottom: 8px;
}
.footerContact .social a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 4px;
    font-size: 32px;
    text-align: center;
}
#mobileBottoMenu {
    border-top: 1px solid #D9D9D9;
    z-index: 10;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    padding:0 15px;
    display: none;
}
#mobileBottoMenu > .d-fx {
    height: 100%;
}
#mobileBottoMenu .col {
    display: flex;
    justify-content: center;
    height: 100%;
}
#mobileBottoMenu a {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 0.9333rem;
}
#mobileBottoMenu a > div {
    margin-bottom: 5px;
    position: relative;
}
#mobileBottoMenu a > div i {
    font-size: 1.4rem;
    line-height: 1.4rem;
}
#mobileBottoMenu a > div em {
    position: absolute;
    border-radius: 50%;
    background: var(--pink);
    border: 2px solid var(--white);
    font-size: 0.6667rem;
    line-height: 0.8rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--white);
    width: 20px;
    height: 20px;
    top:-3px;
    right: -13px;
}
#mobileMenu, #mobileUserMenu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 414px;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 11;
    padding: 20px 15px 0;
    overflow-x: auto;
}
#mobileUserMenu {
    left: auto;
}
#mobileMenu > div,
#mobileUserMenu > div {
    position: relative;
    min-height: calc( 100% - 20px );
    padding-top: 80px;
}
.mobileClose {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--pink);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}
.mobileLogo {
    margin-bottom: 50px;
}
.mobileLogo img {
    height: 60px;
    display: block;
    margin:0 auto;
}
.mobileMenuTitle {
    padding: 0 10px 20px;
    border-bottom: 2px solid var(--grey3);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.mobileMenuTitle > span {
    display: block;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.2rem;
}
.mobileMenuTitle .languageArea {
    margin-left: auto;
}
.mobileMenuTitle .lightOrDark {
    margin-left: 20px;

}
.mobileMenuList {
    padding: 0 5px;
}
.mobileMenuList > ul > li > a {
    display: flex;
    align-items: center;
    height: 40px;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    padding-right: 10px;
}
.mobileMenuList > ul > li > a i {
    margin-left: auto;
    transition: all 0.4s;
}
.mobileMenuList > ul > li.active > a i {
    transform: rotate(90deg);
}
.mobileMenuList > ul > li.hasSubMenu {}
.mobileMenuList > ul > li ul {
    display: none;
}
.mobileMenuList > ul > li ul li {
    padding-left: 10px;
}
.mobileMenuList > ul > li ul li a {
    position: relative;
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: var(--grey1);
    padding-left: 25px;
}
.mobileMenuList > ul > li ul li a:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    left: 0;
    top: 7px;
    background-color: var(--grey1);
    border-radius: 50%;
}
#mobileUserMenu .userButtons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
#mobileUserMenu .userButtons a {
    margin-left: 0;
    color: var(--white);
    font-weight: 500;
    font-size: 0.8667rem;
    width: 46.5%;
}
#mobileUserMenu .userButtons a.loginBtn {
    background: var(--green);
}
#mobileUserMenu .userButtons a.registerBtn {
    background: var(--blue);
}
.mobileUserMenuList {
    padding:0 5px;
}
.mobileUserMenuList a {
    display: flex;
    height: 40px;
    margin-bottom: 10px;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 20px;
    color: var(--text-dark)
}
.mobileUserMenuList a i {
    width: 24px;
    margin-right: 11px;
}
.mobileUserMenuList a span {}
#mobileSearchArea {
    display: none;
    margin-bottom: 10px;
}
.mobileSearchForm {
    width: 100%;
    height: 50px;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    display: flex;
}
.mobileSearchForm input {
    border: 0;
    padding:0 30px;
    flex-grow: 1;
    font-size: 1rem;
    color: var(--grey4);
    background: transparent;
    outline: 0;
}
.mobileSearchForm button {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--grey1);
    border-radius: 5px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    border:0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px;
}
#breadcrumbArea {
    background: var(--grey5);
}
.breadCrumb {
    line-height: 20px;
    padding:20px 0;
}
.breadCrumb .pageTitle {
    color: var(--grey6);
    font-weight: 700;
    font-size: 1.3333rem;
    line-height: 1.3333rem;
}
.breadCrumb .pageMap {
    font-weight: 500;
    font-size: 1rem;
    color: var(--grey1);
}
#advsArea {
    padding: 24px 0;
}
#advsArea .searchBox {
    width: 270px;
    height: 40px;
    background: var(--white);
    border-radius: 5px;
    display: flex;
    margin-bottom: 20px;
}
#advsArea .searchBox input {
    flex-grow: 1;
    background: transparent;
    padding:0 20px;
    font-weight: 500;
    font-size: 0.8667rem;
    color: var(--grey1);
    border: 0;
    outline: none;
}
#advsArea .searchBox button {
    flex-shrink: 0;
    width: 24px;
    line-height: 1.6rem;
    font-size: 1.6rem;
    background: transparent;
    border: 0;
    margin-right: 16px;
}
#advsArea .searchBox button i {
    line-height: 1.6rem;
}
#advsArea .tabLinks {
    margin-left: auto;
    margin-bottom: 20px;
}
#advsArea .tabLinks ul {
    background: var(--white);
    border-radius: 5px;
}
#advsArea .tabLinks ul li {
    
}
#advsArea .tabLinks ul li a {
    display: flex;
    width:200px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 40px;
    color: #333333;
    position: relative;
}
#advsArea .tabLinks ul li + li a:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 8px;
    width: 2px;
    height: 24px;
    background: var(--grey3);
}
#advsArea .tabLinks ul li a .desktop {}
#advsArea .tabLinks ul li a .mobile {
    display: none;
}
#advsArea .advsServerButtons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
#advsArea .advsServerButtons a {
    display: flex;
    width: 90px;
    height: 32px;
    line-height: 32px;
    background: var(--white);
    border-radius: 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 0.7333rem;
    color: var(--grey1);
}
#advsArea .advsServerButtons a.active {
    background: var(--orange);
    color: var(--white);
}
.advsFilters {
    flex-shrink: 0;
    width: 270px;
}
.advsFilters > div {
    background: var(--white);
    border-radius: 5px;
    padding: 20px 23px 30px 25px;
}
.advsFilters .filterTitleRow {
    margin-bottom: 20px;
}
.advsFilters .filterTitleRow .title {
    color: var(--grey1);
    font-size: 0.7333rem;
    line-height: 0.8667rem;
}
.advsFilters .filterTitleRow .title span {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: var(--black);
}
.filterResetBtn {
    width: 100px;
    height: 26px;
    flex-shrink: 0;
    background: var(--grey1);
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.7333rem;
    line-height: 26px;
    color: var(--white);
    text-align: center;
}
.advsFilters .filterTitleRow .filterResetBtn {
    margin-left: auto;
}
.advsFilters .filterGroup {}
.advsFilters .filterGroup + .filterGroup {
    margin-top: 15px;
}
.advsFilters .filterGroup .title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    justify-content: space-between;
    color: var(--text-dark);
    height: 30px;
    margin-bottom: 10px;
}
.advsFilters .filterGroup .filterResetLink {
    font-weight: 500;
    font-size: 0.7333rem;
    color: var(--grey1);
}
.advsFilters .filters {}
.advsFilters .filters .customScroll {
    height: 160px;
    overflow: hidden;
}
.customScroll .mCSB_scrollTools {
    width: 8px;
}
.customScroll .mCSB_scrollTools .mCSB_draggerContainer { 
    width: 6px;
    left: 1px;
    background: #DEDEDE;
    border-radius: 3px;
}
.customScroll .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #A2A2A2;
    width: 8px;
    left: -1px;
}
.checkboxDiv {}
.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.8667rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 16px;
    color: var(--text-dark);
}
.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkboxContainer .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--grey4);
}
.checkboxContainer input:checked ~ .checkmark {
    background: var(--orange);
    border: 1px solid var(--orange);
}
.checkboxContainer .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}
.checkboxContainer .checkmark:after {
    left: 5px;
    top: 2.5px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.advsFilters .filters .priceFilter {}
.advsFilters .filters .priceFilter input {
    width: 80px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    color: var(--grey4);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0 15px;
    outline: 0;
}
.advsFilters .filters .priceFilter input + input {
    margin-left: 15px;
}
.advsFilters .filters.oneCB .checkboxContainer {
    color: var(--grey1);
}
.advsFilters .filterSearchBtn {
    margin-top: 14px;
}
.advsFilters .filterSearchBtn a {
    display: block;
    height: 40px;
    line-height: 40px;
    background: var(--orange);
    border-radius: 5px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}
.advsSearchResults {

}
.advsList {
    width: 100%;
}
.advsBox {
    width: 230px;
    height: 320px;
    background: var(--white);
    border-radius: 5px;
    margin: 0 0 20px 20px;
    padding: 10px;
}
.advsBox a {
    display: block;
}
.advsBox .img {
    position: relative;
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 5px;
}
.advsBox .img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}
.advsBox a .img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--black);
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease;
}
.advsBox a:hover .img:after {
    opacity: 0.5;
}
.advsBox .img img {
    width: 100%;
    display: block;
}
.advsBox .img span {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 0;
    height: 30px;
    font-weight: 600;
    font-size: 0.7333rem;
    line-height: 0.8667rem;
    display: flex;
    align-items: center;
    color: var(--white);
    z-index: 1;
}
.advsBox .img span.magnify {
    background: var(--white);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    bottom: auto;
    transform:translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 24px;
    opacity: 0;
    transition: all 0.4s ease;
}
.advsBox .img span.magnify i {
    text-align: center;
}
.advsBox a:hover .img span.magnify {
    opacity: 1;
}
.advsBox .txt {}
.advsBox .txt .title {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--black);
    height: 60px;
    margin-bottom: 5px;
}
.advsBox .txt .bottom {
    display: flex;
    align-items: center;
    flex: 1 0 0;
    justify-content: space-between;
    text-align: center;
}
.advsBox .txt .bottom .discount {
    width: 65px;
    height: 50px;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--grey1);
    background: var(--grey5);
    border-radius: 5px;
}
.advsBox .txt .bottom .discount span {
    font-size: 0.7333rem;
    line-height: 0.8667rem;
}
.advsBox .txt .bottom .price {
    width: 130px;
    height: 50px;
    background: var(--green2);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--grey5);
}
.advsBox .txt .bottom .price span {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 0.9333rem;
}
.advsBox .txt .bottom .price span.old {
    text-decoration-line: line-through;
}
.advsBox .txt .bottom .price span.new {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: var(--white);
}
.advsPageNumbers {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.advsPageNumbers .empty {
    width: 67px;
    height: 30px;
}
.advsPageNumbers .pageNumbers {
    display: flex;
}
.advsPageNumbers .pageNumbers span,
.advsPageNumbers .pageNumbers a {
    font-weight: 500;
    font-size: 1rem;
    line-height: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey1);
}
.advsPageNumbers .pageNumbers a.prev {}
.advsPageNumbers .pageNumbers a.prev i {
    transform: rotate(180deg);
}
.advsPageNumbers .pageNumbers a.next {}
.advsPageNumbers .pageNumbers a i:before {
    color: var(--grey1);
    font-size: 12px;
}
.advsPageNumbers .pageNumbers a.active {
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
}
.advsPageNumbers .pageSize {}
.advsPageNumbers .pageSize select {
    width: 67px;
    height: 30px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 30px;
    color: var(--grey1);
    background-color: transparent;
    border: 1px solid var(--grey1);
    border-radius: 5px;
}
.advsPageNumbers .pageSize select option {}

#faqArea .container > .d-fx.fx-jcc {
    margin-left: 290px;
}
.faqList {
    margin-left: 290px;
    margin-bottom: 60px;
}
.faqList .faqBox {
    margin-top: 30px;
    background: var(--white);
    border-radius: 5px;
}
.faqList .faqBox .question {
    display: flex;
    align-items: center;
    height: 70px;
    cursor: pointer;
}
.faqList .faqBox .question span {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: var(--text-dark);
    margin-left: 50px;
}
.faqList .faqBox .question i {
    margin-left: auto;
    margin-right: 40px;
    transition: all 0.4s ease;
}
.faqList .faqBox.opened .question i {
    transform: rotate(180deg);
}
.faqList .faqBox .answer {
    padding:0 150px 20px 50px;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: var(--grey1);
    display: none;
}
.bannerArea {
    margin-bottom: 60px;
}
.bannerArea .bannerImg {
    text-align: center;
}
.bannerArea .bannerImg img {
    display: block;
    margin:0 auto;
    width: 100%;
    max-width: 1200px;
}
.alphabetList {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.alphabetList a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.8667rem;
    color: var(--grey1);
    transition: all 0.4s ease;
}
.alphabetList a.allBtn {
    width: 140px;
    flex-shrink: 0;
}
.alphabetList a.active {
    background: var(--orange);
    border: 1px solid var(--grey3);
    color: var(--white);
}
.gameList {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.gameBox {
    display: block;
    padding: 10px 10px 0;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 30px;
}
.gameBox .img {
    width: 260px;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.gameBox .img img {
    display: block;
    max-width: 260px;
    max-height: 260px;
    transition: all 0.4s ease;
}
.gameBox:hover .img img {
    transform: scale(1.05);
}
.gameBox .txt {
    height: 50px;
    overflow: hidden;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
}
#gameSalesArea {
    padding-top: 20px;
    margin-bottom: 100px;
}
.gameSalesSidebar {
    flex-shrink: 0;
    width: 300px;
    padding:10px 20px 30px;
    background: var(--white);
    border-radius: 5px;
    margin-right: 50px;
}
.gameSalesSidebar .sidebarTitle {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: var(--black);
    margin-bottom: 10px;
    padding: 0 10px;
}
.gameSalesSidebar .sidebarImg {
    margin-bottom: 20px;
}
.gameSalesSidebar .sidebarImg img {
    display: block;
    max-width: 100%;
}
.gameSalesSidebar .whatIsBtn {
    display: flex;
    align-items: center;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--grey1);
    border-radius: 5px;
    margin: 0 10px 20px;
    padding: 0 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 1rem;
    transition: all 0.4s ease;
}
.gameSalesSidebar .whatIsBtn:hover {
    background: var(--text-dark);
    border: 1px solid var(--text-dark);
    color: var(--white);
}
.gameSalesSidebar .sidebarText {
    font-size: 1rem;
    line-height: 1.172rem;
    color: var(--grey1);
    padding: 0 10px;
}
.gameSalesSidebar .sidebarText strong {
    font-weight: 600;
    color: var(--text-dark);
}
.gameSalesList {}
.gameSalesBox {
    background: var(--white);
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    padding: 20px;
}
.gameSalesBox + .gameSalesBox {
    margin-top: 30px;
}
.gameSalesBox .badgeDiscount {
    position: absolute;
    background: var(--orange);
    transform: rotate(-45deg);
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--white);
    width: 138.59px;
    height: 24.75px;
    line-height: 24.75px;
    text-align: center;
    left: -30px;
    top: 26px;
}
.gameSalesBox .img {
    width: 100px;
    height: 100px;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 5px;
}
.gameSalesBox .img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.gameSalesBox .txt {
    max-width: 460px;
    margin-right: 30px;
}
.gameSalesBox .txt .title {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: var(--text-dark);
}
.gameSalesBox .txt .desc {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--grey1);
}
.gameSalesBox .txt .desc span {
    color: var(--orange);
}
.gameSalesBox .price {
    width: 140px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 40px;
}
.gameSalesBox .price .old {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    text-decoration: line-through;
    color: var(--grey1);
}
.gameSalesBox .price .new {
    font-weight: 700;
    font-size: 1.8667rem;
    line-height: 2.2rem;
    color: var(--text-dark);
}
.gameSalesBox .price .new span {
    font-weight: 500;
    font-size: 1.2rem;
}
.gameSalesBox .count {
    width: 120px;
    margin-right: 60px;
}
.gameSalesBox .count .countInput {
    border: 1px solid var(--grey3);
    border-radius: 5px;
    display: flex;
    width: 120px;
    height: 40px;
    overflow: hidden;
}
.gameSalesBox .count .countInput input {
    width: 100px;
    border: 0;
    height: 40px;
    background-color: transparent;
    outline: 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
.gameSalesBox .count .countInput .buttons {
    width: 20px;
    display: flex;
    flex-direction: column;
    background: var(--body-bgcolor);
}
.gameSalesBox .count .countInput .buttons a {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 6px;
}
.gameSalesBox .count .countInput .buttons i {
    line-height: 20px;
}
.gameSalesBox .saleButtons {
    width: 190px;
}
.gameSalesBox .saleButtons > div {}
.gameSalesBox .saleButtons > div a {
    height: 50px;
    border-radius: 5px;
    line-height: 50px;
    text-align: center;
    display: block;
    transition: all 0.4s ease;
}
.gameSalesBox .saleButtons .buyNowBtn {
    width: 120px;
    background: var(--green2);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}
.gameSalesBox .saleButtons .buyNowBtn:hover {
    background: #56C656;
}
.gameSalesBox .saleButtons .addToCartBtn {
    width: 50px;
    border: 1px solid var(--grey1);
    font-size: 1.6rem;
}
.gameSalesBox .saleButtons .addToCartBtn i {
    line-height: 50px;
}
.gameSalesBox .saleButtons .addToCartBtn i::before {
    transition: all 0.4s ease;
}
.gameSalesBox .saleButtons .addToCartBtn:hover {
    background: var(--orange);
    border: 1px solid var(--orange);
}
.gameSalesBox .saleButtons .addToCartBtn:hover i::before {
    color: var(--white);
}
.gameSalesBox .saleButtons .saleToUsBtn {
    margin-top: 10px;
    width: 190px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    text-align: center;
    display: block;
    background: var(--red);
    font-weight: 600;
    font-size: 0.8667rem;
    color: var(--white);
    transition: all 0.4s ease;
}
.gameSalesBox .saleButtons .saleToUsBtn:hover {
    background: #F05345;
}
#loginArea {
    padding: 70px 0;
}
.loginBox {
    margin: 0 auto;
    width: 100%;
    max-width: 720px;
    background: var(--white);
    border-radius: 10px;
    padding: 30px 130px 60px;
}
.loginBoxTitle {
    position: relative;
    height: 50px;
    margin-bottom: 30px;
}
.loginBoxTitle::before,
.loginBoxTitle::after {
    content: "";
    position: absolute;
    background: var(--grey3);
    height: 4px;
    width: 100px;
    top: 23px;
    left: 30px;
    border-radius: 2px;
}
.loginBoxTitle::after {
    left: auto;
    right: 30px;
}
.loginBoxTitle span {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 3.3333rem;
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-dark);
    background: var(--white);
    position: relative;
    z-index: 2;
}
.loginBoxText {
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--grey1);
    min-height: 80px;
    max-width: 360px;
    margin: 0 auto;
}
.loginBoxText strong {
    font-weight: 500;
    font-size: 1.3333rem;
    line-height: 1.5333rem;
    color: var(--text-dark);
}
.loginSocial {
    margin-bottom: 20px;
}
.loginSocial a {
    display: flex;
    height: 50px;
    align-items: center;
    width: calc((100% - 20px)/2);
    border-radius: 5px;
    color: var(--white);
    background: var(--grey1);
}
.loginSocial a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    display: block;
    border-radius: 5px 0 0 5px;
    flex-shrink: 0;
}
.loginSocial a span {
    flex-grow: 1;
    text-align: center;
}
.loginSocial a.google {}
.loginSocial a.google i {
    background: #7F8797;
}
.loginSocial a.twitch {
    background: #7D5BBD;
}
.loginSocial a.twitch i {
    background: #7052AA;
}
.loginBox .inputDiv {
    margin-bottom: 10px;
}
.loginBox .inputDiv.half {
    width: calc((100% - 20px) / 2);
    float: left;
}
.loginBox .inputDiv.half + .inputDiv {
    clear: both;
}
.loginBox .inputDiv.half + .half {
    clear: none;
    float: right;
}
.loginBox .inputDiv label {
    font-weight: 400;
    font-size: 0.8667rem;
    line-height: 2.6667rem;
    color: var(--text-dark);
}
.loginBox .inputDiv input[type=text] {
    height: 50px;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    display: block;
    width: 100%;
    padding:0 20px;
    color: var(--grey1);
    font-weight: 500;
    font-size: 1rem;
}
.loginBox .inputDiv label.checkboxContainer {
    padding-top: 10px;
    margin-bottom: 0;
    color: var(--grey1);
    font-size: 0.8667rem;
    line-height: 1.2rem;
    padding-left: 28px;
}
.loginBox .checkboxContainer .checkmark {
    top: 10px;
    height: 18px;
    width: 18px;
    border: 1px solid var(--grey3);
    border-radius: 5px;
}
.loginBox .checkboxContainer input:checked ~ .checkmark {
    background: transparent;
    border-color: var(--grey3);
}
.loginBox .checkboxContainer .checkmark:after {
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border: 0;
    background: var(--green2);
    border-radius: 3px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.loginBox .formBtn {
    clear: both;
}
.loginBox .formBtn button {
    display: block;
    width: 100%;
    height: 50px;
    background: var(--green2);
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    color: var(--white);
    border: 0;
    outline: 0;
}
.loginBox .formBtn.red {
    padding-top: 20px;
}
.loginBox .formBtn.red button {
    background: var(--pink);
}
.loginBox .formEndText {
    min-height: 80px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    line-height: 0.9333rem;
    color: var(--grey2);
}
.loginBox .formEndText strong {
    font-weight: 600;
}
.loginBox .formEndText a {
    color: var(--blue);
}
.loginBox .formEndLink {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey1);
    position: relative;
    height: 50px;
}
.loginBox .formEndLink a {
    color: var(--blue);
    margin-left: 3px;
}
.loginBox .formEndLink::before {
    content: "";
    position: absolute;
    background: var(--grey3);
    height:2px;
    left: 50%;
    top: 0;
    width: 120px;
    margin-left: -60px;
}
#popupBG {
    display: block;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    background: var(--text-dark);
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}
#popupBG.opened {
    opacity: 0.75;
    pointer-events: all;
    width: 100%;
    height: 100%;
}
.popupDiv {
    display: flex;
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    align-items: center;
}
.popupContent {
    background: var(--white);
    border-radius: 10px;
    padding: 80px 60px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.popupContent .popupCloseBtn {
    position: absolute;
    right: -20px;
    top: -20px;
    background: var(--pink);
    width: 40px;
    height: 40px;
    font-size: 12px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}
#loginForgetPopup .forgetBtn {
    display: flex;
    height: 50px;
    width: calc((100% - 40px) / 2);
    align-items: center;
    position: relative;
    border-radius: 5px;
    padding-left: 50px;
    font-size: 0.8667rem;
    color: var(--text-dark);
}
#loginForgetPopup .forgetBtn.active {
    background: var(--body-bgcolor);
}
#loginForgetPopup .forgetBtn::before,
#loginForgetPopup .forgetBtn::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}
#loginForgetPopup .forgetBtn::before {
    border: 1px;
    width: 16px;
    height: 16px;
    background: var(--white);
    left: 17px;
    top: 17px;
    border: 1px solid var(--grey3);
}
#loginForgetPopup .forgetBtn::after {
    width: 10px;
    height: 10px;
    background: var(--white);
    left: 20px;
    top: 20px;
    z-index: 2;
}
#loginForgetPopup .forgetBtn.active::after {
    background: var(--blue);
}
#loginForgetPopup .tabButtons {
    margin-bottom: 30px;
}
#loginForgetPopup .inputDiv {
    margin-bottom: 20px;
    height: 50px;
}
#loginForgetPopup .inputDiv input {
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    height: 50px;
    display: block;
    width: 100%;
    padding: 0 20px;
    font-size: 0.8667rem;
    color: var(--grey2);
    outline: 0;
}
#loginForgetPopup .activateCode {
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    height: 50px;
    display: block;
    width: 180px;
    padding: 0 20px;
    font-size: 0.8667rem;
    color: var(--grey1);
    outline: 0;
    text-align: center;
}
#loginForgetPopup .countDown {
    font-weight: 500;
    font-size: 0.8667rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--grey2);
}
#loginForgetPopup .countDown span {}
#loginForgetPopup .sendButton {
    width: 120px;
    height: 50px;
    background: var(--green2);
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8667rem;
    text-align: center;    
    color: var(--white);
    outline: 0;
    border:0;
}
#aboutArea {
    padding-top: 105px;
}
.aboutContent {
    background: var(--white);
    border-radius: 5px;
    padding-bottom: 40px;
    margin-bottom: 130px;
}
.aboutTabsLinks {
    width: 83%;
    margin: 0 auto -25px;
    position: relative;
    top: -45px;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    display: flex;
    height: 80px;
}
.aboutTabsLinks a {
    display: flex;
    height: 80px;
    width: calc(100% / 6);
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.8667rem;
    color: var(--grey1);
    transition: all 0.4s ease;
    position: relative;
}
.aboutTabsLinks a.active {
    font-size: 1rem;
    color: var(--text-dark);
    width: calc((100% / 6) * 2);
}
.aboutTabsLinks a + a:before {
    content: "";
    position: absolute;
    height: 50px;
    width: 1px;
    background-color: var(--grey3);
    top: 15px;
    left: 0;
}
.aboutTabsContents {}
.aboutTabsContents .aboutTab {
    margin-left: 40px;
    margin-right: 80px;
    display: none;
}
.aboutTabsContents .aboutTab.active {
    display: block;
}
.aboutTabsContents .aboutTab#tab-iletisim {
    margin-right: 40px;
}
.aboutTabsContents .aboutTitle {
    height: 60px;
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}
.aboutTabsContents .aboutText {
    font-size: 1rem;
    line-height: 1.3333rem;
    color: var(--grey1);
    min-height: 300px;
    margin-bottom: 45px;
}
.aboutTabsContents .aboutGallery {
    display: flex;
    gap: 40px;
}
.aboutTabsContents .aboutGallery .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #d9d9d9;
}
.aboutTabsContents .aboutGallery .img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.aboutContact {
    display: flex;
}
.aboutContactInfo {
    width: 55%;
    padding-right: 40px;
}
.aboutContactInfo .aboutSubTitle {
    font-size: 1rem;
    line-height: 1.3333rem;
    margin-bottom: 33px;
    color: var(--grey1);
}
.aboutContactInfo .infoBoxes {
    display: flex;
    flex-wrap: wrap;
}
.aboutContactInfo .infoBox {
    width: 50%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.aboutContactInfo .infoBox .icon {
    width: 60px;
    height: 60px;
    background: var(--body-bgcolor);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.aboutContactInfo .infoBox:hover .icon {
    background: var(--orange);
}
.aboutContactInfo .infoBox .icon i {
    font-size: 28px;
}
.aboutContactInfo .infoBox .icon i::before {
    transition: all 0.4s ease;
}
.aboutContactInfo .infoBox:hover .icon i::before {
    color: var(--white);
}
.aboutContactInfo .infoBox .text {
    font-size: 0.8667rem;
    line-height: 1.3333rem;
    color: var(--text-dark);
}
.aboutContactInfo .infoBox .text label {
    font-weight: 600;
    display: block;
}
.aboutContactInfo .infoBox .text a {
    color: var(--text-dark);
}
.aboutContactInfo .aboutMap {
    border-radius: 5px;
    max-height: 312px;
    overflow: hidden;
}
.aboutContactForm {
    width: 45%;
    padding-left: 40px;
    position: relative;
}
.aboutContactForm::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35px;
    width: 1px;
    bottom: 50px;
    background: var(--grey3);
}
.aboutContactForm .formRow {}
.paymentCardInfo .formRow label,
.aboutContactForm .formRow label {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    color: var(--black);
    line-height: 40px;
}
.paymentCardInfo .formRow input[type=text],
.aboutContactForm .formRow input[type=text],
.aboutContactForm .formRow textarea {
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    outline: 0;
    display: block;
    width: calc(100% - 40px);
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--grey4);
    font-size: 12px;
}
.aboutContactForm .formRow textarea {
    height: 145px;
    resize: none;
    line-height: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.aboutContactForm .formRow input[type=text],
.aboutContactForm .formRow textarea {
    width: 100%;
}
.paymentCardInfo .formRow  input[type=text]:focus,
.aboutContactForm .formRow input[type=text]:focus,
.aboutContactForm .formRow textarea:focus {
    color: var(--text-dark);
}
.paymentCardInfo .formButtonRow,
.aboutContactForm .formButtonRow {
    text-align: right;
}
.paymentCardInfo .formButtonRow button,
.aboutContactForm .formButtonRow button {
    width: 150px;
    height: 50px;
    line-height: 50px;
    outline: 0;
    border: 0;
    background: var(--green2);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    color: var(--white);
}
.paymentCardInfo .formButtonRow button:hover,
.aboutContactForm .formButtonRow button:hover {
    background: var(--green);
    transition: all 0.4s ease;
}
.filterResetBtnBig {
    width: 100%;
    height: 40px;
    background: var(--red);
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8667rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.filterResetBtnBig:hover {
    background: #F05345;
}
.donateTopRow {
    margin-left: 20px;
}
#advsArea .donateTopRow .searchBox {
    width: 730px;
}
.donateTopRow .donateApplyBtn {
    width: 230px;
    height: 40px;
    background: var(--orange);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-left: auto;
}
.donateSearchResults .advsBox {
    padding:0;
    height: 290px;
}
.donateSearchResults .advsBox .img {
    height: 230px;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0;
}
.donateSearchResults .advsBox .img::before,
.donateSearchResults .advsBox .img::after {
    display: none !important;
}
.donateSearchResults .advsBox .img .online {
    position: absolute;
    top: 14px;
    left: 10px;
    width: 85px;
    height: 24px;
    background: rgba(51, 51, 51, 0.5);
    border-radius: 5px;
    display: flex;
    line-height: 24px;
    align-items: center;
    color: var(--white);
    font-weight: 500;
    font-size: 0.8667rem;
    z-index: 2;
}
.donateSearchResults .advsBox .img .online em {
    display: block;
    width: 12px;
    height: 12px;
    background: var(--green2);
    margin-left: 6px;
    margin-right: 6px;
    border-radius: 50%;
}
.donateSearchResults .advsBox .img .fav {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--white) url(../img/icons/heart.svg) no-repeat center center;
    border-radius: 50%;
    left: auto;
    top: 10px;
    right: 10px;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}
.donateSearchResults .advsBox:hover .img .fav {
    opacity: 1;
    pointer-events: all;
}
.donateSearchResults .advsBox .img .fav.active {
    background-image: url(../img/icons/heart-active.svg);
}
.donateSearchResults .advsBox .txt {}
.donateSearchResults .advsBox .title {
    font-size: 1rem;
    line-height: 1.2rem;
    flex-direction: column;
    margin-bottom: 0;
}
.donateSearchResults .advsBox .title span {
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey1);
}
#cartArea {
    padding: 20px 0 60px;
}
.cartAreaTitle {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 80px;
    color: var(--black);
}
.cartDivs {
    display: flex;
    gap: 20px;
}
.cartContents {
    width: 1100px;
}
.cartSellerBox {
    width: 100%;
    background: var(--white);
    border-radius: 5px;
    border: 1px solid var(--grey3);
    margin-bottom: 20px;
}
.cartSellerBox .seller {
    height: 48px;
    font-weight: 500;
    font-size: 0.8667rem;
    display: flex;
    align-items: center;
    color: var(--grey1);
    border-bottom: 1px solid var(--grey3);
    padding: 0 11px 0 20px;
}
.cartSellerBox .seller strong {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-left: 5px;
    margin-right: 10px;
}
.cartSellerBox .seller span {
    background: var(--green);
    border-radius: 5px;
    width: 30px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    display: block;
    font-weight: 700;
    font-size: 0.7333rem;
    color: var(--white);
}
.cartSellerBox .seller .discount {
    width: 200px;
    margin-left: auto;
    line-height: 28px;
    background: var(--body-bgcolor);
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8rem;
    text-align: center;
    color: var(--grey1);
}
.cartSellerBox .productBox {
    display: flex;
    align-items: center;
    padding: 20px 26px 20px 30px;
    flex-wrap: wrap;
    position: relative;
}
.cartSellerBox .productBox .productCheck {
    position: absolute;
    left: 18px;
    top: 48px;
    width: 24px;
    height: 24px;
}
.cartSellerBox .productBox .productCheck .checkboxContainer {
    padding-left: 0;
    margin-bottom: 0;
    width: 24px;
    height: 24px;
}
.cartSellerBox .productBox .productCheck .checkboxContainer .checkmark {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    border-color: var(--grey3);
}
.cartSellerBox .productBox .productCheck .checkboxContainer .checkmark:after {
    left: 7px;
    top: 2px;
    width: 8px;
    height: 14px;
    border-width: 0 3px 3px 0;
}
.cartSellerBox .productBox .productCheck .checkboxContainer input:checked ~ .checkmark {
    border-color: var(--orange);
}
.cartSellerBox .productBox .img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.cartSellerBox .productBox .img img {
    display: block;
    max-width: 80px;
    max-height: 80px;
}
.cartSellerBox .productBox .title {
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey1);
    flex-grow: 1;
    margin-right: 30px;
}
.cartSellerBox .productBox .title label {
    display: block;
    font-weight: 500;
    font-size: 1.3333rem;
    line-height: 1.5333rem;
    color: var(--text-dark);
}
.cartSellerBox .productBox .count {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    width: 140px;
    height: 40px;
    border: 1px solid var(--grey3);
    border-radius: 5px;
    overflow: hidden;
    margin-right: 30px;
}
.cartSellerBox .productBox .count a {
    background: var(--body-bgcolor);
    display: block;
    width: 40px;
    height: 40px;
    color: var(--orange);
    font-size: 26px;
    text-align: center;
    line-height: 40px;
}
.cartSellerBox .productBox .count input {
    width: 60px;
    border: 0;
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--black);
}
.cartSellerBox .productBox .count input + a {}
.cartSellerBox .productBox .count a.disable {
    pointer-events: none;
    color: var(--grey4);

}
.cartSellerBox .productBox .total {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    text-align: center;
    font-weight: 500;
    font-size: 1.3333rem;
    color: var(--text-dark);
    margin-right: 30px;
}
.cartSellerBox .productBox .deleteBtn {
    width: 40px;
}
.cartSellerBox .productBox .deleteBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--grey3);
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.4s ease;
}
.cartSellerBox .productBox .deleteBtn a i {
    line-height: 18px;
    color: var(--text-dark);
    transition: all 0.4s ease;
}
.cartSellerBox .productBox .deleteBtn a:hover {
    border-color: var(--orange);
    background: var(--orange);
}
.cartSellerBox .productBox .deleteBtn a:hover i {
    color: var(--white);
}
.cartSellerBox .productBox .nickSelect {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    background: var(--body-bgcolor);
    border-radius: 10px;
    padding: 9px 20px;
}
.cartSellerBox .productBox .nickSelect label {
    font-weight: 500;
    font-size: 0.8667rem;
    color: var(--grey1);
    margin-right: 10px;
}
.cartSellerBox .productBox .nickSelect .selectBox {
    flex-grow: 1;
}
.cartSellerBox .productBox .nickSelect .selectBox .custom-select__option {
    width: 100%;
    line-height: 2rem;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 0.8667rem;
    font-weight: 500;
}
.cartSellerBox .productBox .nickSelect .selectBox .custom-select__option.addnick {
    color: var(--grey1);
}
.cartSellerBox .productBox + .productBox {
    border-top: 1px solid var(--grey3);
}
.cartTotals {
    width: 400px
}
.cartSummary {
    width: 100%;
    background: var(--white);
    border-radius: 5px;
    border: 1px solid var(--grey3);
    padding: 20px;
    margin-bottom: 20px;
}
.cartSummary > .title {
    font-weight: 500;
    font-size: 1.3333rem;
    line-height: 1.5333rem;
    height: 40px;
    color: var(--text-dark);
}
.cartSummary .totals {
    margin-bottom: 40px;
}
.cartSummary .totals li {
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--grey1);
}
.cartSummary .totals li span {
    margin-left: auto;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}
.cartSummary .totals li.total span,
.cartSummary .totals li .discount {
    color: var(--orange);
}
.cartSummary .totals li.total {
    margin-top: 20px;
    border-top: 2px solid var(--grey3);
    padding-top: 20px;
    height: 60px;
    color: var(--orange);
}
.cartSummary .walletBox {
    height: 40px;
    display: flex;
}
.cartSummary .walletBox > * {
    width: 50%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cartSummary .walletBox .walletCount {
    font-weight: 500;
    font-size: 1rem;
    color: var(--grey1);
    border-radius: 5px 0 0 5px;
    border: 1px solid #F0F0F0;
    border-right: 0;
}
.cartSummary .walletBox .walletCount span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-left: 4px;
}
.cartSummary .walletBox .walletAddBtn {
    background: var(--text-dark);
    font-weight: 600;
    font-size: 0.8667rem;
    color: var(--white);
    border-radius: 0 5px 5px 0;
}
.discountCodeBox {}
.discountCodeBox .defineBtn {
    margin-bottom: 20px;
}
.discountCodeBox .defineBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey1);
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8667rem;
    color: var(--grey1);
    width: 100%;
    height: 40px;
}
.discountCodeBox .codeInput {
    margin-bottom: 20px;
    display: none;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    padding:10px;
    gap: 10px;
}
.discountCodeBox .codeInput.show {
    display: flex;
}
.discountCodeBox .codeInput input {
    background: var(--body-bgcolor);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    outline: 0;
    height: 40px;
    flex-grow: 1;
    font-weight: 500;
    font-size: 0.7333rem;
    color: var(--grey1);
    padding:0 20px;    
}
.discountCodeBox .codeInput button {
    flex-shrink: 0;
    height: 40px;
    width: 120px;
    display: block;
    outline: 0;
    border: 1px solid var(--orange);
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8667rem;
    color: var(--orange);
    background: var(--white);
    transition: all 0.4s ease;
}
.discountCodeBox .codeInput button:hover {
    background: var(--orange);
    color: var(--white);
}
.completeOrderBtn {}
.completeOrderBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: var(--green2);
    color: var(--white);
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
}
#walletArea {
    padding-top: 40px;
    padding-bottom: 40px;
}
.walletDivs {
    width: 960px;
    margin:0 auto;
    background: var(--white);
    border-radius: 5px;
    padding: 0 0 40px 0;
}
.walletPageTitle {
    display: flex;
    align-items: center;
    margin: 0 40px;
    border-bottom: 2px solid var(--grey3);
    padding: 20px 0;
}
.walletPageTitle label {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 40px;
    color: var(--black);
}
.walletPageTitle .links {
    margin-left: auto;
    line-height: 20px;
}
.walletPageTitle a {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.8667rem;
    color: var(--black);
}
.walletPageTitle a i {
    font-size: 20px;
    line-height: 20px;
    margin-right: 6px;
}
.walletPageTitle a + a {
    margin-left: 32px;
}
.balanceBox {
    position: relative;
    width: 200px;
    height: 80px;
    background: var(--orange);
    border: 2px solid var(--grey3);
    border-radius: 10px;
    display:flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px;
}
.balanceBox i {
    font-size: 40px;
}
.balanceBox .balance {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--white);
    margin-left: 20px;
}
.balanceBox .balance label {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4rem;
}
.balanceBox .balance label span {
    font-size: 0.8667rem;
}
.walletPayTitle {
    margin: 0 40px;
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey1);
    margin-bottom: 27px;
}
.walletPayTitle label {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: var(--black);
    margin-bottom: 8px;
}
.paymentToWallet {
    display: flex;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 20px;
}
.paymentToWallet .paymentButtons {
    width: 100%;
    max-width: 460px;
}
.paymentToWallet .paymentButtons .buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.paymentToWallet .paymentButtons .buttons a {
    width: 76px;
    height: 50px;
    border: 1px solid var(--text-dark);
    border-radius: 5px;
    font-size: 0.8667rem;
    line-height: 50px;    
    text-align: center;
    color: var(--black);
    margin-bottom: 20px;
}
.paymentToWallet .paymentButtons input {
    display: block;
    width: 100%;
    height: 50px;
    background: var(--white);
    border: 1px solid var(--text-dark);
    border-radius: 5px;
    font-size: 15px;
    color:var(--grey1);
    text-align: center;
}
.paymentToWallet .paymentAmount {
    width: 280px;
    height: 120px;
    margin-left: auto;    
    background: var(--pink);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
}
.paymentToWallet .paymentAmount label {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 10px;
}
.paymentToWallet .paymentAmount span {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.8667rem;
}
.paymentCardInfo {
    padding: 0 40px;
    display: flex;
}
.paymentCardInfo .cardTitle {
    height: 60px;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.4rem;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}
.paymentCardInfo .cardInfo {
    width: 100%;
    max-width: 460px;
}
.paymentCardInfo .formRow input[type=text] {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
}
.paymentCardInfo .formButtonRow {
    padding-top: 20px;
}
.paymentCardInfo .formButtonRow button {
    width: 100%;
}
.paymentCardInfo .cardDate {}
.paymentCardInfo .cardDate .inputs {
    display: flex;
    gap: 20px;
}
.paymentCardInfo .cardDate .inputs .custom-select {
    width: 120px;
}
.paymentCardInfo .cardCCV {
    margin-left: auto;
    width: 120px;
}
.paymentCardInfo .cardCCV input {
    width: 120px;
}
.paymentInstallments {
    padding-left: 40px;
    width: calc( 100% - 460px );
}
.installmentTable {
    border: 1px solid var(--grey3);
    border-radius: 5px;
    overflow: hidden;
}
.installmentTable .header {
    background: #FCFCFC;
    width: 100%;
    display: flex;
    font-weight: 500;
}
.installmentTable .installment {
    width: 100%;
    display: flex;
    margin-bottom: 6px;
}
.installmentTable .left,
.installmentTable .right {
    padding-left: 20px;
    width: 50%;
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 0.8667rem;
}
.installmentTable .right {
    border-left: 1px solid var(--grey3);
}
.installmentTable .installment .left,
.installmentTable .installment .right {
    line-height: 24px;
    height: 24px;
}
.radioContainer {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8667rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 24px;
    color: var(--text-dark);
}
.radioContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.radioContainer .checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--grey3);
}
.radioContainer input:checked ~ .checkmark {
    border: 1px solid var(--orange);
}
.radioContainer .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 2px;
    top: 2px;
    width: 6px;
    height: 6px;
    border: 0;
    background: var(--orange);
    border-radius: 50%;
}
.radioContainer input:checked ~ .checkmark:after {
    display: block;
}
#helpAreaTopBand {
    background: var(--orange);
    color: #fff;
}
.helpAreaTopBandImg {
    display: flex;
    flex-grow: 1;
    align-items: flex-end;
    justify-content: center;
}
.helpAreaTopBandImg img {}
.helpSearchArea {
    text-align: center;
    width: 900px;
}
.helpSearchArea .helpTitle {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 40px;
}
.helpSearchArea .helpTitle strong {
    font-weight: 700;
}
.helpSearchArea .searchForm {
    width: 100%;
    height: 60px;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    display: flex;
    margin-bottom: 10px;
}
.helpSearchArea .searchForm input {
    border:0;
    font-weight: 500;
    font-size: 1rem;
    color: var(--grey4);
    flex-grow: 1;
    padding: 0 20px;
    outline: none;
}
.helpSearchArea .searchForm button {
    font-size: 20px;
    border: 0;
    background: transparent;
    line-height: 60px;
    padding: 0 20px;
}
.helpSearchArea .searchForm button i:before {
    color: var(--grey1);
}
.helpSearchArea .mostSearch {
    text-align: left;
    margin-bottom: 40px;
}
.helpSearchArea .mostSearch .title {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 40px;
    color: var(--body-bgcolor);
    margin-bottom: 10px;
}
.helpSearchArea .mostSearch .buttons {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.helpSearchArea .mostSearch .buttons a {
    background: var(--orange);
    border: 1px solid #FF9500;
    border-radius: 5px;
    color: var(--body-bgcolor);
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    display: flex;
    height: 40px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.helpSearchArea .mostSearch .buttons a:hover {
    background-color: #FF9500;
    color: var(--white);
}
#helpContentArea {
    padding:40px 0 ;
}
.helpSidebar {
    flex-grow: 0;
    flex-shrink: 0;
    width: 300px;
    margin-right: 20px;
}
.helpSidebar .sidebarContent {
    background: var(--white);
    border-radius: 5px;
    padding-bottom: 20px;
}
.helpSidebar .sidebarTitle {
    border-radius: 5px 5px 0 0;
    height: 60px;
    background: var(--orange);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.helpSidebar .questionList {
    padding:0 20px 0;
}
.helpSidebar .questionList .category .categoryTitle {
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--text-dark);
}
.helpSidebar .questionList .category .categoryTitle i {
    margin-left: 20px;
    font-size: 8px;
    transition: all 0.4s ease;
}
.helpSidebar .questionList .category .categoryTitle i:before {
    color: var(--text-dark);
}
.helpSidebar .questionList .category.active .categoryTitle i {
    transform: rotate(180deg);
}
.helpSidebar .questionList ul {
    margin-bottom: 10px;
    display: none;
}
.helpSidebar .questionList ul li {
    margin-top: 10px;
}
.helpSidebar .questionList ul li a {
    display: block;
    position: relative;
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 18px;
    color: var(--grey6);
    padding-left: 18px;
}
.helpSidebar .questionList ul li a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    width: 9px;
    height: 9px;
    background-color: var(--white);
    border:2px solid var(--body-bgcolor);
    border-radius: 50%;
}
.helpSidebar .questionList ul li a.active {
    color: var(--text-dark);
}
.helpSidebar .questionList ul li a.active::before {
    background-color: var(--orange);
}
.helpContent {
    background: var(--white);
    border-radius: 5px;
    padding: 40px;
    color: var(--text-dark);
}
.helpContent .questionTitle {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 20px;
}
.helpContent .answerText {
    font-size: 0.8667rem;
    line-height: 1rem;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--grey3);
    margin-bottom: 40px;
}
.helpContent .answerText h3 {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 15px;
}
.helpContent .answerText p {
    margin-bottom: 20px;
}
.helpContent .answerText img {
    display: block;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
}
.helpContent .answerVoting {
    display: flex;
    align-items: center;
}
.helpContent .answerVoting label {
    width: 200px;
    margin-right: 10px;
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 1rem;
    display: flex;
    align-items: center;
    color: var(--grey1);
}
.helpContent .answerVoting a {
    background: var(--body-bgcolor);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 50px;
    margin-right: 20px;
    transition: all 0.4s ease;
}
.helpContent .answerVoting a.up:hover {
    background-color: var(--green);
}
.helpContent .answerVoting a.down:hover {
    background-color: var(--red);
}
.helpContent .answerVoting a i::before {
    transition: all 0.4s ease;
}
.helpContent .answerVoting a:hover i::before {
    color: var(--white);
}
#blogHomeBanners {
    border-radius: 5px;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 20px;
}
#blogHomeBanners .bannerCol {
    width: 760px;
    display: flex;
    flex-wrap: wrap;
}
#blogHomeBanners .bannerCol:first-child {
    border-radius: 5px 0 0 5px;
    overflow: hidden;
}
#blogHomeBanners .bannerCol:last-child {
    border-radius: 0 5px 5px 0;
    overflow: hidden;
}
#blogHomeBanners .bannerCol .big {
    width: 760px;
    height: 360px;
}
#blogHomeBanners .bannerCol .small {
    width: 380px;
    height: 200px;
}
#blogHomeBanners .bannerCol .bannerLink {
    position: relative;
    overflow: hidden;
    display: block;
}
#blogHomeBanners .bannerCol .bannerLink img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}
#blogHomeBanners .bannerCol .bannerLink label {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: var(--grey1);
    font-size: 1rem;
    line-height: 1.2rem;
    cursor: pointer;
    z-index: 4;
}
#blogHomeBanners .bannerCol .bannerLink label span {
    display: block;
    color: var(--white);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.8667rem;
}
#blogHomeBanners .bannerCol .small .bannerLink label span {
    font-size: 1.3333rem;
    line-height: 1.5333rem;
}
#blogHomeBanners .bannerCol .bannerLink::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #929396;
    opacity: 0.25;
    z-index: 2;
    transition: all 0.4s ease;
}
#blogHomeBanners .bannerCol .bannerLink::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    left: 0;
    top: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 3;
}
#blogHomeBanners .bannerCol .bannerLink:hover img {
    transform: scale(1.02);
}
#blogHomeBanners .bannerCol .bannerLink:hover::before {
    opacity: 0;
}
#blogHomeContents .contentCol {
    margin-right: 20px;
}
.lastBlogPosts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 17px;
}
.lastBlogPosts .blogPostBox {
    width: calc((100% - 20px) / 2);
}
.blogPostBox {
    background-color: var(--white);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    margin-bottom: 20px;
}
.blogPostBox .img {
    width: 240px;
    height: 180px;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}
.blogPostBox .img img {
    display: block;
    width: 100%;
    transition: all 0.4s ease;
}
.blogPostBox .img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--grey1);
    opacity: 0.25;
    transition: all 0.4s ease;
}
.blogPostBox:hover .img img {
    transform: scale(1.12);
}
.blogPostBox:hover .img:after {
    opacity: 0;
}
.blogPostBox .text {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    flex-direction: column;
}
.blogPostBox .text .title {
    font-size: 1.2rem;
    line-height: 1.4rem;
    height: 42px;
    overflow: hidden;
    margin-bottom: 10px;
}
.blogPostBox .text .category {
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey6);
    margin-bottom: 10px;
}
.blogPostBox .text .desc {
    font-weight: 400;
    font-size: 0.8667rem;
    line-height: 1rem;
    height: 45px;
    overflow: hidden;
    margin-bottom: 15px;
}
.blogPostBox .text .date {
    font-weight: 400;
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey1);
}
.blogPostBox .text .blogDetailsBtn {
    background: var(--red);
    border-radius: 3px;
    width: 120px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    color: var(--white);
    text-align: center;
    transition: all 0.4s ease;
}
.blogPostBox .text .blogDetailsBtn:hover {
    background: #F05345;
}
#blogHomeContents .advsPageNumbers {
    margin-bottom: 50px;
}
.gameNewsCol {
    width: calc((100% - 20px) / 2);
    margin-bottom: 20px;
}
.gameNewsCol + .gameNewsCol {
    margin-left: auto;
}
.gameNewsCol .sectionTitle {
    margin-bottom: 17px;
}
.gameNewsCol .newsList {
    background-color: var(--white);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}
.gameNewsCol .newsBoxBig {
    padding-bottom: 25px;
}
.gameNewsCol .newsBoxBig .img {
    width: 100%;
    position: relative;
    height: 270px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}
.gameNewsCol .newsBoxBig .img img {
    display: block;
    width: 100%;
    transition: all 0.4s ease;
}
.gameNewsCol .newsBoxBig .img::before {
    content: "";
    position: absolute;
    background: var(--grey1);
    opacity: 0.25;
    border-radius: 3px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}
.gameNewsCol .newsBoxBig:hover .img::before {
    opacity: 0;
}
.gameNewsCol .newsBoxBig:hover .img img {
    transform: scale(1.02);
}
.gameNewsCol .newsBoxBig .title {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.gameNewsCol .newsBoxBig .date {
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey1);
    margin-bottom: 5px;
}
.gameNewsCol .newsBoxBig .desc {
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}
.gameNewsCol .newsBoxBig .blogDetailsBtn {
    background: var(--red);
    border-radius: 3px;
    width: 120px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    color: var(--white);
    text-align: center;
    margin-left: auto;
    transition: all 0.4s ease;
}
.gameNewsCol .newsBoxBig .blogDetailsBtn:hover {
    background: #F05345;
}
.gameNewsCol .blogPostBox {
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid var(--grey3);
    margin-bottom: 0;
}
.blogSidebarCol {
    width: 320px;
    flex-shrink: 0;
}
#blogHomeContents .blogSidebarCol {
    padding-top: 52px;
}
.blogSidebar {
    background: var(--white);
    border-radius: 5px;
    padding: 20px 20px 10px;
}
.blogSidebar .sectionTitle {
    margin-bottom: 17px;
}
.blogSidebar .sectionTitle label {
    font-size: 1rem;
    line-height: 1.2rem;
}
.blogSidebar .blogSearch {
    display: flex;
    height: 50px;
    border: 1px solid var(--grey3);
    border-radius: 3px;
    margin-bottom: 20px;
}
.blogSidebar .blogSearch input {
    border:0;
    flex-grow: 1;
    padding: 0 10px;
    outline: 0;
    font-size: 0.8667rem;
    color: var(--grey4);
}
.blogSidebar .blogSearch button {
    border: 0;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    line-height: 50px;
    text-align: center;
    background: var(--grey1);
    margin-top: -1px;
    transition: all 0.4s ease;
    border-radius: 3px;
}
.blogSidebar .blogSearch button:hover {
    background-color: var(--orange);
}
.blogSidebar .categoryList {
    margin-bottom: 20px;
}
.blogSidebar .categoryList a {
    position: relative;
    height: 40px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--grey1);
}
.blogSidebar .categoryList a.active {
    padding-left: 20px;
    color: var(--text-dark);
}
.blogSidebar .categoryList a::before {
    display: none;
    position: absolute;
    left: 0;
    top: 15px;
    content: "\e922";
    color: var(--orange);
    font-size: 10px;
    font-family: 'oyunx' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.blogSidebar .categoryList a.active::before {
    display: block;
}
.blogSidebar .popularPosts {}
.blogSidebar .popularPosts .postBox {
    display: block;
    margin-bottom: 20px;
    display: flex;
    position: relative;
    padding-left: 15px;
}
.blogSidebar .popularPosts .postBox .order {
    position: absolute;
    left: -2px;
    top: 50%;
    margin-top: -17px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: var(--red);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8667rem;
    line-height: 30px;
    text-align: center;
}
.blogSidebar .popularPosts .postBox .img {
    border-radius: 3px;
    width: 80px;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}
.blogSidebar .popularPosts .postBox .img img {
    display: block;
    width: 100%;
}
.blogSidebar .popularPosts .postBox .text {

}
.blogSidebar .popularPosts .postBox .text .title {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    height: 36px;
    overflow: hidden;
}
.blogSidebar .popularPosts .postBox:hover .text .title {
    color: var(--orange);
}
.blogSidebar .popularPosts .postBox .text .date {
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey6);
}
#blogDetailPage {
    padding-top: 40px;
}
#blogDetailPage .leftCol {
    width: 100%;
    margin-right: 20px;
}
.blogDetailContent {
    background: var(--white);
    border-radius: 5px;
    padding:20px;
    color: var(--text-dark);
    margin-bottom: 30px;
}
.blogDetailContent .contentTitle {
    font-weight: 700;
    font-size: 1.8667rem;
    line-height: 2.2rem;
    margin-bottom: 5px;
}
.blogDetailContent .date {
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey1);
    margin-bottom: 10px;
}
.blogDetailContent .subtitle {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-bottom: 30px;
}
.blogDetailContent .coverImg {
    margin-bottom: 20px;
}
.blogDetailContent .coverImg img {
    display: block;
    width: 100%;
}
.blogDetailContent .detailText {
    font-size: 1.0667rem;
    line-height: 1.2667rem;
    padding-bottom: 40px;
}
.blogDetailContent .detailText img {
    display: block;
    margin-bottom: 20px;
}
.blogDetailContent .detailText strong {
    font-weight: 600;
}
.blogDetailComments {
    border-radius: 5px;
    background: var(--white);
    margin-bottom: 40px;
    padding: 20px;
}
.blogDetailComments .boxTitle {
    display: flex;
    align-items: center;
    line-height: 40px;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--grey1);
    border-bottom: 1px solid var(--grey3);
    padding-left: 10px;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.blogDetailComments .boxTitle i {
    margin-right: 20px;
    font-size: 20px;
}
.blogDetailComments .commentForm {
    padding: 0 20px;
}
.blogDetailComments .commentForm form {}
.blogDetailComments .commentForm textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--grey3);
    border-radius: 3px;
    height: 150px;
    padding: 20px;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--grey4);
    resize: none;
    outline: none;
    margin-bottom: 20px;
}
.blogDetailComments .commentForm .formButton {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.blogDetailComments .commentForm .formButton span {
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--grey1);
}
.blogDetailComments .commentForm .formButton button {
    margin-left: auto;
    background: var(--orange);
    border-radius: 3px;
    width: 200px;
    height: 60px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    outline: 0;
    border: 0;
    transition: all 0.4s ease;
}
.blogDetailComments .commentForm .formButton button:hover {
    background: #F99F15;
}
.blogDetailComments .loginForComment {}
.blogDetailComments .loginForComment a {
    width: 100%;
    max-width: 600px;
    height: 60px;
    transition: all 0.4s ease;
    color: var(--white);
    background: var(--orange);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 auto 40px;
    border-radius: 3px;
}
.blogDetailComments .loginForComment a:hover {
    background: #F99F15;
}
.blogDetailComments {}
.blogDetailComments .commentList {}
.blogDetailComments .commentList .mainTitle {
    font-weight: 500;
    height: 40px;
    font-size: 1rem;
    line-height: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--grey1);
    border-bottom: 1px solid var(--grey3);
    margin-bottom: 30px;
    padding-left:10px;
}
.blogDetailComments .commentList .list {
    padding:0 20px
}
.blogDetailComments .commentList .commentBox {
    display: flex;
    margin-bottom: 40px;
}
.blogDetailComments .commentList .commentBox .img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}
.blogDetailComments .commentList .commentBox .img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.blogDetailComments .commentList .commentBox .txt {}
.blogDetailComments .commentList .commentBox .txt .meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.blogDetailComments .commentList .commentBox .txt .meta .user {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--text-dark);
    margin-right: 10px;
}
.blogDetailComments .commentList .commentBox .txt .meta .date {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--grey6);
}
.blogDetailComments .commentList .commentBox .txt .meta .date i {
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.blogDetailComments .commentList .commentBox .txt .commentText {
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--text-dark);
}
#blogDetailPage .leftCol .sectionTitle.growingLine {
    margin-bottom: 17px;
}
#relatedBlogsList {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
#relatedBlogsList .blogBox {
    width: 280px;
    padding: 10px 10px 5px;
    background: var(--white);
    color: var(--text-dark);
    margin-bottom: 20px;
    border-radius: 5px;
}
#relatedBlogsList .blogBox .img {
    border-radius: 3px;
    overflow: hidden;
    width: 260px;
    height: 195px;
    position: relative;
    margin-bottom: 15px;
}
#relatedBlogsList .blogBox .img img {
    width: 100%;
    transition: all 0.4s ease;
}
#relatedBlogsList .blogBox:hover .img img {
    transform: scale(1.05);
}
#relatedBlogsList .blogBox .img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: var(--grey1);
    opacity: 0.25;
    transition: all 0.4s ease;
}
#relatedBlogsList .blogBox:hover .img::after {
    opacity: 0;
}
#relatedBlogsList .blogBox .title {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    height: 18px;
    overflow: hidden;
    margin-bottom: 12px;
}
#relatedBlogsList .blogBox .desc {
    font-size: 1rem;
    line-height: 1.2rem;
    height: 80px;
    margin-bottom: 10px;
}
#relatedBlogsList .blogBox .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--grey3);
    padding-top: 5px;
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--grey6);
}
#relatedBlogsList .blogBox .meta > * {
    height: 30px;
    display: flex;
    align-items: center;
}
#relatedBlogsList .blogBox .meta .category {
}
#relatedBlogsList .blogBox .meta .date {
    font-weight: 400;
}
.socialButtons {
    position: absolute;
    top: 20px;
    left: -60px;
    display: flex;
    flex-direction: column;
}
.socialButtons a {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.socialButtons a img {
    display: block;
    width: 32px;
    height: 32px;
    transition: all 0.4s ease;
}
.socialButtons a:hover {}
.socialButtons a:hover img {
    width: 40px;
    height: 40px;
}
#advsDetailPage {
    padding-top: 20px;
}
.advsDetails {
    display: flex;
    gap: 20px;
}
.advsDetails .leftCol {
    width: 1100px;
    margin-bottom: 40px;
}
.advsDetailContent {
    background: var(--white);
    border-radius: 5px;
    padding: 40px;
    display: flex;
}
.advsDetailContent .img {
    width: 240px;
}
.advsDetailContent .img .bigImg {
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #F0F0F0;
    border-radius: 3px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}
.advsDetailContent .img .bigImg img {
    width: 100%;
    height: 100%;
    max-width: 240px;
    max-height: 240px;
    pointer-events: none;
    transition: all 0.4s ease;
}
.advsDetailContent .img .bigImg span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
    font-size: 37.5px;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}
.advsDetailContent .img .bigImg span i {
    line-height: 37.5px;
}
.advsDetailContent .img .bigImg:hover img {
    transform: scale(1.1);
}
.advsDetailContent .img .bigImg:hover span {
    opacity: 1;
}
.advsDetailContent .img .smallImages {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.advsDetailContent .img .smallImages a {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 3px;
    border: 1px solid var(--grey3);
    flex-shrink: 0;
    flex-grow: 0;
}
.advsDetailContent .img .smallImages a.active {
    border-color: var(--orange);
}
.advsDetailContent .img .smallImages a img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;
}
.advsDetailContent .addToFavorites {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    width: 180px;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    color: var(--grey1);
    font-weight: 500;
    font-size: 0.8rem;
}
.advsDetailContent .addToFavorites i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--grey1);
    margin-right: 20px;
    font-size: 20px;
}

.advsDetailContent .shareWithFriends {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    width: 180px;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    color: var(--grey1);
    font-weight: 500;
    font-size: 0.8rem;
}
.advsDetailContent .shareWithFriends i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--grey1);
    margin-right: 20px;
    font-size: 20px;
}
.advsDetailContent .addToFavorites:hover,
.advsDetailContent .addToFavorites:hover i,
.advsDetailContent .addToFavorites.added,
.advsDetailContent .addToFavorites.added i::before,
.advsDetailContent .shareWithFriends:hover,
.advsDetailContent .shareWithFriends:hover i::before {
    color: var(--orange);
}
.advsDetailContent .txt {
    padding-left: 40px;
    width: 100%;
}
.advsDetailContent .txt .advsTitle {
    font-weight: 700;
    font-size: 1.3333rem;
    line-height: 1.5333rem;
    height: 43px;
    color: var(--text-dark);
}
.advsDetailContent .txt .advsSeller {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--grey3);
}
.advsDetailContent .txt .advsSeller .seller {
    display: flex;
    align-items: center;
    height: 40px;
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 1.3333rem;
    color: var(--text-dark);
}
.advsDetailContent .txt .advsSeller .seller .img {
    position: relative;
    width: 28px;
    height: 28px;
    margin-right: 10px;
}
.advsDetailContent .txt .advsSeller .seller .img img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}
.advsDetailContent .txt .advsSeller .seller .img .status {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--grey1);
    border: 1px solid var(--white);
    top: 0;
    right: 0;
}
.advsDetailContent .txt .advsSeller .seller .img .status.online {
    background-color: var(--green);
}
.advsDetailContent .txt .advsSeller .seller .img .status.offline {
    background-color: var(--red);
}
.advsDetailContent .txt .advsSeller .messageToSeller {
    font-weight: 500;
    font-size: 0.8667rem;
    height: 40px;
    display: flex;
    align-items: center;
    color: var(--grey1);
    transition: all 0.4s ease;
}
.advsDetailContent .txt .advsSeller .messageToSeller i {
    font-size: 20px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    margin-right: 5px;
    margin-top: -1px;
}
.advsDetailContent .txt .advsSeller .messageToSeller i::before {
    transition: all 0.4s ease;
}
.advsDetailContent .txt .advsSeller .messageToSeller:hover,
.advsDetailContent .txt .advsSeller .messageToSeller:hover i::before {
    color: var(--orange);
}
.advsDetailContent .txt .advsDetailsList {
    width: 100%;
}
.advsDetailContent .txt .advsDetailsList ul {
    margin-bottom: 20px;
}
.advsDetailContent .txt .advsDetailsList ul li {
    min-height: 50px;
    border-bottom: 1px solid var(--grey3);
    display: flex;
    align-items: center;
    width: 100%;
    color: var(--grey6);
    font-size: 1rem;
    line-height: 1.3333rem;
}
.advsDetailContent .txt .advsDetailsList ul li label {
    width: 50%;
    padding-right: 30px;
}
.advsDetailContent .txt .advsDetailsList ul li span {
    width: 50%;
    padding-right: 30px;
    color: var(--text-dark);
}
.advsDetailContent .txt .advsDesc {
    color: var(--text-dark);
    min-height: 100px;
    font-size: 1rem;
    line-height: 1.3333rem;
}
.advsDetailContent .txt .advsDesc .advsDescTitle {
    font-weight: 500;
    margin-bottom: 10px;
}
.advsDetailContent .txt .advsDesc .advsDescText {}
.advsDetails .rightCol {
    width: 400px;
    margin-bottom: 40px;
}
.advsDetails .advsDetailPrice {
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    padding: 0 20px 20px 20px;
}
.advsDetails .advsDetailPrice .title {
    height: 60px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    border-bottom: 1px solid var(--grey3);
    margin-bottom: 5px;
}
.advsDetails .advsDetailPrice ul {}
.advsDetails .advsDetailPrice ul li {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.2rem;
}
.advsDetails .advsDetailPrice ul li label {
    color: var(--grey1);
}
.advsDetails .advsDetailPrice ul li span {
    text-align: right;
    color: var(--text-dark);
}
.advsDetails .advsDetailPrice ul li div {
    display: flex;
    align-items: center;
}
.advsDetails .advsDetailPrice ul li div > a {
    width: 24px;
    height: 24px;
    display: block;
    line-height: 24px;
    text-align: center;
    color: var(--orange);
    font-weight: 700;
    font-size: 16px;
}
.advsDetails .advsDetailPrice ul li div > a.disable {
    color: var(--grey4);
    pointer-events: none;
}
.advsDetails .advsDetailPrice ul li div > input {
    background: var(--white);
    border: 1px solid var(--grey3);
    border-radius: 5px;
    width: 64px;
    height: 32px;
    font-size: 1rem;
    line-height: 30px;
    text-align: center;
    color: var(--text-dark);
}
.advsDetails .advsDetailPrice ul li.price {
    margin-top: 40px;
}
.advsDetails .advsDetailPrice ul li.price label {}
.advsDetails .advsDetailPrice ul li.price span {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.8667rem;
}
.advsDetails .advsDetailPrice .buttons {
    gap: 20px;
}
.advsDetails .advsDetailPrice .buttons .addToCart {
    width: 50px;
    height: 50px;
    border: 1px solid var(--grey3);
    border-radius: 5px;
    display: block;
    line-height: 48px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.advsDetails .advsDetailPrice .buttons .addToCart i {
    font-size: 24px;
}
.advsDetails .advsDetailPrice .buttons .addToCart i::before {
    transition: all 0.4s ease;
}
.advsDetails .advsDetailPrice .buttons .addToCart.added,
.advsDetails .advsDetailPrice .buttons .addToCart:hover {
    background: var(--orange);
    border-color: var(--orange);
}
.advsDetails .advsDetailPrice .buttons .addToCart.added i::before,
.advsDetails .advsDetailPrice .buttons .addToCart:hover i::before {
    color: var(--white);
}
.advsDetails .advsDetailPrice .buttons .buyNow {
    flex-grow: 1;
    height: 50px;
    background: var(--green);
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3333rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s ease;
}
.advsDetails .advsDetailPrice .buttons .buyNow:hover {
    background: var(--green2);
}
.relatedAdvs {
    margin-bottom: 40px;
}
.relatedAdvs .sectionTitle {
    margin-bottom: 17px;
}
.relatedAdvsSliderButtons {
    display: flex;
    margin-left: auto;
}
.relatedAdvsSliderButtons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32.5px;
}
.relatedAdvsSliderButtons a.left {
    transform: rotate(180deg);
}
.relatedAdvsSliderButtons a i {
    line-height: 32.5px;
}
.relatedAdvsList .swiper-slide {
    background-color: var(--white);
    border-radius: 5px;
    padding: 10px;
}
.relatedAdvsList .swiper-slide .img {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    aspect-ratio: 1;
    margin-bottom: 10px;
}
.relatedAdvsList .swiper-slide .img::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.relatedAdvsList .swiper-slide .img .status {
    position: absolute;
    z-index: 3;
    width: 10px;
    height: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: var(--grey1);
}
.relatedAdvsList .swiper-slide .img .status.online {
    background: var(--green);
}
.relatedAdvsList .swiper-slide .img .status.offline {
    background: var(--red);
}
.relatedAdvsList .swiper-slide .img .category {
    position: absolute;
    z-index: 3;
    font-weight: 600;
    font-size: 0.7333rem;
    line-height: 0.8667rem;
    display: flex;
    align-items: center;
    min-height: 30px;
    color: var(--white);
    left: 10px;
    right: 30px;
    bottom: 0;
}
.relatedAdvsList .swiper-slide .img img {
    position: relative;
    z-index: 1;
    width: 100%;
}
.relatedAdvsList .swiper-slide .txt {}
.relatedAdvsList .swiper-slide .txt .title {
    margin-bottom: 10px;
    height: 30px;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.8667rem;
    line-height: 1rem;
    color: var(--text-dark);
}
.relatedAdvsList .swiper-slide .txt .bottom {
    border-top: 1px solid var(--grey3);
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.relatedAdvsList .swiper-slide .txt .user {
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 0.9333rem;
    color: var(--grey6);
}
.relatedAdvsList .swiper-slide .txt .price {
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2rem;
    text-align: right;
    color: var(--green2);
}
#userArea {
    padding-top: 40px;
}
.userAreaCols {
    display: flex;
}
.userAreaCols .leftCol {
    width: 320px;
    margin-bottom: 40px;
}
.userAreaCols .rightCol {}
.userSidebar {
    background: var(--white);
    border-radius: 5px;
    padding: 20px;
}

/* Server Cards in Home Slider Area */
#otherImages .serverCard {
    position: relative;
}
#otherImages .serverCard a {
    display: block;
    height: 100%;
}
#otherImages .serverCard .serverPlaceholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}
#otherImages .serverCard:hover .serverPlaceholder {
    background: linear-gradient(135deg, #1e1e3f 0%, #1a2744 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
#otherImages .serverCard .serverName {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
#otherImages .serverCard .serverLabel {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slide Content Overlay */
.swiper-slide .slideContent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 5;
}
.swiper-slide .slideContent h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.swiper-slide .slideContent p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 15px;
}
.swiper-slide .slideContent .slideBtn {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.swiper-slide .slideContent .slideBtn:hover {
    background: #e09a32;
    transform: translateY(-2px);
}

/* =====================================================
   Product Card V2 (KO Item Listing Cards)
   ===================================================== */
.productListingGridV2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card-v2 {
    background: #fff;
    border: 1.5px solid #eef0f4;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.22s ease;
    display: flex;
    flex-direction: column;
}

.product-card-v2:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(251,176,59,0.13);
}

/* Header */
.product-card-v2 .card-header-v2 {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.product-card-v2 .online-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.product-card-v2 .item-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 6px;
}

.product-card-v2 .item-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.product-card-v2 .item-name {
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    padding: 0 4px;
}

.product-card-v2 .item-name.text-normal  { color: #e8e8e8; }
.product-card-v2 .item-name.text-reverse  { color: #ff6b6b; }
.product-card-v2 .item-name.text-unique   { color: #ffd700; }
.product-card-v2 .item-name.text-rare     { color: #7ec8e3; }

.product-card-v2 .item-classes {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

/* Server row */
.product-card-v2 .server-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f8f9fc;
    border-bottom: 1px solid #eef0f4;
}

.product-card-v2 .server-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: #444;
}

.product-card-v2 .item-type {
    font-size: 0.65rem;
    font-weight: 600;
    color: #888;
    background: #eef0f4;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Stats */
.product-card-v2 .stats-list {
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 160px;
    overflow: hidden;
}

.product-card-v2 .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    line-height: 1.4;
}

.product-card-v2 .stat-label { color: #666; }
.product-card-v2 .stat-value { font-weight: 600; color: #333; }

.product-card-v2 .stat-label.text-bonus,
.product-card-v2 .stat-value.text-bonus { color: #FBB03B; }

.product-card-v2 .stat-label.text-elemental,
.product-card-v2 .stat-value.text-elemental { color: #e05c5c; }

.product-card-v2 .stat-label.text-defense-weapon,
.product-card-v2 .stat-value.text-defense-weapon { color: #5cb8e8; }

.product-card-v2 .stat-label.text-resist,
.product-card-v2 .stat-value.text-resist { color: #66C76A; }

.product-card-v2 .stat-label.text-require,
.product-card-v2 .stat-value.text-require { color: #ff6b6b; }

/* Footer */
.product-card-v2 .card-footer-v2 {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eef0f4;
    background: #fff;
}

.product-card-v2 .price-area .price {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
}

.product-card-v2 .price-area .price sup {
    font-size: 0.65rem;
    font-weight: 600;
    color: #888;
    vertical-align: super;
    margin-left: 1px;
}

.product-card-v2 .incele-btn {
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 7px;
    transition: all 0.2s;
    white-space: nowrap;
}

.product-card-v2 .incele-btn:hover {
    background: #e09900;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(251,176,59,0.35);
}

/* Responsive */
@media (max-width: 1200px) {
    .productListingGridV2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .productListingGridV2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .productListingGridV2 { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-card-v2 .stats-list { max-height: 120px; }
}