@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*::-webkit-scrollbar {
    width: 12px
}

*::-webkit-scrollbar-track {
    background: #12102A;
}

*::-webkit-scrollbar-thumb {
    background-color: #5866DB;
    border-radius: 20px;
    border: 3px solid #13112D
}


html {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    background: #13112D;
    color: #ffffff;
}

.uk-link, a {
    text-decoration: none;
    cursor: pointer;
}

.uk-link, a:hover {
    text-decoration: none;
    cursor: pointer;
}


.info-game {
    font-size: 16px;
    font-weight: 300;
    color: rgb(255 255 255 / 90%);
}


.gradient-text {
  background: radial-gradient(circle at 95% 5%, #BB64FF 0%, #EB7500 25%, #2997FF 75%);
  background-size: 200% 200%;
  animation: gradientMove 6s ease-in-out infinite;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@keyframes gradientMove {
  0% {
    background-position: 95% 5%;
  }
  50% {
    background-position: 5% 95%;
  }
  100% {
    background-position: 95% 5%;
  }
}



.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-3xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    font-family: "Inter";
}

 
.uk-hr, hr {
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.white {
    color: #fff;
}

.gray {
    color: #B9B9BA;
}

.uk-background-secondary {
    background-color: rgb(27 29 34 / 70%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.uk-modal-body {
    display: flow-root;
    padding: 20px 20px;
    border-radius: 12px;
}



.review-card__title {
  color: #f7b500;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 4px 0;
}

.review-card__title2 {
  color: #FF1636;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 4px 0;
}

.review-card__title3 {
  color: #008CE3;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 4px 0;
}

.review-card__title4 {
  color: #A5FF61;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 4px 0;
}

.uk-border-rounded {
    border-radius: 12px;
}

.seotext {
    font-size: 14px;
    font-weight: 300;
}


.uk-text-primary {
    color: #ff004e !important;
}


.uk-heading-line>::after, .uk-heading-line>::before {
    border-bottom: calc(.2px + .05em) solid rgb(255 255 255 / 10%);
}


.floating-image {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.windshake-image {
    animation: windShake 1.5s ease-in-out infinite;
}

@keyframes windShake {
    0% {
        transform: translateX(0px);
    }
    25% {
        transform: translateX(-2px);
    }
    50% {
        transform: translateX(2px);
    }
    75% {
        transform: translateX(-1px);
    }
    100% {
        transform: translateX(0px);
    }
}

.hero-section {
    background-image: url('/wp-content/themes/afyx-gaming/assets/img/main/p.png');
    padding: 100px 0px 40px 0px;
    margin-top: -80px;
}

.hero-section-block {
    padding: 0px 0px;
}

.hero-section-cta-block {
    padding: 0px 0px 0px 0px;
}


section.catalog-page {
    padding-top: 40px;
    margin-top: -80px;
}

section.product-page {
    padding-top: 40px;
    margin-top: -80px;
}



img.bolt-label {
    width: 18px;
    animation: floatUpDown 3s ease-in-out infinite;
}


.uk-breadcrumb>*>* {
    color: #b9b9ab;
}

.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
    content: "/";
    color: rgb(255 255 255 / 20%);
}
.uk-breadcrumb>:last-child>a:not([href]), .uk-breadcrumb>:last-child>span {
    color: #fff;
}

.uk-breadcrumb {
    background: rgb(21 22 26 / 51%);
    display: inline-block;
    padding: 15px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.secondary-button.secondary-button-sort {
    background: #282553;
    gap: 10px;
    padding: 8px 15px;
    border: 1px solid rgb(255 255 255 / 10%);
}


.secondary-button.secondary-button-alt {
    background: #282553; 
    border: 1px solid rgb(255 255 255 / 10%);
}

.secondary-button.primary-button {
    background: linear-gradient(90deg, #5866DB, #1E44D5); 
}

.secondary-button.primary-button:hover {
    background: linear-gradient(to top, #075E54, #62BD80); 
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 40px;
    background: linear-gradient(to right, #0E8CFB, #007AFF);
    color: white;
    text-decoration: none;
    font-weight: 500;
    box-sizing: border-box;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 8px;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    justify-content: center;
}

.secondary-button .icon {
    width: 20px;
    height: 20px;
}


.secondary-button:hover {    
    color: white;
    text-decoration: none;
    background: linear-gradient(to bottom, #42a5f5, #0288d1); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.4); 
}






.game-cat-card {
  display: block;
    background: rgb(25 22 55 / 60%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 10px 10px 30px 10px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.game-cat-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.game-cat-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.game-cat-platforms {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.game-cat-platforms img {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.6));
}

.game-cat-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.game-cat-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0;
    color: #fff;
}

.game-cat-price {
    font-size: 16px;
    color: #C5C4CC;
    margin-top: 5px;
    margin-bottom: 20px;
}

.game-cat-btn {
    background: linear-gradient(90deg, #5866DB, #1E44D5);
    border-radius: 10px;
    padding: 12px 40px;
    color: #fff;
    font-weight: 500;
    transition: background 0.3s ease;
    display: inline-block;
}

.game-cat-card:hover .game-cat-btn {
  background: linear-gradient(90deg, #6677ff, #7486ff);
}


.info-panel {
    background: rgb(25 22 55 / 60%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #d8d8e3;
    border-radius: 16px;
    padding: 20px 24px;
}

.info-panel p {
  margin: 0 0 12px 0;
}

.info-panel p:last-child {
  margin-bottom: 0;
}

.info-panel__brand {
  color: #2993ff;
}

.info-panel b {
  color: #fff;
  font-weight: 600;
}








[class*=uk-modal-close-] {
    top: 10px;
    right: 10px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-radius: 8px;
}

.secure-panel {
  background-color: #191637;
  color: #e5e5f0;
  border-radius: 16px;
  padding: 24px 20px;
}

.secure-panel__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.secure-panel__text {
  margin-bottom: 16px;
  opacity: 0.9;
}

.secure-panel__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.secure-panel__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.secure-panel__item img {
  width: 24px;
  height: 24px;
}

.br-s {
    border-radius: 20px;
}

.brt {
    border-radius: 12px;
}

.uk-thumbnav>*>::after {
    border-radius: 12px;
}

.uk-thumbnav img {
    display: block;
    width: 80px;
    height: 80px;
}

.product-price-text {
    font-size: 20px;
    background: #1b193c;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
}

.info-section {
    background-image: url('/wp-content/themes/afyx-gaming/assets/img/main/i.png');
    padding: 320px 0 120px 0px;
}

.game-catalog {
    background-image: url('/wp-content/themes/afyx-gaming/assets/img/blob/2.png');
    margin-bottom: -200px;
}

.game-info-cat-page {
    padding: 120px 0 80px 0px;
    margin-top: -40px;
}

.table-section {
    background-image: url('/wp-content/themes/afyx-gaming/assets/img/blob/2.png');
}

.left-tab-section {
    background-image: url('/wp-content/themes/afyx-gaming/assets/img/blob/2.png');
}

.game-products-filter {
    padding: 30px 0px 0px 0px;
}

.uk-tab>*>a {
    padding: 20px 15px;
    color: #B9B9BA;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    border-radius: 0;
    text-transform: none;
}

.uk-tab::before {
    border-bottom: 0px solid rgb(255 255 255 / 0%);
}



.uk-tab>.uk-active>a {
    color: #ffffff;
    border-color: #0E8CFB;
    font-weight: 600;
}


.uk-tab-left>*>a {
    justify-content: left;
    border: none;
}

.uk-tab-left::before {
    border-left: 1px solid transparent;
}


.uk-tab-left > li.uk-active .left-custom-tab-container {
    background: linear-gradient(to right, rgb(20 93 148 / 70%), rgb(20 93 148 / 5%));
}


@keyframes tab-gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.uk-tab-left > li.uk-active .left-custom-tab-icon {
  background: linear-gradient(
    270deg,
    #3d5c49,
    #00FF88,
    #0C4F81
  );
  background-size: 200% 200%;
  animation: tab-gradient-animation 4s linear infinite;
}



.left-custom-tab-container {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgb(255 255 255 / 5%), rgb(255 255 255 / 0%));
  padding: 12px 16px;
  border-radius: 20px;
  width: 100%;
  color: white;
}

.left-custom-tab-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: radial-gradient(circle at center, #52a974, #3d5c49);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
}

.left-custom-tab-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.left-custom-tab-content {
  display: flex;
  flex-direction: column;
  text-transform: none;
}

.left-custom-tab-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 2px;
}

.left-custom-tab-subtitle {
    font-size: 16px;
    color: #b0b0b0;
    font-weight: 300;
}














.uk-subnav>* {
    flex: none;
    padding-left: 0px;
    position: relative;
}

.uk-subnav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    margin-bottom: 20px;
    margin-left: 0px;
}

.uk-subnav > li {
    margin-right: 10px;
}

.uk-subnav > li > a {
    display: inline-block;
    padding: 16px 10px;
    color: #B9B9BA;
    border-bottom: 3px solid transparent;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.uk-subnav > li.uk-active > a,
.uk-subnav > li > a[aria-expanded="true"] {
    color: #ffffff;
    border-color: #ff004e;
    font-weight: 700;
}


.uk-subnav>*>:first-child {
    text-transform: uppercase;
    padding: 16px 10px;
    color: #B9B9BA;
    border-bottom: 3px solid transparent;
    font-size: 16px;
}


.uk-subnav-pill>*>a:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #158DE7;
}


.uk-subnav-pill>.uk-active>a {
    background-color: transparent;
    color: #ffffff;
    border-color: #ff004e;
}










.product-card {
    background: rgb(25 22 55 / 60%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
}


.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


.product-card__image {
  background: #13112D;
  border-radius: 20px;
}

.product-card__content {
  padding: 16px;
}

.product-card__title {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #f1f1f1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.product-card__pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-card__discount {
  background: #ff3b5c;
  color: #fff;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
}

.product-card__old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 14px;
}

.product-card__price {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.product-card__button {
  width: 100%;
  background: #007bff;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card__button:hover {
  background: #0066e6;
}








.features-card {
    background: linear-gradient(135deg, #EBA67B, #E32562);
    color: white;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 1%);
}

.features-card-2 {
    background: linear-gradient(135deg, #158DE7, #145D94);
}

.features-card-3 {
    background: linear-gradient(135deg, #00FF88, #075E54);
}

.features-card-4 {
    background: linear-gradient(135deg, #333792, #0F112C);
}

.features-card-gradient {
    background: url('/wp-content/themes/afyx-gaming/assets/img/element/fgradient.png');
    padding: 30px 10px 10px 10px;
    background-size: contain;
    margin-bottom: 4px;
    border-radius: 10px;
}

.features-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border-radius: 12px;
}

.features-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: #fff;
  margin-top: 0;
}

.features-card-text {
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.8;
}
