@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
* { padding: 0px; margin: 0px; border: 0px; box-sizing: border-box;}
:root {
    --green: #C5FF00;
    --background: #080B1D;
    --item-bg: #0E1228;
    --lblue-gr: linear-gradient(90deg, #2E5BFC 0%, #178BDA 100%);
    --lgreen-gr: linear-gradient(77.69deg, rgba(161, 212, 19, 0.9) 0%, rgba(198, 255, 118, 0.9) 98.1%);
    --dblue-gr: linear-gradient(77.69deg, rgba(19, 51, 212, 0.9) 0%, rgba(118, 129, 255, 0.9) 98.1%);
    --lime-gr: linear-gradient(77.69deg, rgba(29, 212, 19, 0.9) 0%, rgba(118, 255, 127, 0.9) 98.1%);
    --benefit-bg: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 5.83%, rgba(253, 255, 246, 0.036) 95.02%);
    --orange-gr: linear-gradient(77.69deg, rgba(212, 161, 19, 0.9) 0%, rgba(255, 202, 118, 0.9) 98.1%);
    --purple-gr: linear-gradient(77.69deg, rgba(129, 19, 212, 0.9) 0%, rgba(232, 118, 255, 0.9) 98.1%);
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb { 
    background-color:  var(--green);
}

html {
    background: var(--background);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
body {
    line-height: 1.2;
    color: white;
    font-family: "Onest";
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}
input, button, textarea {
    font-family: "Onest";
    font-size: inherit;
    outline: none;
    border: 1px solid transparent;
}
button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}
input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
    display: none;
}
a {
    color: inherit;
}
a:link, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
}
h1, h2 {
    font-size: 1.3rem;
}
[class*=__container], .container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 0.375rem;
    box-sizing: border-box;
}
[class*=__box], .box {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.9375rem;
    box-sizing: border-box;
}
/* Header */
/* Header */
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}
.header__left, .header__menu ul, .header__usermenu {
    display: flex;
    align-items: center;
}
.header__left {
    column-gap: 4rem;
}
.header__menu ul {
    column-gap: 1.5rem;
}
.header__usermenu {
    column-gap: 1rem;
}
.header__usermenu li {
    cursor: pointer;
}
.header__menu ul li:first-child > a {
    
}
.header__menu ul li:not(:first-child) > a {
    transition: all .6s ease;
}
.header__menu ul li:not(:first-child) > a:hover {
    color: var(--green);
}
/* Каталог dropdown */
/* Каталог dropdown */
.catalog-menu-btn {
    position: relative;
    background-color: var(--green);
    color: var(--background);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    position: relative;
}
.catalog-dropdown {
    display: none !important;
    position: absolute;
    left: 0;
    top: 110%;
    min-width: 250px;
    background: var(--background);
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 1.2rem 1.3rem;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.16);
    color: #fff;
    font-size: 22px;
    transition: all 0.2s;
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
}
.catalog-menu-btn.active .catalog-dropdown {
    display: flex !important;
}
.catalog-dropdown li {
    margin-bottom: .5rem;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}
.catalog-dropdown li:last-child {
    margin-bottom: 0;
}
.catalog-dropdown a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color .2s;
    text-align: left !important;
    padding: 0.2em 0.8em;
    width: 100%;
    box-sizing: border-box;
    /* ВАЖНО: убери фон и цвет! */
    background: none;
}
.catalog-dropdown a:hover {
    color: var(--green);
    background: rgba(197,255,0,0.08);
    border-radius: 10px;
}
@media (max-width: 500px) {
    .catalog-dropdown {
        min-width: 150px;
        font-size: 16px;
        padding: 1rem;
    }
}

/* End Header */
/* End Header */
.banner__container {
    background: url('template/img/banner-bg.svg');
    height: 150px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.banner__left {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    z-index: 2;
    min-width: 0;
    max-width: 45%;
}
.banner__left h2 {
    font-size: 26px;
    font-weight: 500;
}
.banner__left span {
    color: var(--green);
}
.banner__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    z-index: 2;
    min-width: 0;
    max-width: 30%;
    text-align: center;
}
.banner__right>span p:nth-child(1), .banner__right>span p:nth-child(2) {
    font-size: 18px;
}
.banner__right>span p:nth-child(3) {
    font-size: 24px;
    font-weight: 600;
    color: #1889DB;
}
.banner__right a {
    font-size: 18px;
    background: var(--lblue-gr);
    width: 180px;
    padding: 0.5rem;
    border-radius: 15px;
    display: flex;
    column-gap: 0.5rem;
    align-items: center;
    justify-content: center;

}
.banner-gamepad {
    position: absolute;
    left: 60%;
    top: 60%;
    transform: translate(-50%,-50%);
    z-index: 1;
    pointer-events: none;
    width: 270px; /* подбери нужный размер */
    height: auto;
    display: block;
}
.banner-gamepad img {
    width: 100%;
    height: auto;
    display: block;
}
/* Офферы */
.offers__list {
    user-select: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    gap: 1rem;
}
.offers__list li {
    width: 100%;
    height: 160px;
    border-radius: 15px;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.offer__tag {
    background-color: white;
    font-size: 20px;
    color: var(--background);
    font-weight: 600;
    padding: 0.2rem 0.35rem;
    border-radius: 15px;
}
.offer__description p:nth-child(1), .offer__description p:nth-child(2) {
    font-size: 20px;
    font-weight: 600;
}
.offer__description p:nth-child(3) {
    font-size: 16px;
}
.offers__list li img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0%,-50%);
    width: 115px;
}
.offers__list a:nth-child(1) li {
    background: var(--lblue-gr);
}
.offers__list a:nth-child(2) li {
    background: var(--lgreen-gr);
}
.offers__list a:nth-child(3) li {
    background: var(--dblue-gr);
}
.offers__list a:nth-child(4) li {
    background: var(--lime-gr);
}
/* Преимущества */
.benefits__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    user-select: none;
}
.benefits__list li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--benefit-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    font-size: 20px;
    font-weight: 500;
    animation: benefit 3s ease infinite alternate;
}
@keyframes benefit {
    from {
        background: var(--benefit-bg);
    }
    10% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 12.5%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    20% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 20%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    30% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 27.5%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    40% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 35%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    50% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 42.5%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    60% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 50%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    70% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 57.5%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    80% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 62.5%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    90% {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 70%, rgba(253, 255, 246, 0.036) 95.02%);
    }
    to {
        background: linear-gradient(80.46deg, rgba(197, 255, 0, 0.1) 75%, rgba(253, 255, 246, 0.036) 95.02%);
    }
}
.benefits__list li>img {
    margin-bottom: 0.5rem;
}
/* */
/* Товары на главной */
.title-section {
    font-weight: 600;
    font-size: 36px;
    margin-top: 1rem;
}
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
    margin-top: 1rem;
}

.product {
    background: #0B1022;
    border-radius: 15px;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    box-shadow: 0 10px 40px 0 rgba(20, 20, 43, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
}
.product img {
    width: 100%;
    margin-bottom: 1rem;
}
.product__title {
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.4rem;
}
.product__price {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.product__buy {
    background: var(--green);
    color: var(--background);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.7rem 0;
    width: 100%;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    margin-top: auto;
}
.product__buy:hover {
    background: #eaff63;
}
.products__categories {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.products__categories > li {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    font-size: 24px;
    font-weight: 500;
    background: var(--item-bg);
    padding: 0.5rem 1rem;
    border-radius: 15px;
}
.products__categories img {
    max-width: 60px;
}
/* Сервис */
.service {
    background: url('template/img/service-bg.svg');
    background-size: 100%;
    animation: service-bg 0.8s ease infinite alternate;
}

@keyframes service-bg {
    from {
        background-size: 100%;
    }
    to {
        background-size: 102%;
    }
}
.service__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
    padding: 1.5rem 0 2.5rem 0;
}
.service__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
    font-weight: 600;
    font-size: 36px;
    padding: 1.5rem;
}
.service__text img {
    animation: service-text-img 0.8s ease infinite alternate;
}
@keyframes service-text-img {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}
.service__list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 1rem;
}
.service__list > li {
    background: var(--item-bg);
    font-size: 18px;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 15px;
    display: flex;
    column-gap: 1rem;
    align-items: center;
}
.service__item-icon {
    width: 64px;
    height: 64px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service__list > li:nth-child(1) .service__item-icon {
    background: var(--lblue-gr);
}
.service__list > li:nth-child(2) .service__item-icon {
    background: var(--lgreen-gr);
}
.service__list > li:nth-child(3) .service__item-icon {
    background: var(--orange-gr);
}
.service__list > li:nth-child(4) .service__item-icon {
    background: var(--purple-gr);
}
.service__list > li:nth-child(5) .service__item-icon {
    background: var(--lblue-gr);
}
.service__list > li:nth-child(6) .service__item-icon {
    background: var(--lgreen-gr);
}
.service__list > li:nth-child(7) .service__item-icon {
    background: var(--orange-gr);
}
.service__list > li:nth-child(8) .service__item-icon {
    background: var(--purple-gr);
}
/* */

/* FAQ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq__item {
  background: none;
  border-radius: 10px;
  overflow: hidden;
}

.faq__item summary {
  background: var(--item-bg);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 1rem 2.8rem 1rem 1.5rem;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
  outline: none;
  list-style: none;
  user-select: none;
  transition: background .2s;
  display: flex;
  align-items: center;
}

.faq__item[open] summary {
  border-radius: 10px 10px 0 0;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image .2s;
}

/* SVG иконки для + и - */
.faq__item:not([open]) .faq__icon {
  background-image: url('template/img/faq-open.svg');
}
.faq__item[open] .faq__icon {
  background-image: url('template/img/faq-close.svg');
}

.faq__content {
  background: var(--benefit-bg);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 16px;
  border-radius: 0 0 10px 10px;
  animation: faqOpen .25s;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}
/* */

/* Футер */
.footer {
    margin-top: 2rem;
    background: url('template/img/footer-bg.svg');
    padding: 3rem 0.375rem;
}
.footer__top {
    display: flex;
    justify-content: space-between;
}
.footer__top-right {
    display: flex;
    column-gap: 3rem;
}
.footer__menu {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
}
.footer__menu > p {
    font-size: 22px;
    color: var(--green);
    font-weight: 500;
}
.footer__menu li {
    font-size: 18px;
}
.footer__top-left > ul {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}
.footer__top-left > ul a {
    font-size: 22px;
}
.footer__top-left > ul > li:first-child {
    font-size: 18px;
}
.footer__bottom {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* */

/* Хедер */
@media (max-width: 990px) {
    .header__menu > ul > li:not(:first-child) {
        display: none;
    }
    .catalog-dropdown li {
        font-size: 14px;
    }
    .catalog-dropdown {
        min-width: 200px;
        border-radius: 15px;
        padding: 1rem 0.5rem;
        font-size: 14px;
        z-index: 50;
        right: 0;
        left: auto;
    }
    .header__left {
        column-gap: 1rem;
    }
}
@media (max-width: 860px) {
    .header__container {
        padding-top: 20px;
    }
    .header__logo img {
        width: 140px;
    }
}
/* Преимущества */
@media (max-width: 1180px) {
    .benefits__list li {
        width: 100%;
        padding: 1rem;
        font-size: 16px;
    }
    .benefits__list li img {
        width: 60px;
    }
}
@media (max-width: 860px) {
    .benefits__list li {
        padding: 0.75rem;
        font-size: 14px;
    }
    .benefits__list li img {
        width: 45px;
    }
    .benefits__list {
        gap: 0.5rem;
    }
}
@media (max-width: 690px) {
    .benefits__container {
        overflow-x: scroll;
    }
    .benefits__container::-webkit-scrollbar {
     display: none;
    }
    .benefits__list li {
        width: 130px;
    }
}

/* Офферы */
@media (max-width: 1290px) {
    .offers__list li img {
        width: 90px;
    }
}
@media (max-width: 1190px) {
    .offers__list li img {
        width: 60px;
    }
    .offers__list li {
        padding: .75rem;
        height: 130px;
    }
    .offer__tag {
        font-size: 16px;
    }
    .offer__description p:nth-child(1), .offer__description p:nth-child(2) {
        font-size: 16px;
    }
    .offer__description p:nth-child(3) {
        font-size: 12px;
    }
    .offer__tag {
        font-size: 12px;
    }
}
@media (max-width: 1080px) {
    .offers__list li {
        padding: .75rem;
        height: 115px;
    }
}
@media (max-width: 960px) {
    .offers__list li img {
        width: 45px;
        right: 4px;
    }
    .offers__list li {
        padding: .5rem;

    }
}
@media (max-width: 820px) {
    .offers__list {
        gap: 0.5rem;
    }
    .offers__container {
        overflow-x: scroll;
    }
    .offers__container::-webkit-scrollbar {
     display: none;
    }
    .offers__list li {
        padding: .75rem;
        height: 115px;
        width: 200px;
    }
}
/* */

/* Баннер */
@media (max-width: 1030px) {
   .banner__left h2 {
        font-size: 20px;
    } 
    .banner__left span {
        font-size: 14px;
    }
    .banner__container {
        padding: 1rem;
    }
    .banner__right>span p:nth-child(1), .banner__right>span p:nth-child(2) {
        font-size: 14px;
    }
    .banner__right>span p:nth-child(3) {
        font-size: 18px;
        font-weight: 600;
        color: #1889DB;
    }
    .banner__right a {
        font-size: 14px;
        width: 130px;
    }
}
@media (max-width: 820px) {
    .banner-gamepad {
        width: 190px;
    }
}
@media (max-width: 665px) {
    .banner-gamepad {
        width: 100px;
    }
    .banner__left, .banner__right {
        max-width: 100%;
    }
}
@media (max-width: 520px) {
    .banner__left h2 {
        font-size: 16px;
        background: rgba(0,0,0,0.3);
        padding: 0.25rem;
        border-radius: 5px;
    } 
    .banner__left span {
        font-size: 12px;
        background: rgba(0,0,0,0.3);
        padding: 0.25rem;
        border-radius: 5px;
        
    }
    .banner__container {
        padding: .5rem;
        height: auto;
        box-shadow: 0px 0px 10px 2px rgba(197, 255, 0, 0.1) inset;
    }
    .banner__right>span p:nth-child(1), .banner__right>span p:nth-child(2) {
        font-size: 12px;
    }
    .banner__right>span p:nth-child(3) {
        font-size: 14px;
    }
    .banner__right a {
        font-size: 12px;
        padding: 0.25rem 1rem;
        width: auto;
    }
    .banner__right {
        row-gap: .35rem;
    }
}
/* */

/* Продукты */
@media (max-width: 1005px) {
    .title-section {
        font-size: 26px;
    }
    .product__title {
        font-size: 16px;
    }
    .product__price {
        font-size: 22px;
    }
    .product__buy {
        font-size: 16px;
    }
    .products__categories > li {
        column-gap: 1rem;
        font-size: 18px;
        padding: 0.35rem 0.75rem;
    }
    .products__categories img {
        max-width: 45px;
    }
        .product__title {
        font-size: 14px;
    }
    .product__price {
        font-size: 18px;
    }
    .product__buy {
        font-size: 14px;
    }
    .products__categories > li {
        column-gap: 1rem;
        font-size: 14px;
        padding: 0.35rem 0.75rem;
    }
}
@media (max-width: 825px) {
    .products {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 700px) {
    .title-section {
        font-size: 22px;
    }
}
@media (max-width: 600px) {
    .products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
/* */

/* Сервис */
@media (max-width: 1100px) {
    .service__text {
        font-size: 26px;
    }
    .service__list > li {
        font-size: 14px;
    }
    .service__item-icon {
        width: 45px;
        height: 45px;
    }
    .service__item-icon img {
        width: 80%;
    }
}
@media (max-width: 820px) {
    .service__list {
        grid-template-columns: repeat(3, auto);
        gap: 0.5rem;
    }
}
@media (max-width: 705px) {
    .service__list {
        grid-template-columns: repeat(2, auto);
        gap: 0.5rem;
    }
    .service__list > li {
        column-gap: .35rem;
    }
}
/* */

/* FAQ */
@media (max-width: 705px) {
    .faq__item summary {
        font-size: 16px;
    }
    .faq__content {
        font-size: 14px;
    }
}
/* */

/* Футер */
@media (max-width: 1100px) {
    .footer__menu > p {
        font-size: 16px;
    }
    .footer__menu li {
        font-size: 14px;
    }
    .footer__top-left > ul a {
        font-size: 16px;
    }
    .footer__top-left > ul > li:first-child {
        font-size: 14px;
    }
} 
@media (max-width: 740px) {
    .footer {
        background-size: cover;
    }
    .footer__top {
        flex-direction: column;
        row-gap: 0.5rem;
        align-items: center;
    }
    .footer__bottom {
        flex-direction: column;
        row-gap: 0.5rem;
        align-items: center;
        margin-top: 1.5rem;
    }
    .footer__bottom img {
        width: 300px;
    }
}
/* */

/*

