@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');

* {
    font-family: 'Inter', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
    color: black;
}

nav ul {
    list-style-type: none;
    display: flex;
}

ul {
    margin:0 0 30px 0;
    padding:0;
}

/* ====== ГЛАВНЫЕ ЦВЕТА, фон и базовые ====== */
body{
    padding:0;
    margin:0;
    height:auto;
    min-height:100%!important;
    font-weight:400;
    font-style:normal;
    min-width:320px;
    line-height: 30px;
    overflow-x: hidden;
    background: #181629;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb { background-color:  #fcc739;}

/* ====== ТЕКСТЫ И ЗАГОЛОВКИ ====== */
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{
    color: #fff;
    text-transform:uppercase;
    margin:0 0 20px 0;
    padding:0;
    font-weight:600;
}
h1,.h1{
    font-size:20px;
    line-height:24px;
}
h2,.h2{
    font-size:18px;
    line-height:24px;
}
h3,.h3{
    font-size:16px;
    line-height:32px;
}
h4,.h4{
    font-size:16px;
    line-height:30px;
}
h5,.h5{
    font-size:16px;
    line-height:28px;
}
h6,.h6{
    font-size:16px;
    line-height:28px;
}

p{
    font-size:20px;
    line-height:28px;
    color:rgba(255,255,255,0.8);
    padding:0;
    margin:0 0 30px 0!important;
    text-align:justify;
}

table {
    border-collapse: collapse;
}

div.Header {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

a.Logo {
    display: flex;
    line-height: 25px;
}

.Logo img {
    height: 100px;
    
}

div.logo_title {
    color: white;
    font-size: 18px;
    align-self: center;
}

.Gplayimg {
    width: 200px;
    margin-right: 20px;
}


.Central {
    padding: 0 10px;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: rgba(0,0,0,0.3);
}

.HeaderLink {
    color: white;
}

div.FastEntry {
    -webkit-user-select: none;
    padding: 10px 0px;
    background-color: #fcc739;
    color: white;
    font-size: 18px;
}

div.Infoline {
    margin-top: 20px;
    color: white;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
}
div.Infoline strong {
    color: #f2d48a;
}

div.FastEntry div.Central {
    display: flex;
    justify-content: center;
    align-items: center;
}

span.line-text {
    margin-right: 30px;
}

div.line-button {
    cursor: pointer;
    position: relative;
    padding: 10px;
    text-align: center;
    background: rgba(0,0,0,0.30);
    background-size: 100%;
    width: 380px;
}

div.line-button span {
    vertical-align: middle;
}

div.BgHead {
    border-top: 5px solid white;
    border-bottom: 5px solid white;
    background: url('../../assets/img/background.webp');
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
}

/* ====== Products ====== */
div.Products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
}
div.Product {
    background: #201e2e;
    border-radius: 18px;
    color: #fff;
    padding: 20px 0px;
    width: 250px;
    margin: 0 20px 20px 20px;
    box-shadow: 0 8px 32px rgba(40, 23, 129, 0.18);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
div.Product:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 36px 0 rgba(252,199,57,0.16);
}
div.ProductImg {
    margin: 0 auto 18px;
    width: 100%;
    height: 180px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.img1 { background: url('../../assets/img/2299.webp') no-repeat; }
.img2 { background: url('../../assets/img/5749.webp') no-repeat; }
.img3 { background: url('../../assets/img/11499.webp') no-repeat; }
.img4 { background: url('../../assets/img/22999.webp') no-repeat; }
.img5 { background: url('../../assets/img/57499.webp') no-repeat; }
.img6 { background: url('../../assets/img/114999.webp') no-repeat; }
/* ...остальные imgN... */

div.ProductTitle {
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 7px;
}
div.ProductTitle span:first-child {
    color: #f2d48a;
    font-size: 15px;
    text-decoration: line-through;
    padding-right: 5px;
}

div.ProductTitle span {
    color: #fcc739;
    font-size: 20px;
}

div.ProductPrice {
    font-weight: 600;
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 7px;
}

div.ProductBuy {
    margin: 0 auto;
    width: 90%;
    background: #fcc739;
    color: #22223a;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    padding: 13px 0;
    margin-top: auto;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 4px 16px 0 rgba(252,199,57,0.08);
    border: none;
    outline: none;
}
div.ProductBuy:hover {
    background: #fff;
    color: #181629;
}

.ctitle {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Popup */
.popup-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0,0.6);
    display: none;
}
.popupopen { cursor: pointer; }
.popupclose {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 18px;
    background-color: red;
    color: white;
    padding: 4px 6px;
    border-radius: 15px;
    cursor: pointer;
}

.popupclose:hover {
    transition: .3s;
    color: #d24747;
}

.popup__background {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
}
.modal__popupbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    color: #222;
    min-width: 350px;
    padding: 32px 28px 28px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(35,0,60,0.18);
    z-index: 9999;
    font-family: inherit;
    max-width: 97vw;
}
.popup__close {
    position: absolute;
    top: -17px;
    right: -17px;
    width: 34px;
    height: 34px;
    background: #e74c3c;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(100,0,0,0.13);
}
.popup__close:hover {
    background: #ff2d1a;
}
.popup__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    width: 100%;
    text-align: left;
}
.popup__input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border 0.2s;
}
.popup__input:focus {
    border: 2px solid #b56aff;
}
.popup__rules {
    font-size: 0.97rem;
    color: #222;
    margin-bottom: 22px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 7px;
}
/* Popup end */

footer {
	background-color: rgba(0,0,0,0.7)
}

div.Footer {
	margin-top: 50px;
	padding: 40px 0px;
	display: flex;
	color: white;
	justify-content: space-between;
}

div.Footer img {
	width: 150px;
	height: 150px;
}

div.Footer .logo_text {
	color: white;
}


div.FooterInfo {
	padding: 0px 30px;
}

div.Content p {
	font-size: 14px;
}

div.OrderInfo {
    background-color: rgba(255,255,255,0.2);
    color: white;
    margin: 0 auto;
    text-align: center;
    max-width: 700px;
    margin-top: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.5);
}

.under_button {
    color: rgba(0,0,0,0.3);
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
}

/* News */

ul.News {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul.News li {
    background-color: rgba(0,0,0,0.2);
    padding: 0 10px;
    border-radius: 10px;
    font-size: 15px;
    color: #f2d48a;
    margin: 5px 10px 0px 0px;
}

div.New {
    font-size: 16px;
    padding: 15px 20px 20px 20px;
    margin: 20px 0px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 1px solid white;
    color: white;
    text-align: center;
}
div.New p { color: white; text-align: center; font-size: 16px;}

div.New strong { color: #fcc739 }

div.New ul { list-style-type: none; font-size: 16px; }
div.New ul span { color: #fcc739; font-weight: 600; }
/* News End */

/* Аккаунты */
div.Account {
	background-color: rgba(255,255,255,0.1);
	border: 1px solid white;
	border-radius: 10px;
	color: white;
	padding: 20px 0px;
	width: 350px;
	margin: 0 20px 20px 20px;
	text-align: center;
}


div.AccSmallImgs {
    margin-top: 7px;
    display: flex;
    justify-content: center;
}
div.AccSmallImgs img {  border: 1px solid rgba(255,255,255,0.3); }
div.AccSmallImgs img:not(:last-of-type) {
    margin-right: 7px;
}

div.AccDesc {
    overflow-y: scroll;
    height: 230px;
    background-color: rgba(255,255,255,0.1);
    padding: 10px;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    position: relative;
}


span.AccTitle {
    color: #23ead2;
    font-size: 18px;
    font-weight:500;
}


/* */

div.PhotoViewer-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0,0.8);
    display: none;
}

div.PhotoViewer {
}

div.PhotoViewer img {
    max-width: 60%;
    display: block;
    margin-bottom: 30px;
    position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
   
}

.photoviewerclose {
    color: white;
    font-size: 60px;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}
div.Account img { border-radius: 15px; }
div.Account img:hover {
    cursor: pointer;
    opacity: 0.5;
}

ul.Menu {
    margin-top: 25px;
    list-style-type: none;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-self: center;
}

ul.Menu a { color: white; font-weight: 600; }
ul.Menu a:nth-child(2) { color: #fcc739; }
ul.Menu a:last-child { text-decoration: 1px dashed underline; }

ul.Menu li:first-child {
    margin-right: 15px;
}



/* Магазин аккаунтов */

form.sell-account { max-width: 700px; margin: 0 auto;}
form.sell-account input { padding: 6px 10px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.3); width: 90%; display: block; margin: 0 auto; margin-bottom: 15px; }
form.sell-account textarea { resize: none; padding: 6px 10px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.3); width: 90%; display: block; margin: 0 auto; margin-bottom: 15px; height: 200px;}
form.sell-account button { margin: 0 auto; display: block; background-color: #fcc739; color: #6a3b08; outline: none; border: none; padding: 10px 20px; font-weight: 600; text-transform: uppercase; border-radius: 15px; cursor: pointer;}
.ProductBuy:hover { box-shadow: 0px 0px 20px #d455da; }
/* Конец магазина аккаунтов */

/* Отзывы */
div.review { width: 70%; margin: 10px auto; background-color: rgba(0,0,0,0.3); border-radius: 15px; padding: 10px;}
div.review span:first-child { color: #fcc739; font-weight: 600; font-size: 18px; }
div.review span:nth-child(2) { color: rgba(255,255,255,0.5); }
div.review span:last-child { color: white; }
div.rating i { color: rgba(255,255,255,0.5); }
div.Reviews { max-height: 1000px; overflow-y: scroll; margin-top: 20px; border: 1px solid rgba(255,255,255,0.2); background-color: rgba(0,0,0,0.05); border-radius: 20px;}
/* Конец отзывов */

/* Онлайн */
div.online span::after {content: 'Сейчас онлайн:';}
div.online {color: #6a3b08; position: fixed; bottom: 20px; left: 15px; background-color: #fcc739; padding: 5px 10px; border-radius: 15px;}

/* Конец онлайна */

/* Магазин аккаунтов */
div.Accounts { display: grid; grid-template-columns: 50% 50%; justify-content: center; align-content: center; align-self: center;}
div.Account { background-color: rgba(255,255,255,0.1); width: 90%;}
div.Account img { border: 2px dashed rgba(255,255,255,0.5); }
div.Account img:first-of-type{ width: 90%; }
div.Account div.sml-imgs img:first-of-type { width: 20%; }
div.sml-imgs img { width: 20%; }
div.AccountDescription span { color: #fcc739; padding: 0px 5px;  }
div.AccountDescription u { color: rgba(255,255,255,0.7); }
div.AccountDescription { padding: 0px 10px; }
span.AccountTitle { color: #fcc739; font-weight: 600; font-size: 20px;}
/* Конец магазина аккаунтов */

/* Страница узнать контакты */
div.get-info p { background-color: rgba(0,0,0,0.3); padding: 5px 10px; font-size: 16px;}
div.get-info strong { color: #fcc739; }
a.pay-comission { font-size: 12px; display: inline-block; background-color: #fcc739; color: #6a3b08; outline: none; border: none; padding: 0px 14px; font-weight: 600; text-transform: uppercase; border-radius: 15px; cursor: pointer;}
.blur { filter: blur(3px); user-select: none; }
div.get-account { margin: 0 auto;max-width: 50%; color: white; text-align: center; background-color: rgba(0,0,0,0.3); padding: 10px;}
/* Конец узнать контакты */

/* Таблицы */
.table-wide { margin: 0 auto; display: block; overflow-x: scroll; max-width: 90%; }
.New table tr, .New table td { border: 1px solid rgba(255,255,255,0.3); max-width: 90%;}
.New table th { color: #fcc739; border: 1px solid rgba(255,255,255,0.3); padding: 0px 10px; }
/* Конец таблиц */



.popup__background {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
}
.modal__popupbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    color: #222;
    min-width: 350px;
    padding: 32px 28px 28px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(35,0,60,0.18);
    z-index: 9999;
    font-family: inherit;
}
.popup__close {
    position: absolute;
    top: -17px;
    right: -17px;
    width: 34px;
    height: 34px;
    background: #e74c3c;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(100,0,0,0.13);
}
.popup__close:hover {
    background: #ff2d1a;
}
.popup__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    width: 100%;
    text-align: left;
}
.popup__input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border 0.2s;
}
.popup__input:focus {
    border: 2px solid #b56aff;
}
.popup__rules {
    font-size: 0.97rem;
    color: #222;
    margin-bottom: 22px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 7px;
}
.button__confirm {
    background: linear-gradient(90deg, #fcc739 0%, #f9b520 100%) !important;
    color: #22223a !important;
    border: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    width: 100%;
    padding: 13px 0;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.18s, color 0.18s, box-shadow 0.19s;
    box-shadow: 0 4px 16px 0 rgba(252,199,57,0.08);
    letter-spacing: 0.03em;
}
.button__confirm:disabled {
    background: linear-gradient(90deg, #f3e8b3 0%, #fbe1a0 100%) !important;
    color: #aaa !important;
    cursor: not-allowed;
    box-shadow: none;
}
@media (max-width: 620px) {
    div.Products {
        display: grid;
        grid-template-columns: 100%;
            gap: 0.5rem 0.5rem;
    }
    div.Product {
        width: auto;
        
    }
}
@media (max-width: 450px) {
    .modal__popupbox { min-width: 95vw; padding: 18px 4vw 20px 4vw; }
}
.popup__rules {
  display: flex;
  align-items: center;
justify-content: center;
  flex-wrap: wrap;
  font-size: 0.97rem;
  color: #222;
  margin-bottom: 22px;
  width: 100%;
  line-height: 1.28;
  gap: 7px;
  word-break: break-word;
}
@media (max-width: 450px) {
  .modal__popupbox {
    min-width: unset;
    width: 94vw;
    padding: 18px 4vw 20px 4vw;
  }
}

.ProductTitle .old-amount {
    color: #f2d48a;
    font-size: 15px;
    text-decoration: line-through;
    margin-right: 7px;
    opacity: 0.7;
}
.ProductTitle .new-amount {
    color: #fcc739;
    font-size: 20px;
    font-weight: bold;
}
.ProductTitle .desc {
    font-size: 15px;
    color: #fff;
}

.packs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 24px;
}
.pack-card {
  background: #201e2e; /* как у товаров */
  border-radius: 14px;
  color: #fff;
  /* размеры, отступы, шадоу – те же! */
  box-shadow: 0 8px 32px rgba(40, 23, 129, 0.18);
  width: 330px;
  padding: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: box-shadow .18s, transform .18s;
}
.pack-card:hover {
  box-shadow: 0 16px 36px 0 rgba(252,199,57,0.16);
  transform: scale(1.05);
}
.pack-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff; /* белый как у товаров */
  text-align: center;
  margin-top: 18px;
  margin-bottom: 7px;
  text-shadow: none;
}
.pack-header {
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-bottom: 7px;
  font-weight: 600;
}
.pack-list {
  background: linear-gradient(90deg,#23203a 90%,#23242e 100%);
  border-radius: 0 0 0 0;
  padding: 16px 16px 8px 16px;
  width: 100%;
  margin: 0 0 0 0;
  list-style: none;
}
.pack-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  margin-bottom: 7px;
  gap: 8px;
  min-height: 38px;
  border-bottom: 1px solid #fff1;
  padding-bottom: 3px;
}
.pack-list li:last-child {
  border-bottom: none;
}
.pack-list img {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: #23203a;
  margin-right: 10px;
  border: 2px solid #0002;
}
.pack-list span {
  flex: 1;
}
.pack-list b {
  color: #fcc739; /* жёлтый акцент */
  font-weight: 700;
  font-size: 18px;
  margin-left: 8px;
}
.pack-bonus {
  color: #23ead2;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  font-size: 16px;
  margin-bottom: 4px;
}
.pack-price {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 7px 0 9px 0;
}
.pack-btn {
  background: #fcc739; /* жёлтая кнопка */
  color: #22223a;      /* тёмный текст */
  border: none;
  width: 90%;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 600;
  padding: 13px 0;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background .14s, color .14s;
  box-shadow: 0 2px 14px #fcc73933;
  letter-spacing: .02em;
}
.pack-btn:hover {
  background: #fff;
  color: #181629;
}
@media (max-width:900px){
  .packs-row {
    flex-direction: column;
    align-items: center;
    gap: 18px 0;
  }
  .pack-card { width: 97vw; max-width: 400px;}
}