/* Kapsayıcı ve Reset */
.hybrid-status-card {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  max-width: 420px;
  width: 100%;
  /* Updated to dark theme with green accents */
  background-color: #0a0a0a;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 20px;
  /* Green glow shadow for modern look */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.1);
  padding: 24px;
  margin: 20px auto;
  /* Green border */
  border: 1px solid rgba(16, 185, 129, 0.2);
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Added subtle gradient overlay */
.hybrid-status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  opacity: 0.6;
}

/* Header Alanı */
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

/* Canlı Işık Animasyonu (CSS ile yapıldığı için AMP'de çalışır) */
.live-dot-wrapper {
  position: relative;
  width: 12px;
  height: 12px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-dot {
  width: 10px;
  height: 10px;
  /* Brighter green for dark theme */
  background-color: #10b981;
  border-radius: 50%;
  z-index: 2;
  /* Added subtle glow */
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.live-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  /* Updated pulse color */
  background-color: #10b981;
  border-radius: 50%;
  opacity: 0.6;
  animation: radar-pulse 2s infinite;
  z-index: 1;
}

@keyframes radar-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.header-content {
  flex-grow: 1;
}

.title-text {
  font-size: 14px;
  font-weight: 800;
  /* Light text for dark background */
  color: #f9fafb;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.subtitle-text {
  font-size: 11px;
  /* Gray text for dark theme */
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Çizgi */
.divider {
  height: 1px;
  /* Dark divider with green tint */
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  margin: 0 -24px 16px -24px; /* Kartın kenarlarına taşsın diye */
}

/* Bilgi Satırları */
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.label {
  /* Lighter gray for labels */
  color: #9ca3af;
  font-weight: 500;
}
.value {
  /* White text for values */
  color: #f9fafb;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.domain-badge {
  font-family: "Courier New", Courier, monospace;
  /* Dark badge with green accent */
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: -0.5px;
  /* Green border for badge */
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 600;
}

.check-icon {
  /* Bright green check icon */
  color: #10b981;
  margin-left: 4px;
  font-size: 12px;
}

.status-live {
  /* Bright green status */
  color: #10b981;
  font-weight: 700;
  font-size: 13px;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Buton Alanı */
.card-footer {
  margin-top: 20px;
}

.action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Green gradient button */
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-decoration: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  /* Green glow shadow */
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), 0 2px 4px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.5);
  position: relative;
  overflow: hidden;
}

/* Added hover shine effect */
.action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn:hover {
  /* Brighter green on hover */
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5), 0 4px 8px rgba(0, 0, 0, 0.6);
}

.action-btn svg {
  margin-left: 8px;
}

.secure-note {
  font-size: 10px;
  /* Darker gray for secure note */
  color: #6b7280;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 480px) {
  .hybrid-status-card {
    border-radius: 16px;
    padding: 20px;
  }

  .info-row {
    font-size: 13px;
  }

  .domain-badge {
    font-size: 12px;
  }

  .action-btn {
    font-size: 15px;
    padding: 12px;
  }
}
