@font-face {
  font-family: "Aquire";
  src: url("./fonts/Aquire-BW0ox.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  -webkit-tap-highlight-color: transparent;
}

#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000000 0%, #010a13 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}
.loading-content {
  text-align: center;
}

.loading-title {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.loading-circle {
  display: block;
  margin: 0 auto;
  border: 5px solid rgba(0, 170, 255, 0.3);
  border-top: 5px solid #00aaff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  #loading-screen {
    background-position: 50% center;
  }
}

body {
  font-family: "Aquire", sans-serif;
  background-color: #000;
  color: #00aaff;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  padding-bottom: 60px;
  background-image: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(0, 170, 255, 0.05) 1px,
      rgba(0, 170, 255, 0.05) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1px,
      rgba(0, 170, 255, 0.05) 1px,
      rgba(0, 170, 255, 0.05) 4px
    );
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  box-sizing: border-box;
  border-bottom: 2px solid #00aaff;
  background-color: rgba(0, 0, 0, 0.5);
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 15px;
}

.section.active {
  opacity: 1;
  transform: translateY(0);
}

.title {
  font-size: 1.3em;
  color: #00aaff;
  text-shadow: 0 0 7px #00aaff, 0 0 14px #00aaff;
  letter-spacing: 1px;
}

.sticker {
  display: block;
  margin: 0 auto;
}

.subscribe {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  background-color: #00aaff;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
  border: 2px solid #00aaff;
}

.subscribe:hover {
  background-color: #0088cc;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.9);
}

.subscribe i {
  margin-right: 5px;
  font-size: 18px;
}

.content {
  text-align: center;
  flex-grow: 1;
  padding: 15px;
  box-sizing: border-box;
}

.coin {
  width: 250px;
  height: 250px;
  margin-top: 20px;
  cursor: pointer;
  transition: transform 0.1s, filter 0.3s;
  filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.7));
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.coin:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(0, 170, 255, 0.9));
}

.coin:active,
.coin.active {
  transform: scale(0.95);
}

.balance {
  display: block;
  margin: 10px auto;
  font-size: 1.5em;
  color: #fff;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff;
  animation: neon-glow-white 1.5s ease-in-out infinite alternate;
}

@keyframes neon-glow-white {
  0% {
    text-shadow: 0 0 3px #fff, 0 0 6px #fff;
  }
  100% {
    text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 18px #eee;
  }
}

.coin-image {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}

.bottom-controls {
  position: fixed;
  bottom: 50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.7);
  border-top: 2px solid #00aaff;
  border-bottom: 2px solid #00aaff;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 8px;
}

.auto-clicker-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auto-clicker-icon {
  font-size: 1.3em;
  color: #00aaff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff;
}

.auto-clicker-icon:hover {
  transform: scale(1.1);
}

.auto-clicker-display {
  font-size: 0.6em;
  margin-top: 5px;
  color: #c0f;
  text-shadow: 0 0 3px #c0f, 0 0 6px #c0f;
}

.auto-clicker-time {
  font-size: 10px;
}

.boost-button {
  background-color: #00aaff;
  color: #000;
  padding: 8px 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
  border: 2px solid #00aaff;
}

.boost-button:hover {
  background-color: #0088cc;
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.9);
}

.energy-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.energy-icon {
  font-size: 1.3em;
  color: #00aaff;
  margin-bottom: 5px;
}

.energy-icon i {
  filter: drop-shadow(0 0 5px rgba(0, 170, 255, 0.7));
}

