* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 150, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 150, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.glow-accent {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.glow-accent-1 {
  top: -250px;
  left: -250px;
  background: #00ff96;
}

.glow-accent-2 {
  bottom: -250px;
  right: -250px;
  background: #0080ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

header {
  text-align: center;
  padding: 60px 0;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #00ff96 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 60px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 150, 0.3);
  box-shadow: 0 10px 40px rgba(0, 255, 150, 0.1);
}

.stat-label {
  font-size: 0.875rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  margin: 60px 0 30px;
  color: #fff;
}

.domain-grid {
  display: grid;
  gap: 20px;
}

.domain-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.domain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff96, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.domain-card:hover::before {
  opacity: 1;
}

.domain-card:hover {
  border-color: rgba(0, 255, 150, 0.2);
  transform: translateX(5px);
}

.domain-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.domain-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.domain-name:hover {
  color: #00ff96;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-up {
  background: rgba(0, 255, 150, 0.1);
  color: #00ff96;
  border: 1px solid rgba(0, 255, 150, 0.2);
}

.status-down {
  background: rgba(255, 80, 80, 0.1);
  color: #ff5050;
  border: 1px solid rgba(255, 80, 80, 0.2);
}

.status-warning {
  background: rgba(255, 200, 0, 0.1);
  color: #ffc800;
  border: 1px solid rgba(255, 200, 0, 0.2);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.status-indicator.up {
  background: #00ff96;
  box-shadow: 0 0 10px #00ff96;
}

.status-indicator.down {
  background: #ff5050;
  box-shadow: 0 0 10px #ff5050;
}

.status-indicator.warning {
  background: #ffc800;
  box-shadow: 0 0 10px #ffc800;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.domain-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 1rem;
  color: #ccc;
  font-family: "Courier New", monospace;
}

.deploy-guide {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  margin: 60px 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.deploy-guide h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: #fff;
}

.command-list {
  list-style: none;
  counter-reset: step-counter;
}

.command-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 50px;
  margin: 20px 0;
}

.command-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: rgba(0, 255, 150, 0.1);
  border: 1px solid rgba(0, 255, 150, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #00ff96;
}

code {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  color: #00ff96;
  display: inline-block;
  margin: 5px 0;
}

footer {
  text-align: center;
  padding: 60px 0 40px;
  color: #666;
  font-size: 0.875rem;
}

.refresh-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 24px;
  background: rgba(0, 255, 150, 0.1);
  border: 1px solid rgba(0, 255, 150, 0.3);
  border-radius: 8px;
  color: #00ff96;
  text-decoration: none;
  transition: all 0.3s ease;
}

.refresh-btn:hover {
  background: rgba(0, 255, 150, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .domain-info {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */