/*
Theme Name: SteamHub Theme
Theme URI: https://example.com/steamhub-theme
Author: Renatas Shidlovskas
Author URI: https://example.com
Description: Custom WordPress theme based on HTML, CSS, and JS files provided.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: steamhub-theme
*/
@font-face {
font-family: "GagalinRegular";
src: url("../fonts/Gagalin-Regular.otf") format("truetype");
font-style: normal; 
font-weight: normal; 
}

/* Базовые стили */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(54,56,69,1) 54%, rgba(4,61,73,1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

.container {
  margin-top: 10px;
  width: 100%;
}


/* Стили для навигации */
nav {
  position: relative; 
  display: flex;
  justify-content: space-between; 
  width: 100%;
  height: 100px;	
  background: #1e232f; 
  padding: 10px 0;
  gap: 20px;
  border-radius: 10px;	
}

/* Ссылки в навигации */
nav a {
  position: relative;
  text-decoration: none;
  padding: 15px 25px; 
  color: #F5F5F5;
  font-weight: 400; 
  letter-spacing: 0.1em;
  transition: color 0.3s; /* Плавный переход цвета текста */
}

/* Индикатор активной ссылки */
#marker {
  position: absolute; 
  bottom: 0; 
  width: 90px; 
  height: 100%; 
  border-bottom: 5px solid #08f9ff; 
  background: linear-gradient(0deg, #08f9ff33, transparent); 
  transition: 0.3s; 
  pointer-events: none; 
  filter: drop-shadow(0 5px 25px #08f9ff); 
}

/* Ховер-эффект для ссылок */
nav a:hover {
  color: #08f9ff; /* Изменение цвета текста при наведении */
}

/* Базовые стили для бургер-меню */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 30px;
  margin-right: 30px;		
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #F5F5F5;
  transition: 0.3s;
}

.logo {
  margin-left: 10px
}

.logo img {
  width: 80px;
  height: 80px;	
}

/* Скроем меню для мобильных устройств */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .menu {
    display: none; /* Меню скрыто по умолчанию */
    flex-direction: column;
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background-color: #1e232f;
	border-radius: 10px;
	  
  }

  nav {
    position: relative;
	height: 80px;  
  }
	.logo img {
	  width: 60px;
      height: 60px;		
	}	
  #marker {
	  display: none;
	}	

  .burger {
    display: flex; /* Показываем бургер-меню на мобильных */
	margin-top: 20px;  
  }

  .menu.active {
    display: flex; /* Показываем меню при активации бургер-меню */
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Баннер */
.banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  margin-top: 100px;
  gap: 20px;
}

.banner__intro, .banner__intro-2 {
  position: relative;
  width: 80%;
  height: 100px;
  min-height: 100px;
  border-radius: 20px;
  background: url('https://steam-hub.net/wp-content/uploads/2024/11/fone-1.jpg') !important;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner__intro-2 {
  background: url('https://steam-hub.net/wp-content/uploads/2024/10/photo-3.jpg') !important;
}

.banner__header {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #f5f5f5;
  font-family: 'GagalinRegular';	
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.banner__header span {
  font-family: 'GagalinRegular';	
  font-weight: 400;	
  
}

.banner__button {
  position: relative;
  width: 30%;
  height: 40px;
  border-radius: 20px;
  border: 2px solid #fff;
  background: none;
  color: #F5F5F5;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.5s;
}

.banner__button:hover, .banner__button:focus, .banner__button:active {
  border: none;
  color: #000;
  background: #fff;
}

/* Платежи */
.pay {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  margin-top: 30px;
}

.pay h1 {
  color: #F5F5F5;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pay__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px; 
  margin: 50px auto 0;
}

.calculations {
  display: flex;
  flex-direction: column;
  width: 30%;
  padding: 20px;
  border-radius: 20px;
}

/* Форма */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  border-radius: 10px;
  backdrop-filter: blur(10px); /* Эффект размытия фона */
}

.form__login, .form__wallet, .form__email, .form__promo {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ccc; 
  border-radius: 30px;
  padding: 10px 15px;
  background: transparent; /* Прозрачный фон */
  color: #fff;
}


.form__login input, .form__wallet input, .form__email input, .form__promo input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  background: transparent !important; /* Прозрачный фон поля */
  color: #fff; /* Цвет текста */
  font-size: 16px;
}