.energy-value {
  font-size: 12px;
  color: #fff;
  text-shadow: 0 0 3px #fff, 0 0 6px #fff;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.energy-low .energy-icon i {
  color: #ff4444;
  animation: pulse 1s infinite;
  filter: drop-shadow(0 0 5px #ff4444);
}

@media (max-width: 768px) {
  .bottom-controls {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    bottom: 50px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px;
  }

  .auto-clicker-section,
  .boost-button,
  .energy-info {
    margin: 3px;
  }

  .boost-button {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.sidebar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-around;
  padding: 10px 5px;
  border-top: 2px solid #00aaff;
  z-index: 10;
}

.sidebar-icon {
  font-size: 20px;
  color: #00aaff;
  cursor: pointer;
  transition: transform 0.3s;
  text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff;
}

.sidebar-icon:hover {
  transform: scale(1.1);
}

.section.tasks {
  padding: 20px;
  color: #fff;
}

.tasks h1,
.upgrades h1,
.referral h1,
.leaderboard h1,
.withdrawal h1 {
  font-size: 1.8em;
  margin-top: -10px;
  text-align: center;
  margin-bottom: 15px;
  color: #00aaff;
  text-shadow: 0 0 7px #00aaff, 0 0 14px #00aaff;
}

.daily-reward-section,
.daily-lottery-section {
  margin-bottom: 20px;
}

.daily-reward,
.lottery-claim,
.lottery-countdown {
  background-color: rgba(0, 170, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid rgba(0, 170, 255, 0.3);
}

.daily-reward h3,
.lottery-claim p,
.lottery-countdown p {
  margin: 8px 0;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 0 3px #fff, 0 0 6px #fff;
}

.claimed {
  color: #888 !important;
  text-shadow: none !important;
}

button {
  background-color: #00aaff;
  color: #000;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 7px rgba(0, 170, 255, 0.5);
  font-weight: bold;
}

button:disabled {
  background-color: #3e29f5;
  cursor: not-allowed;
  box-shadow: none;
  color: #ccc;
}

button:hover:not(:disabled) {
  background-color: #230fff;
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.8);
}

.tasks-container {
  border-radius: 10px;
}

.tasks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.task-item {
  display: flex;
  align-items: center;
  background-color: rgba(0, 64, 128, 0.7);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 170, 255, 0.2);
}

.task-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.5);
}

.task-icon {
  font-size: 18px;
  color: #00aaff;
  margin-right: 15px;
  text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff;
}

.task-content {
  flex-grow: 1;
}

.task-title {
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
  display: block;
  text-shadow: 0 0 3px #fff, 0 0 6px #fff;
}

.task-description {
  font-size: 12px;
  color: #b0d4ff;
  display: block;
  text-shadow: 0 0 2px #b0d4ff;
}

.task-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 15px;
}

.task-reward {
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700;
}

.task-button {
  background-color: #00aaff;
  color: #000;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 0 7px rgba(0, 170, 255, 0.5);
}

.check-payment-button {
  padding: 8px 15px;
}

.task-button:hover:not(:disabled) {
  background-color: #0088cc;
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.8);
}

.task-button:disabled {
  background-color: #555;
  cursor: not-allowed;
  box-shadow: none;
  color: #ccc;
}

.task-completed {
  opacity: 0.8;
}

.task-completed .task-icon,
.task-completed .task-title,
.task-completed .task-description,
.task-completed .task-reward {
  color: #888;
  text-shadow: none;
}

.task-completed .task-button {
  background-color: #4caf50;
  box-shadow: none;
  color: #fff;
}

.donation-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.donation-link:hover {
  background-color: #45a049;
}

@media (max-width: 600px) {
  .task-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .task-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .task-details {
    align-items: flex-start;
    margin-left: 0;
    margin-top: 10px;
  }

  .task-reward {
    margin-bottom: 5px;
  }
}

.start-task-button {
  background-color: transparent;
  border: 2px solid #00aaff;
  color: #00aaff;
  padding: 6px 12px;
  font-size: 14px;
  min-width: 80px;
  cursor: pointer;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
  box-shadow: 0 0 7px rgba(0, 170, 255, 0.5);
  font-weight: bold;
}

.start-task-button:hover:not(:disabled) {
  background-color: rgba(0, 170, 255, 0.1);
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.8);
}

.start-task-button:disabled {
  color: #ccc;
  border-color: #555;
  cursor: not-allowed;
  box-shadow: none;
}

.start-task-button .fa-check {
  color: #69f382;
}

.start-task-button:disabled .fa-check {
  color: #69f382;
}

.referral {
  text-align: center;
  padding: 20px;
}

.referral h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: normal;
  text-shadow: 0 0 3px #fff, 0 0 6px #fff;
}

.referral-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.referral-link-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid #00aaff;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1em;
  text-shadow: 0 0 2px #fff;
}

.referral-link-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.referral-bonus-info-box {
  text-align: center;
}
.referral-bonus-info-box .claim-btn:disabled {
  background-color: #888;
  cursor: not-allowed;
  box-shadow: none;
  color: #ccc;
  opacity: 0.7;
}

.referral-bonus-info-box .button-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

.referral-bonus-info-box .button-group button {
  margin: 0 5px;
}

.referral-bonus-info-box .button-group .action-button {
  margin: 0 5px 0 0;
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #00aaff;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
  box-shadow: 0 0 7px rgba(0, 170, 255, 0.5);
  font-weight: bold;
}

.action-button:hover {
  background-color: #007bbd;
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.8);
}

.referral-info-box {
  background-color: rgba(0, 170, 255, 0.1);
  color: #fff;
  padding: 10px;
  margin: 10px auto;
  border: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 5px;
  text-align: center;
  font-size: 0.8em;
  width: 100%;
  max-width: 300px;
  text-shadow: 0 0 2px #fff;
}

.referral-info-box p {
  margin: 0;
}

@media (min-width: 768px) {
  .referral-link-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .referral-link-input {
    width: 60%;
    margin-bottom: 0;
    margin-right: 15px;
  }

  .referral-link-actions {
    width: auto;
  }
}

.invited-friends-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.invited-friends-list li {
  background-color: rgba(0, 64, 128, 0.7);
  color: #fff;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.invited-friends-list li:hover {
  background-color: rgba(0, 80, 160, 0.8);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

.invited-friends-list li .friend-name {
  font-weight: bold;
  text-shadow: 0 0 2px #fff;
}

.invited-friends-list li .friend-balance {
  font-style: italic;
  color: #ffd700;
  text-shadow: 0 0 3px #ffd700;
}

.no-friends-box {
  background-color: rgba(0, 170, 255, 0.1);
  border: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.no-friends-box p {
  color: #fff;
  font-size: 12px;
  margin: 0;
  text-shadow: 0 0 2px #fff;
}

.leaderboard-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  border-top: 2px solid #00aaff;
}

.user-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

.user-entry:last-child {
  border-bottom: none;
}

.user-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 10px;
  color: #fff;
  text-shadow: 0 0 2px #fff;
  font-size: 1em;
}

.user-balance {
  flex: 0 0 100px;
  text-align: right;
  color: #ffd700;
  text-shadow: 0 0 3px #ffd700;
  font-size: 1em;
}

.user-rank {
  flex: 0 0 80px;
  text-align: right;
  color: #00aaff;
  text-shadow: 0 0 3px #00aaff;
  font-size: 1em;
}

.top-3 {
  font-weight: bold;
}

.first-place {
  color: gold;
  text-shadow: 0 0 5px gold, 0 0 10px gold;
}

.second-place {
  color: silver;
  text-shadow: 0 0 5px silver, 0 0 10px silver;
}

.third-place {
  color: #cd7f32;
  text-shadow: 0 0 5px #cd7f32, 0 0 10px #cd7f32;
}

.community-count {
  padding-left: 10px;
  color: #fff;
  text-shadow: 0 0 2px #fff;
  margin-top: 8px;
  font-size: 0.8em;
  text-align: center;
  display: block;
}

button {
  background-color: #00aaff;
  border: none;
  color: #000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 7px rgba(0, 170, 255, 0.5);
  font-weight: bold;
}

.coin.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  filter: grayscale(80%);
}

.upgrades {
  padding: 20px;
  border-radius: 10px;
}

.upgrades h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
  color: #00aaff;
  text-shadow: 0 0 7px #00aaff, 0 0 14px #00aaff;
}

.upgrades-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.upgrade-item {
  background-color: rgba(0, 64, 128, 0.7);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 170, 255, 0.2);
}

.upgrade-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.5);
}

.upgrade-icon {
  font-size: 36px;
  color: #00aaff;
  margin-bottom: 10px;
  text-align: center;
  filter: drop-shadow(0 0 7px rgba(0, 170, 255, 0.7));
}

.upgrade-info {
  flex-grow: 1;
}

.upgrade-item h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  text-shadow: 0 0 3px #fff, 0 0 6px #fff;
  text-align: center;
}

.upgrade-description {
  color: #b0d4ff;
  font-size: 14px;
  margin-bottom: 15px;
  text-shadow: 0 0 2px #b0d4ff;
  text-align: center;
}

.upgrade-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.upgrade-cost {
  color: #ffd700;
  text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700;
}

.upgrade-level {
  color: #00ff00;
  text-shadow: 0 0 3px #00ff00, 0 0 6px #00ff00;
}

.upgrade-item button {
  background-color: #00aaff;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 0 7px rgba(0, 170, 255, 0.5);
}

.upgrade-item button:hover:not(:disabled) {
  background-color: #0088cc;
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.8);
}

.upgrade-item button:disabled {
  background-color: #555;
  cursor: not-allowed;
  box-shadow: none;
  color: #ccc;
}

