
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #000000, #0a0010, #1f0005);
  font-family: 'Orbitron', sans-serif;
  color: #ff0080;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 40px 20px 60px;
  user-select: none;
}

.container {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 3.6rem;
  margin-bottom: 50px;
  text-shadow:
    0 0 8px #ff0080,
    0 0 20px #ff0080,
    0 0 30px #ff0080;
  letter-spacing: 3px;
  font-weight: 700;
}

/* Services Container */
.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card Style */
.service-card {
  background: rgba(0, 255, 224, 0.05);
  border: 2px solid #ff0080;
  border-radius: 18px;
  padding: 30px 25px;
  width: 280px;
  box-shadow:
    0 0 15px rgba(0, 255, 224, 0.3),
    inset 0 0 12px rgba(0, 255, 224, 0.2);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease;
  cursor: default;
  user-select: none;
}

.service-card h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 10px #ff0080;
}

.service-card p {
  font-size: 1.1rem;
  color: #a0f8e8;
  letter-spacing: 0.3px;
}

/* Clickable Cards */
.clickable {
  cursor: pointer;
}

.clickable:hover,
.clickable:focus {
  background-color: rgba(0, 255, 224, 0.12);
  box-shadow:
    0 0 25px #ff0080,
    inset 0 0 20px #ff0080;
  transform: translateY(-8px) scale(1.05);
  outline: none;
}


.clickable:active {
  transform: translateY(-4px) scale(1.02);
}

/* Timer styling */
.timer-text {
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffcc00;
  margin-top: 15px;
  letter-spacing: 0.5px;
  animation: pulse 2.5s infinite;
}

/* Contact Buttons */
.contact {
  margin-top: 70px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2.5px solid;
  user-select: none;
  letter-spacing: 0.8px;
  box-shadow: 0 0 8px transparent;
  cursor: pointer;
}

.btn.discord {
  color: #5865F2;
  border-color: #5865F2;
  background-color: transparent;
  text-shadow: 0 0 4px #5865F2;
}

.btn.discord:hover,
.btn.discord:focus {
  background-color: #5865F2;
  color: #fff;
  box-shadow:
    0 0 15px #5865F2,
    0 0 25px #5865F2;
  outline: none;
}

.btn.telegram {
  color: #0088cc;
  border-color: #0088cc;
  background-color: transparent;
  text-shadow: 0 0 4px #0088cc;
}

.btn.telegram:hover,
.btn.telegram:focus {
  background-color: #0088cc;
  color: #fff;
  box-shadow:
    0 0 15px #0088cc,
    0 0 25px #0088cc;
  outline: none;
}

/* Footer */
footer {
  margin-top: 80px;
  font-size: 0.85rem;
  color: #666;
  text-shadow: 0 0 4px #ff0080;
}

/* Animations */
.fade-in {
  animation: fadeInSmooth 1.8s ease forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUpSmooth 1.5s ease forwards;
  opacity: 0;
}

@keyframes fadeInSmooth {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpSmooth {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse Animation for Timer */
@keyframes pulse {
  0%,
  100% {
    text-shadow: 0 0 8px #ff0000;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 22px #810000;
    opacity: 0.7;
  }
}

@media (max-width: 650px) {
  .services {
    flex-direction: column;
    gap: 40px;
  }
  .service-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  h1 {
    font-size: 2.6rem;
  }
}