.form__login input:focus, .form__wallet input:focus, .form__email input:focus, .form__promo input:focus {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  background: transparent; /* Прозрачный фон поля */
  color: #fff; /* Цвет текста */
  font-size: 16px;
}

.form__login i, .form__wallet i, .form__email i, .form__promo i {
  margin-right: 10px;
  color: #f5f5f5; /* Цвет иконок */
}

.form__wallet i:last-child {
  margin-left: 10px;
}

.form__login a, .form__wallet a {
  margin-left: 10px;
  color: #fff;
}
.form__login a{
  text-decoration: none;
  color: #f5f5f5;
  font-size: 16px;
}

.login-help {
  display: flex;
  align-items: center;
  gap: 5px; /* Отступ между текстом и иконкой */
  color: #f5f5f5;
  font-size: 16px;
}

.login-help i {
  display: none;
}

/* Стили для кнопки оплаты */
.form button {
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.form button:hover {
  background: #fff;
  color: #000;
}

/* Стили для секции оплаты */
.form__pay h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.form__card {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 15px;
}

.form__card a img {
  width: 100px;
  height: 80px;
  transition: filter 0.3s;
}

.form__card a img:hover {
  opacity: 0.5;
}

/* Стили для блока суммы */
.form__sum {
  display: flex;
  justify-content: space-between; /* Равномерное распределение блоков */
  gap: 5px; /* Отступы между блоками */
  margin-top: 20px; /* Отступ сверху */
}

.sum__digit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px; /* Ширина блока */
  height: 50px; /* Высота блока */
  background: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  border: 2px solid #fff; /* Белая граница */
  border-radius: 10px; /* Закругление углов */
  transition: background 0.3s, transform 0.3s; /* Плавные переходы */
  cursor: pointer;
}

.sum__digit h6 {
  color: #fff; /* Цвет текста */
  font-size: 18px; /* Размер шрифта */
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0;
}

.sum__digit:hover {
  background: rgba(255, 255, 255, 0.3); /* Изменение фона при наведении */
  transform: scale(1.1); /* Увеличение размера при наведении */
}

.sum__digit:active {
  background: rgba(255, 255, 255, 0.5); /* Еще большее изменение фона при клике */
  transform: scale(1.05); /* Уменьшение эффекта при нажатии */
}

/* Стили для радиокнопки и текста подтверждения */
.form__confirmation {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
}

.form__confirmation input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #000; /* Цвет радиокнопки */
}

.form__confirmation label {
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}

/* Стили для секции calculations */
.calculations {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  margin-left: 50px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  border-radius: 10px;
  backdrop-filter: blur(10px); /* Эффект размытия фона */
}

.calculations__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calculations__pay, 
.calculations__balance, 

.calculations__bank {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: transparent; /* Прозрачный фон */
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

.calculations__procent {
  gap: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px 15px;
  background: transparent; /* Прозрачный фон */
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

.calculations__pay:hover,
.calculations__balance:hover,
.calculations__procent:hover,
.calculations__bank:hover {
  background: rgba(255, 255, 255, 0.2); /* Изменение фона при наведении */
  transform: scale(1.05); /* Увеличение размера при наведении */
}

.calculations__pay span, 
.calculations__balance span, 
.calculations__bank span {
  font-size: 16px;
  font-weight: 500;
  color: #f5f5f5; /* Цвет текста */
}
.calculations__procent p {
  font-size: 26px;
  font-weight: 600;
  color: #8B0000; 
  letter-spacing: 3px;
  text-decoration: line-through;	
}
.calculations__procent span {
  font-size: 22px;
  font-weight: 900;
  color: #f5f5f5; 
  letter-spacing: 3px;
  text-decoration: none !important;
}
.calculations__pay i, 
.calculations__balance i, 
.calculations__procent i, 
.calculations__bank i {
  color: #f5f5f5; /* Цвет иконок */
  margin-left: 10px;
}

/* Стили для Overlay */
.popup-overlay {
  display: none; /* Изначально скрыто */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Стили для содержимого Popup */
.popup-content {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  z-index: 1000; /* Увеличен z-index */
}

/* Стили для кнопки закрытия */
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: none;
  color: #fff;
  z-index: 1001; /* Увеличен z-index */
}
.popup-inner img {
  width: 100%;
}

.popup-inner a {
  color: #0056b3;
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
}

/* Стили для кнопки "Понятно" */
.popup-ok {
  background: #0056b3;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 20px;
  z-index: 1001; /* Увеличен z-index */
}
.popup-ok:hover {
  background: #4b8cd2;
}

/* Стили для секции instruction */
.instruction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  border-radius: 10px;
  backdrop-filter: blur(10px); /* Эффект размытия фона */
}

.instruction h2 {
  font-size: 24px;
  color: #fff; /* Белый цвет заголовка */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.instruction__content {
  display: flex;
  justify-content: space-between; /* Равномерное распределение карточек */
  gap: 15px;
  width: 100%;
}

.instruction__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  border: 1px solid #ccc; /* Легкая граница */
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s;
  color: #fff; /* Белый цвет текста */
  text-align: center;
  width: 100%;
  max-width: 180px; /* Устанавливаем фиксированную ширину для карточек */
}