.upgrade-item button.max-level {
  background-color: #4caf50;
  box-shadow: none;
  color: #fff;
}

.task-button.task-completed-button {
  background-color: #66bb6a;
  color: white;
  border: 1px solid #66bb6a;
  cursor: default;
}

.task-button.task-completed-button:hover {
  background-color: #66bb6a !important;
}

@media (max-width: 600px) {
  .upgrades-container {
    grid-template-columns: 1fr;
  }

  .upgrade-item {
    padding: 15px;
  }

  .upgrade-icon {
    font-size: 30px;
  }

  .upgrade-item h3 {
    font-size: 16px;
  }

  .upgrade-description,
  .upgrade-stats,
  .upgrade-item button {
    font-size: 13px;
  }
}

.notification-container {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.notification {
  background-color: #4caf50;
  color: #fff;
  padding: 12px 15px;
  font-size: 12px;
  margin-bottom: 8px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification.error {
  background-color: #f44336;
}

.quick-tip {
  background-color: rgba(0, 170, 255, 0.1);
  border: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 5px;
  padding: 12px;
  margin-bottom: 15px;
  font-style: italic;
  font-size: 12px;
  color: #fff;
  text-shadow: 0 0 2px #fff;
  text-align: center;
}

.quick-tip i {
  margin-right: 5px;
}

.my-position {
  background-color: rgba(0, 170, 255, 0.1);
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  margin-top: 15px;
  border: 2px solid rgba(0, 170, 255, 0.3);
}

.my-position p {
  margin: 5px 0;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 2px #fff;
  font-size: 1em;
}

.user-stats {
  background-color: rgba(0, 170, 255, 0.1);
  border: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 10px;
  width: 90%;
  display: block;
  margin: 15px auto;
  padding: 12px;
  text-align: center;
}

.user-stats p {
  color: #fff;
  font-size: 13px;
  margin: 0;
  text-shadow: 0 0 2px #fff;
}

.section.promotions {
  padding: 20px;
  color: #fff;
}

.promotions h1 {
  font-size: 1.8em;
  margin-top: -10px;
  text-align: center;
  margin-bottom: 15px;
  color: #00aaff;
  text-shadow: 0 0 7px #00aaff, 0 0 14px #00aaff;
}

.promotions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.promotion-item {
  background-color: rgba(0, 64, 128, 0.7);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(0, 170, 255, 0.2);
}

.promotion-item h3 {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 10px;
  text-shadow: 0 0 3px #fff, 0 0 6px #fff;
}

.promotion-item p {
  color: #b0d4ff;
  margin-bottom: 15px;
  text-shadow: 0 0 2px #b0d4ff;
}

.promotion-cost {
  color: #ffd700;
  font-weight: bold;
  text-shadow: 0 0 3px #ffd700, 0 0 6px #ffd700;
  margin-bottom: 10px;
}

.promotion-item button {
  margin: 10px auto;
  display: block;
}

.withdrawal {
  padding: 20px;
}

.withdrawal-description {
  background-color: rgba(0, 170, 255, 0.1);
  border: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.withdrawal-description p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 0 2px #fff;
}

.withdrawal-initial,
.withdrawal-wallet-input,
.withdrawal-commission-payment,
.withdrawal-moderation-pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: rgba(0, 64, 128, 0.7);
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 170, 255, 0.2);
}

.withdraw-btn,
.check-transaction-btn,
.confirm-wallet-btn,
.pay-commission-btn {
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
}

.wallet-input {
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #00aaff;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 16px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  text-shadow: 0 0 2px #fff;
}

.wallet-input::placeholder {
  color: #b0d4ff;
}

.wallet-error {
  color: #f44336;
  font-size: 14px;
  margin-top: -10px;
  text-shadow: 0 0 2px #f44336;
}

.commission-actions {
  display: flex;
  justify-content: center;
}

.withdrawal-moderation-pending p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 2px #fff;
}
@media (max-width: 600px) {
  .withdrawal-initial,
  .withdrawal-wallet-input,
  .withdrawal-commission-payment,
  .withdrawal-moderation-pending {
    padding: 15px;
    gap: 10px;
  }

  .withdraw-btn,
  .check-transaction-btn,
  .confirm-wallet-btn,
  .pay-commission-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .wallet-input {
    font-size: 14px;
  }

  .withdrawal-description p {
    font-size: 13px;
  }
}
