body {

  background: #070b16;

  overflow-x: hidden;

}

.bg-animation {

  position: fixed;

  inset: 0;

  overflow: hidden;

  z-index: -1;

}

.bg-animation span {

  position: absolute;

  display: block;

  border-radius: 50%;

  filter: blur(80px);

  opacity: 0.18;

  animation:
  float 18s infinite linear;

}

.bg-animation span:nth-child(1) {

  width: 300px;
  height: 300px;

  background: #7a5cff;

  top: 10%;
  left: 5%;

}

.bg-animation span:nth-child(2) {

  width: 260px;
  height: 260px;

  background: #9d7bff;

  top: 60%;
  left: 70%;

  animation-duration: 24s;

}

.bg-animation span:nth-child(3) {

  width: 220px;
  height: 220px;

  background: #5c8dff;

  top: 30%;
  left: 80%;

  animation-duration: 30s;

}

.bg-animation span:nth-child(4) {

  width: 350px;
  height: 350px;

  background: #8a2cff;

  top: 75%;
  left: 15%;

  animation-duration: 28s;

}

@keyframes float {

  0% {

    transform:
    translateY(0px)
    translateX(0px);

  }

  50% {

    transform:
    translateY(-60px)
    translateX(40px);

  }

  100% {

    transform:
    translateY(0px)
    translateX(0px);

  }

}
@keyframes pulse {

  0% {

    opacity: 0.4;

    transform: scale(0.96);

  }

  50% {

    opacity: 1;

    transform: scale(1);

  }

  100% {

    opacity: 0.4;

    transform: scale(0.96);

  }

}

html {

  scroll-behavior: smooth;

}

.navbar {

  position: fixed;

  top: 20px;

  left: 50%;

  transform: translateX(-50%);

  width: calc(100% - 40px);

  max-width: 1200px;

  box-sizing: border-box;

  z-index: 1000;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 16px 24px;

  border-radius: 20px;

  background:
  rgba(10,10,20,0.7);

  backdrop-filter: blur(20px);

  border:
  1px solid rgba(255,255,255,0.08);

}

.nav-logo {

  font-size: 24px;

  font-weight: 800;

  color: white;

}

.nav-links {

  display: flex;

  gap: 20px;

}

.nav-links a {

  color: #cfcfcf;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;

}

.nav-links a:hover {

  color: #9d7bff;

}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: white;
}

header {
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

header p {
  color: #999;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(20px);
  transition: 0.35s;
  cursor: pointer;
}
.card:hover {

  transform:
  translateY(-8px);

  border:
  1px solid rgba(157,123,255,0.35);

  box-shadow:
  0 0 40px
  rgba(157,123,255,0.18);

}

.card h2 {
  margin-top: 0;
}

.price {
  font-size: 24px;
  margin: 10px 0;
  color: #00ff99;
}

.card ul {
  padding-left: 20px;
  color: #ccc;
}

.card input {
  width: 100%;
  padding: 15px;
  margin-top: 15px;
  border-radius: 12px;
  border: none;
  background: #1a1a1a;
  color: white;
  font-size: 16px;
}

.total {
  margin-top: 15px;
  font-size: 20px;
}

.card button {

  width: 100%;

  padding: 15px;

  margin-top: 15px;

  border: none;

  border-radius: 14px;

  background:
  linear-gradient(
    135deg,
    #7a5cff,
    #9d7bff,
    #5c8dff
  );

  background-size:
  300% 300%;

  animation:
  gradientMove 5s ease infinite;

  color: white;

  font-size: 18px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;

  box-shadow:
  0 0 25px
  rgba(122,92,255,0.35);

}
.card button:hover {

  transform:
  translateY(-3px);

  box-shadow:
  0 0 40px
  rgba(122,92,255,0.55);

}


.support {
  padding: 30px;
  text-align: center;
}

.support a {
  color: #00ff99;
  text-decoration: none;
  font-size: 20px;
}
.modal {

  position: fixed;

  inset: 0;

  background:
  rgba(0,0,0,0.7);

  backdrop-filter: blur(12px);

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 9999;

  animation:
  fadeIn 0.35s ease;

}

.modal-content {

  width: 92%;

  max-width: 430px;

  padding: 35px;

  border-radius: 28px;

  background:
  rgba(15,15,25,0.92);

  backdrop-filter: blur(30px);

  border:
  1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 0 60px
  rgba(122,92,255,0.18);

  position: relative;

  animation:
  modalShow 0.35s ease;

}

.close {

  position: absolute;

  right: 20px;
  top: 15px;

  font-size: 30px;

  color: white;

}

.modal-content h2 {

  margin-top: 0;

}

.order-info p {

  color: #ccc;

}

.modal-content input {

  width: 100%;

  padding: 16px;

  margin-top: 20px;

  border-radius: 16px;

  border:
  1px solid rgba(255,255,255,0.08);

  background:
  rgba(255,255,255,0.04);

  color: white;

  font-size: 16px;

  outline: none;

  transition: 0.3s;

}
.modal-content input:focus {

  border:
  1px solid rgba(157,123,255,0.6);

  box-shadow:
  0 0 25px
  rgba(157,123,255,0.18);

}

#payButton {

  width: 100%;

  padding: 16px;

  margin-top: 24px;

  border: none;

  border-radius: 16px;

  background:
  linear-gradient(
    135deg,
    #7a5cff,
    #9d7bff,
    #5c8dff
  );

  background-size:
  300% 300%;

  animation:
  gradientMove 5s ease infinite;

  color: white;

  font-size: 18px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;

  box-shadow:
  0 0 30px
  rgba(122,92,255,0.35);

}

.hero {

  min-height: 90vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 40px 20px;

  background:
  radial-gradient(circle at top,
  rgba(120, 70, 255, 0.25),
  transparent 40%),

  #070b16;

}

.hero-content {

  max-width: 800px;

}

.hero h1 {

  font-size: 72px;

  font-weight: 800;

  margin-bottom: 20px;

  background:
  linear-gradient(
    90deg,
    #ffffff,
    #9d7bff
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

.hero-subtitle {

  font-size: 24px;

  color: #cfcfcf;

  margin-bottom: 40px;

}

.hero-badges {

  display: flex;

  gap: 15px;

  justify-content: center;

  flex-wrap: wrap;

  margin-bottom: 40px;

}

.hero-badges span {

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  padding: 12px 18px;

  border-radius: 14px;

  color: #fff;

  font-size: 15px;

}

.hero-button {

  display: inline-block;

  padding: 18px 34px;

  border-radius: 16px;

  background:
  linear-gradient(
    135deg,
    #7a5cff,
    #9d7bff
  );

  color: white;

  text-decoration: none;

  font-weight: 700;

  font-size: 18px;

  transition: 0.3s;

  box-shadow:
  0 0 30px
  rgba(122,92,255,0.45);

}

.hero-button:hover {

  transform: translateY(-3px);

  box-shadow:
  0 0 45px
  rgba(122,92,255,0.65);

}
.statusBadge {

  display: inline-block;

  padding: 10px 16px;

  border-radius: 12px;

  font-weight: 700;

  margin-top: 10px;

  background:
  rgba(255,255,255,0.06);

  border:
  1px solid rgba(255,255,255,0.08);

  color: white;

}

.processStatus {

  background:
  rgba(255, 193, 7, 0.15);

  border:
  1px solid rgba(255, 193, 7, 0.4);

  color: #ffd54f;

}

.doneStatus {

  background:
  rgba(76, 175, 80, 0.15);

  border:
  1px solid rgba(76, 175, 80, 0.4);

  color: #81ff9b;

}

.cancelStatus {

  background:
  rgba(244, 67, 54, 0.15);

  border:
  1px solid rgba(244, 67, 54, 0.4);

  color: #ff8a80;

}

.reviews,
.faq {

  padding: 80px 20px;

}

.reviews h2,
.faq h2 {

  text-align: center;

  font-size: 40px;

  margin-bottom: 40px;

}

.review-grid {

  display: grid;

  gap: 20px;

}

.review-card {

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  border-radius: 20px;

  padding: 25px;

  backdrop-filter: blur(20px);
  transition: 0.3s;
}

.review-card:hover {

  transform:
  translateY(-6px);

  box-shadow:
  0 0 35px
  rgba(157,123,255,0.15);

}

.review-card p {

  color: #fff;

  line-height: 1.6;

}

.review-card span {

  display: block;

  margin-top: 20px;

  color: #9d7bff;

}

.faq-item {

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  border-radius: 18px;

  padding: 25px;

  margin-bottom: 20px;

}

.faq-item h3 {

  margin-top: 0;

}

.faq-item p {

  color: #bdbdbd;

}

.footer {

  margin-top: 100px;

  padding: 60px 20px;

  text-align: center;

  background:
  rgba(255,255,255,0.03);

  border-top:
  1px solid rgba(255,255,255,0.08);

}

.footer-logo {

  font-size: 34px;

  font-weight: 800;

  margin-bottom: 15px;

  background:
  linear-gradient(
    90deg,
    #ffffff,
    #9d7bff
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

.footer p {

  color: #bdbdbd;

  margin-bottom: 20px;

}

.footer a {

  color: #9d7bff;

  text-decoration: none;

  font-weight: 700;

}

.footer-copy {

  margin-top: 30px;

  color: #666;

  font-size: 14px;

}
.stats {

  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(220px,1fr));

  gap: 20px;

  padding: 60px 20px;

}

.stat-card {

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  border-radius: 20px;

  padding: 35px;

  text-align: center;

  backdrop-filter: blur(20px);

  transition: 0.3s;

}

.stat-card:hover {

  transform:
  translateY(-6px);

  box-shadow:
  0 0 35px
  rgba(157,123,255,0.15);

}

.stat-card h2 {

  font-size: 48px;

  margin: 0;

  background:
  linear-gradient(
    90deg,
    #ffffff,
    #9d7bff
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

.stat-card p {

  margin-top: 15px;

  color: #bdbdbd;

}
@keyframes gradientMove {

  0% {

    background-position:
    0% 50%;

  }

  50% {

    background-position:
    100% 50%;

  }

  100% {

    background-position:
    0% 50%;

  }

}
@keyframes modalShow {

  from {

    opacity: 0;

    transform:
    translateY(30px)
    scale(0.96);

  }

  to {

    opacity: 1;

    transform:
    translateY(0)
    scale(1);

  }

}

@keyframes fadeIn {

  from {

    opacity: 0;

  }

  to {

    opacity: 1;

  }

}
.my-orders {

  padding:
  180px 20px 80px;

}

.my-orders h2 {

  text-align: center;

  font-size: 42px;

  margin-bottom: 40px;

}

#ordersList {

  display: grid;

  gap: 20px;

}

.order-card {

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  border-radius: 20px;

  padding: 25px;

  backdrop-filter: blur(20px);

}

.order-card h3 {

  margin-top: 0;

}

.emptyOrders {

  text-align: center;

  color: #888;

}
.my-orders {

  margin-top: 140px !important;

}
.my-orders-page {

  padding-top: 160px;

  padding-left: 20px;

  padding-right: 20px;

  padding-bottom: 80px;

}
.my-orders-page {

  padding-top: 180px !important;

  padding-left: 20px;

  padding-right: 20px;

  padding-bottom: 80px;

}
.admin-link {

  display: block;

  margin-top: 20px;

  text-align: center;

  font-size: 13px;

  color: rgba(255,255,255,0.25);

  text-decoration: none;

  transition: 0.3s;

}

.admin-link:hover {

  color: #9d7bff;

}
.progressBar {

  width: 100%;

  height: 12px;

  margin-top: 15px;

  border-radius: 20px;

  overflow: hidden;

  background:
  rgba(255,255,255,0.08);

}

.progressFill {

  height: 100%;

  border-radius: 20px;

  background:
  linear-gradient(
    90deg,
    #7a5cff,
    #9d7bff,
    #5c8dff
  );

  box-shadow:
  0 0 20px
  rgba(122,92,255,0.45);

  transition: 0.5s;

}
#toastContainer {

  position: fixed;

  top: 110px;

  right: 20px;

  z-index: 99999;

  display: flex;

  flex-direction: column;

  gap: 12px;

}

.toast {

  min-width: 260px;

  padding: 16px 20px;

  border-radius: 18px;

  color: white;

  font-weight: 600;

  backdrop-filter: blur(20px);

  animation:
  toastShow 0.4s ease;

  box-shadow:
  0 0 30px
  rgba(0,0,0,0.25);

}

.toast.process {

  background:
  rgba(255,180,0,0.18);

  border:
  1px solid rgba(255,180,0,0.4);

}

.toast.done {

  background:
  rgba(0,255,120,0.16);

  border:
  1px solid rgba(0,255,120,0.35);

}

.toast.cancel {

  background:
  rgba(255,70,70,0.16);

  border:
  1px solid rgba(255,70,70,0.35);

}

@keyframes toastShow {

  from {

    opacity: 0;

    transform:
    translateX(40px);

  }

  to {

    opacity: 1;

    transform:
    translateX(0);

  }

}

.adminFilters {

  position: sticky;

  top: 20px;

  z-index: 999;

  display: flex;

  gap: 12px;

  overflow-x: auto;

  padding: 20px;

  margin-bottom: 20px;

  backdrop-filter: blur(20px);

}

.filterBtn {

  border: none;

  padding: 12px 18px;

  border-radius: 14px;

  background:
  rgba(255,255,255,0.06);

  color: white;

  cursor: pointer;

  font-weight: 700;

  transition: 0.3s;

}

.filterBtn:hover {

  background:
  rgba(157,123,255,0.2);

}

.activeFilter {

  background:
  linear-gradient(
    135deg,
    #7a5cff,
    #9d7bff
  );

}
.footer-links {

  display: flex;

  justify-content: center;

  gap: 20px;

  margin-top: 20px;

  flex-wrap: wrap;

}

.footer-links a {

  color: #bdbdbd;

  text-decoration: none;

  transition: 0.3s;

}

.footer-links a:hover {

  color: #9d7bff;

}
.telegram-support {

position: fixed;

right: 20px;

bottom: 20px;

width: 60px;

height: 60px;

border-radius: 50%;

background: linear-gradient(
135deg,
#7b5cff,
#9d7bff
);

display: flex;

align-items: center;

justify-content: center;

font-size: 30px;

color: white;

text-decoration: none;

box-shadow:
0 0 25px rgba(123,92,255,.7);

z-index: 9999;

transition: .3s;

}

.telegram-support:hover {

transform: scale(1.1);

box-shadow:
0 0 35px rgba(123,92,255,1);

}
#live-orders {

position: fixed;

left: 20px;

bottom: 20px;

z-index: 9999;

display: flex;

flex-direction: column;

gap: 10px;
max-width: 280px;
pointer-events: none;

}

.live-order {

background: rgba(15,15,25,.95);

border: 1px solid rgba(140,100,255,.3);

backdrop-filter: blur(10px);

padding: 14px 18px;

border-radius: 16px;

color: white;

font-size: 14px;

box-shadow:
0 0 25px rgba(123,92,255,.35);

animation:
slideIn .5s ease;

max-width: 260px;

}

@keyframes slideIn {

from {

opacity: 0;

transform:
translateY(30px);

}

to {

opacity: 1;

transform:
translateY(0);

}

}