.pixarts-nav {
  position: fixed;
  z-index: 1000;
}

:root {
  --primary-color: #f8bb86;
  --secondary-color: #2a2a2a;
  --hover-color: #f8bb86;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: "Arial", sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 150px;
}
.colored-toast.swal2-icon-success {
  background-color: #13aa52 !important;
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
  background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
  background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
  background-color: #87adbd !important;
}

.colored-toast .swal2-title {
  color: white;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}

.header {
  text-align: center;
  padding: 20px;
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 30px;
}

.category-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.category-button {
  margin: 0 10px;
  padding: 10px 20px;
  background: var(--secondary-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.category-button.selected {
  background: var(--primary-color);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.product-card,
.special-item {
  background: rgba(30, 30, 30, 0.9);
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.product-card:hover,
.special-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--primary-color);
}

.product-card.selected,
.special-item.selected {
  background: rgba(94, 129, 157, 0.5);
  border: 2px solid var(--primary-color);
}

.special-item {
  position: relative;
}

.span-price {
  display: block;
  margin-bottom: 10px;
}

.quantity-select,
.character-dropdown,
.currency-list {
  margin-top: 10px;
  padding: 8px;
  background: var(--secondary-color);
  color: white;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.payment-methods {
  margin: 30px 0;
  padding: 20px;
  background: rgba(30, 30, 30, 0.9);
  border-radius: 8px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.payment-option {
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-option:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.payment-option.selected {
  border-color: var(--primary-color);
  background: rgba(255, 68, 0, 0.2);
}

.checkout-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  padding: 20px;
  border-top: 2px solid var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-amount {
  font-size: 1.2em;
  font-weight: bold;
}

.checkout-button {
  background: var(--primary-color);
  color: white;
  border: 0;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background 0.3s;
}

.checkout-button:hover {
  background: var(--hover-color);
}

.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 10px 0 0 10px;
  border: 1px solid #333;
  border-right: 0;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid #333;
}

.social-icon.discord:hover {
  background: #7289da;
  border-color: #7289da;
}

.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icon.youtube:hover {
  background: #f00;
  border-color: #f00;
}

.social-icon.steam:hover {
  background: #171a21;
  border-color: #666;
}

.tooltip {
  position: absolute;
  right: 50px;
  background: #c7a853;
  color: #000;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.tooltip::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 4px solid #c7a853;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.social-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.social-icon:hover {
  transform: translateX(-5px);
}

.social-icon:active {
  transform: translateX(-5px) scale(0.95);
}

@media (max-width: 768px) {
  .social-float {
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    transform: none;
  }

  .social-icons {
    flex-direction: row;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    border: 1px solid #333;
    border-bottom: 0;
  }

  .tooltip {
    top: -40px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }

  .tooltip::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -4px;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #c7a853;
    border-bottom: 0;
  }

  .social-icon:hover {
    transform: translateY(-5px);
  }

  .social-icon:hover .tooltip {
    transform: translateX(-50%) translateY(0);
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  overflow-y: auto;
  padding: 20px;
}

.modal .register-content {
  width: 900px;
  max-width: 95%;
  margin: 40px auto;
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  border: 1px solid #333;
  border-radius: 4px;
  position: relative;
  padding: 30px;
}

.register-body {
  padding: 0 15px;
}

.close {
  cursor: pointer;
}

.input-holder {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-holder img {
  position: absolute;
  left: 15px;
}

.input-holder label {
  display: block;
  color: #888;
  margin-bottom: 8px;
  font-size: 14px;
  text-align: left;
}

.input-holder input,
.input-holder select {
  width: 100%;
  height: 40px;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
}

.password-input {
  position: relative;
  width: 100%;
}

.password-input input {
  padding-right: 40px;
}

.register-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.register-column {
  width: 100%;
}

.section-title {
  color: #c7a853;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left;
}

.custom-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px !important;
}

input[type="date"] {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px !important;
}

.error-message {
  color: #f44;
  font-size: 12px;
  margin-top: 5px;
  min-height: 15px;
  text-align: left;
}

.required {
  color: #f44;
  margin-right: 4px;
}

.login-input {
  border-left: 1px solid red !important;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.login-link {
  text-align: center;
  margin: 30px 0;
  padding-top: 20px;
  border-top: 1px solid #333;
}

@media (max-width: 768px) {
  .register-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modal .register-content {
    padding: 20px;
    margin: 20px auto;
  }

  .button-group {
    flex-direction: column;
  }

  .register-body {
    padding: 0;
  }
}

.modal {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modal.show {
  opacity: 1;
}

.modal .register-content {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.modal.show .register-content {
  transform: translateY(0);
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  position: relative;
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  margin: 15% auto;
  padding: 25px;
  border: 1px solid #333;
  width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin: 0 15px;
  border-bottom: 1px solid #333;
}

.modal-body {
  padding: 20px 15px;
}

.modal .input-holder {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
}

.modal .input-holder input {
  width: 100%;
  padding: 10px 40px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}

.modal .input-holder input:focus {
  border-color: #c7a853;
  outline: 0;
}

.modal .submit-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.modal .checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal .checkbox span {
  color: #888;
  font-size: 13px;
}

.modal .quicklink {
  display: block;
  text-align: center;
  color: #c7a853;
  font-size: 13px;
  margin-top: 15px;
  text-decoration: none;
}

.modal .quicklink:hover {
  color: #e5c876;
}

.modal .deco-square1 {
  position: absolute;
  width: 8px;
  height: 8px;
}

.modal .ds-1 {
  top: -4px;
  left: -4px;
}

.modal .ds-2 {
  top: -4px;
  right: -4px;
}

.modal .ds-3 {
  bottom: -4px;
  left: -4px;
}

.modal .ds-4 {
  bottom: -4px;
  right: -4px;
}

.download-content {
  width: 600px;
  max-width: 95%;
  margin: 40px auto;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.download-card {
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  border: 1px solid #333;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.download-card:hover {
  transform: translateY(-5px);
  border-color: #c7a853;
  box-shadow: 0 5px 15px rgba(199, 168, 83, 0.1);
}

.download-card::before,
.download-card::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-image: url("./img/decoration-square-4x4.png");
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.download-card:hover::before,
.download-card:hover::after {
  opacity: 1;
}

.download-card::before {
  top: -4px;
  left: -4px;
}

.download-card::after {
  top: -4px;
  right: -4px;
}

.download-icon {
  margin-bottom: 15px;
}

.download-icon img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.download-card:hover .download-icon img {
  transform: scale(1.1);
}

.download-divider {
  width: 80%;
  height: 1px;
  background: #333;
  margin: 15px auto;
}

.download-card h3 {
  color: #fff;
  font-size: 21px;
  margin: 0;
  transition: color 0.3s ease;
}

.download-card:hover h3 {
  color: #c7a853;
}

@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .download-card {
    padding: 15px;
  }
}

.modal {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modal.show {
  opacity: 1;
}

.modal .download-content {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.modal.show .download-content {
  transform: translateY(0);
  opacity: 1;
}

.success {
  color: #13aa52;
}
.pending {
  color: #ff8a00;
}
.failed {
  color: #ac2727;
}
.slideshow-container {
  position: relative;
  max-width: 610px;
  margin: auto;
}

.slide {
  display: none;
}

.fade {
  animation: fadeEffect 4.5s ease-in-out infinite;
}

@keyframes fadeEffect {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.modal-slideshow {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.swal-toast-container {
  z-index: 9999;
}

.modal-slideshow-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  height: auto;
}

#caption {
  color: #ccc;
  font-size: 20px;
  padding: 10px 0;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.slide img {
  width: 100%;
  height: 343px;
  object-fit: cover;
  cursor: pointer;
}