.instruction__card:hover {
  background: rgba(255, 255, 255, 0.2); /* Изменение фона при наведении */
  transform: scale(1.05); /* Увеличение размера при наведении */
}

.instruction__card h6 {
  font-size: 16px;
  font-weight: 500;
  color: #fff; /* Белый цвет текста */
  margin-bottom: 10px;
}

.instruction__card span {
  font-size: 24px;
  font-weight: 700;
  color: #000; /* Черный цвет текста */
  background-color: #fff; /* Белый фон для номера шага */
  padding: 10px 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  min-height: 50px;
  transition: background 0.3s, transform 0.3s;
}

.instruction__card span:hover {
  background-color: #e0e0e0; /* Изменение фона при наведении */
}
/* Секция прогресса */
.progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  border-radius: 10px;
  backdrop-filter: blur(10px); /* Эффект размытия фона */
}

.progress h2 {
  font-size: 24px;
  color: #fff; /* Белый цвет заголовка */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.progress__content {
  display: flex;
  justify-content: space-between; /* Равномерное распределение карточек */
  gap: 15px;
  width: 100%;
}

.progress__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  border: 1px solid #ccc; /* Легкая граница */
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s;
  color: #fff; /* Белый цвет текста */
  text-align: center;
  width: 100%;
  max-width: 180px; /* Устанавливаем фиксированную ширину для карточек */
}

.progress__card:hover {
  background: rgba(255, 255, 255, 0.2); /* Изменение фона при наведении */
  transform: scale(1.05); /* Увеличение размера при наведении */
}

.progress__card h6 {
  font-size: 16px;
  font-weight: 500;
  color: #fff; /* Белый цвет текста */
  margin-bottom: 10px;
}

.progress__card span {
  font-size: 20px;
  font-weight: 700;
  color: #fff; /* Черный цвет текста */
  background-color: transparent; /* Белый фон для номера шага */
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;	
  display: flex;
  justify-content: center;
  white-space: nowrap;	
  align-items: center;
  min-width: 50px;
  min-height: 50px;
  transition: background 0.3s, transform 0.3s;
}



.question {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1); /* Прозрачный фон */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.question h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff; /* Белый шрифт */
  text-align: center;
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 10px;
}

.question details {
  margin-bottom: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1); /* Прозрачный фон */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Прозрачная граница */
}
/* Отключаем встроенные стрелки браузеров для элементов <summary> */
.question summary::-webkit-details-marker {
    display: none; /* Убираем встроенные индикаторы на WebKit-браузерах (Chrome, Safari) */
}

.question summary::marker {
    display: none; /* Убираем встроенные индикаторы на других браузерах */
}
.question summary {
  font-weight: bold;
  font-size: 18px;
  color: #fff; /* Белый шрифт */
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none; /* Убираем подчеркивание у текста и стрелки */
}

.question summary:hover {
  color: #f5f5f5; /* Цвет при наведении */
}

.question summary::before {
    font-family: "Font Awesome 5 Free"; /* Используем шрифт FontAwesome */
    content: "\f0da"; /* Код иконки "caret-right" */
    margin-right: 10px;
    transition: transform 0.3s ease;
    color: #f5f5f5; /* Цвет стрелки */
    display: inline-block;
    font-weight: 900; /* Жирная иконка */
    text-decoration: none; /* Убираем подчеркивание */
}

.question details[open] summary::before {
    transform: rotate(90deg); /* Поворот стрелки при открытии */
}


.question summary:hover {
  text-decoration: none; /* Подчеркивание текста при наведении */
}

.question summary:hover::before {
  text-decoration: none; /* Убираем подчеркивание у стрелки при наведении */
}

.question p {
  font-size: 16px;
  color: #fff; /* Белый шрифт */
  margin-top: 10px;
  line-height: 1.6;
}

footer {
  width: 100%;
  margin-top: 50px;
  background-color: #1e232f;	
}
.footer__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__nav a {
  text-decoration: none;
  color: #fff; /* Белый цвет текста */
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

footer p {
  font-size: 16px;
  color: #fff; /* Белый шрифт */
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media screen and (min-width:359px) and (max-width:480px) {
  body {
    width: 100%;
    
  }
  .container {
    width: 100%;
    min-width: 359px;
  }
  nav a {
    font-size: 14px;
    padding: 5px 8px;
    letter-spacing: 0em;
  }
  .banner {
    width: 100%;
    flex-direction: column;
    padding: 10px;
    margin-top: 30px;
  }
  .banner__intro, .banner__intro-2 {
	background: url('https://steam-hub.net/wp-content/uploads/2024/11/banner-background1.jpg') !important;  
    width: 100%;
	height: 80px;  
    min-height: 50px;
  }

  .banner__header {
    font-size: 16px;
	font-weight: 600;  
    margin-bottom: 0px;
  }

  .banner__button {
    width: 45%;
    font-size: 12px;
  }

  .pay {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
  }

  .pay h1 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }

  .pay__content {
    width: 100%;
    padding: 0;
    flex-direction: column;
  }
  .login-help .text {
    display: none;
  }

  .login-help i {
    display: block;
  }

  .popup-overlay {
    width: 100%;
  }
  .sum__digit h6 {
    font-size: 12px;
  }
  .form__pay h6 {
    font-size: 14px;
  }
  .form__card a img {
    width: 80px;
    height: 55px;
  }
  .form__confirmation label {
    font-size: 14px;
  }
  .form button {
    font-size: 14px;
    width: 80%;
    padding: 10px;
    margin-left: 33px;
  }
  .calculations {
    margin-top: 10px;
    margin-left: 0;
  }
  .calculations__procent span{
	  font-size: 16px;
	}
  .calculations__procent p{
	  font-size: 16px;
	}		
  .instruction h2 {
    font-size: 18px;
  }
  .instruction {
	  margin: 0;
	}	
  .instruction__content {
    gap: 5px;
    justify-content: center;
  }
  .instruction__card {
    max-width: 80px;
    padding: 3px;
  }
  .instruction__card h6 {
    font-size: 12px;
    font-weight: 400;
  }
  .instruction__card span {
    font-size: 16px;
  }
  .progress {
	margin: 0;
	}	
  .progress__content {
	  flex-direction: column;
	} 
  .progress__card {
	 max-width: 360px;
	}
	
	.progress__card span{
	  font-size: 16px;
	}	
  
  .question h2 {
    font-size: 18px;
  }
  footer {
    margin-top: 20px;
  }
  .footer__nav {
    padding: 20px;
	gap: 3px; 
	flex-direction: column;  
  }
	.footer p {
	  font-size: 14px;
	}	
  .footer__nav a {
    font-size: 14px;
    padding: 5px 15px;
  }
  .popup-content {
    width: 90%;
    
  }
}

/* Страница регистрации  */
.account {
  width: 100%;
  height: 100vh;
}
.account__title {
  text-align: center;
  margin-top: 50px;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}

.back {
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
  align-items: center;
}

.tab {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

.tablinks {
  margin-top: 40px;
  width: 20%;
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.tablinks:hover {
  background: #fff;
  color: #000;
}

.tab__intro {
  margin-top: 50px;
}

.tabcontent {
  text-align: center;
}

.tab__title {
  margin: 0 auto;
  color: #f5f5f5;
  font-size: 20px;
}

.form__reg, .form__log {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  border-radius: 10px;
  backdrop-filter: blur(10px);
  margin: 0 auto; 
}

.form__group {
  position: relative;
  display: flex;
  align-items: center;
  
}

.form__group input {
  flex: 1;
  outline: none;
  color: #fff; /* Цвет текста */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 10px 15px;
  background: transparent; /* Прозрачный фон */
  margin-left: 10px;
  box-shadow: none; /* Убираем тень */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__group input:focus {
  color: #fff;
  background: transparent;
}

.form__group input[type="password"] {
  background-color: transparent !important; /* Прозрачный фон для пароля */
}

.form__group i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #f5f5f5;
}

.form__reg button, .form__log button {
  width: 100%;
  border: 1px solid #ccc;
  outline: none;
  padding: 10px;
  color: #fff;
  background: transparent;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.form__reg button:hover, .form__log button:hover {
  color: #000;
  background: #FFF;
}

.forgot__password {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
}
.error {
  color: #e81515;
  font-size: 18px;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.success {
  color: #09b818;
  font-size: 18px;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

/* CSS для лоадера */
#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}



#loader img {
  width: 100px;
  height: 100px;
}

@media screen and (min-width:359px) and (max-width:480px) {
  .tablinks {
    width: 40%;
    font-size: 14px;
  }
  .tabcontent{
    width: 90%;
    margin: 0 auto;
  }
  .form__reg, .form__log {
    align-items: center;
  }
  .form__reg button, .form__log button {
    width: 60%;
    font-size: 14px;
  }

}

/* Страница личного кабинета */

.account__info h2 {
  text-align: center;
  font-size: 24px;
  margin-top: 20px;
  color: #f5f5f5;
}

.payments-table {
  width: 80%;
  margin: 30px auto;
  border-collapse: collapse;
}

.payments-table th, 
.payments-table td {
  border: 1px solid #fff;
  padding: 15px;
  text-align: center;
}

.payments-table th {
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.payments-table td {
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.payments-table tfoot td {
  font-weight: bold;
  color: #f5f5f5;
  background-color: rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
}

.account__title {
  text-align: center;
  margin-top: 50px;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}

/* Стиль для кнопки Выйти */
.logout-button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.logout-button:hover {
  background: #fff;
  color: #000;
}
@media screen and (min-width:359px) and (max-width:480px) {
	.account__title {
	  font-size: 20px;
	}
}

/* Страница успешной оплаты */
.success_block {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 200px;
	margin-bottom: 200px;
}
.success_block h2{
	font-size: 32px;
	color: #fff;
}
.success_block p {
    margin-top: 20px;
	font-size: 20px;
	color: #fff;
	text-align: center;
}

/*Страница Оферта*/

.oferta {
  width: 60%;
  margin-top: 50px;
}
.oferta h2 {
  font-size: 24px;
  color: #fff;	
}
.oferta p {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;	
}
.oferta span{
  text-decoration: underline;
}

.privacy {
   width: 90%;
   margin-top: 50px;	
}
.privacy p {
  color: #fff;
}

/*Страница Web-Hook*/
.webhook-data-page h1{
   color: #fff;
   margin-top: 50px;
   font-size: 32px;
   text-align: center;	
}

.dataTables_wrapper {
   margin-top: 50px;
}

@media screen and (min-width:359px) and (max-width:480px) {
.oferta {
   width: 100%; 
   padding: 10px;
	} 
	.oferta p {
	font-size: 14px;
	letter-spacing: 1px;	
	}	
	
}

/* Страница статус платежа */

.status-container{
	display: flex;
	justify-content: center;
	margin-top: 100px;
	align-items: center;
	flex-direction: column;
	width: 80%;
}

.status-input {
  width: 300px;	
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ccc; 
  border-radius: 30px;
  padding:  15px;
  background: transparent; /* Прозрачный фон */
  color: #fff;
  margin-top: 50px;	
}

.status-input input{
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    background: transparent !important;
    color: #fff;
    font-size: 22px;
}

.status-title {
 margin-top: 30px;
 font-size: 22px;
 color: #fff; 	
}

.status-title span {
  color: #fff;	
}

.status-button {
  width: 300px;	
  margin-top: 50px;	
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.status-button:hover {
  background: #fff;
  color: #000;
}

/* Стили для загрузчика */
/* Стили для лоадера */
.loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.balance {
   display: flex;
   flex-direction: column;
   align-items: center;
   margin-top: 100px;	
}

.balance h2 {
  font-size: 30px;
  color: #fff;	
}
.balance p {
  font-size: 24px;
  color: #fff;	
  margin-top: 50px;	
}
.balance span {
  color: red;
}
.balance button {
  width: 300px;	
  margin-top: 50px;	
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.balance button:hover {
  background: #fff;
  color: #000;
}