/* D:\heyi.ir\public\css\style.css */

@font-face {
  font-family: 'Bevan';
  src: url('../fonts/Bevan-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: 'Bevan', serif, sans-serif;
  --bg-color: #030303;
  --text-color: #ffffff;
  --indigo-glow: rgba(99, 102, 241, 0.6);
  --purple-glow: rgba(139, 92, 246, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 24px;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Gradients */
.bg-ambient-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.glow-circle-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.12);
  filter: blur(120px);
  animation: rotate-glow 25s infinite linear;
}

.glow-circle-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  filter: blur(120px);
  animation: rotate-glow 25s infinite linear reverse;
}

.radial-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Header */
header {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 9999px;
  backdrop-filter: blur(12px);
}

.status-dot {
  position: relative;
  display: flex;
  height: 8px;
  width: 8px;
}

.status-dot-ping {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
  inline-size: 100%;
  block-size: 100%;
  border-radius: 9999px;
  background-color: #34d399;
  opacity: 0.75;
}

.status-dot-core {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 8px;
  width: 8px;
  background-color: #10b981;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.status-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #cbd5e1;
  text-transform: uppercase;
}

.share-btn {
  font-size: 12px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  backdrop-filter: blur(12px);
}

.share-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

/* Main Area */
main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/* Domain Display */
.domain-showcase {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.domain-wrapper {
  position: relative;
  display: inline-block;
}

.domain-back-glow {
  position: absolute;
  inset: -16px;
  border-radius: 9999px;
  background: linear-gradient(to right, #6366f1, #a855f7, #ec4899);
  opacity: 0.25;
  filter: blur(40px);
  z-index: -1;
}

.domain-title {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 70%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.35));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.domain-desc {
  font-size: 15px;
  color: #94a3b8;
  max-width: 380px;
  margin: 16px auto 0 auto;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Card */
.glass-card {
  width: 100%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 0 40px -10px rgba(99, 102, 241, 0.15);
}

/* Action Button */
.telegram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #4f46e5;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  border-radius: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.4);
  border: none;
  cursor: pointer;
}

.telegram-btn:hover {
  background: #4338ca;
  box-shadow: 0 12px 24px -8px rgba(79, 70, 229, 0.5);
}

/* Secondary controls */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: #64748b;
}

.telegram-handle-link {
  color: #818cf8;
  text-decoration: none;
  font-family: monospace;
  font-weight: 700;
  font-size: 13px;
  transition: color 0.15s ease;
}

.telegram-handle-link:hover {
  color: #a5b4fc;
}

.copy-btn {
  background: none;
  border: none;
  color: #64748b;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.copy-btn:hover {
  color: #cbd5e1;
}

.text-copied {
  color: #818cf8;
  font-weight: bold;
}

/* Footer */
footer {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #475569;
  text-transform: uppercase;
}

.footer-features {
  display: flex;
  align-items: center;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-item svg {
  color: #6366f1;
}

.copyright {
  font-family: monospace;
  letter-spacing: normal;
  text-transform: none;
  color: #334155;
}

/* Icon Styles */
.svg-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

.telegram-icon {
  transform: rotate(-15deg);
  margin-top: -1px;
}

/* Responsive */
@media (max-width: 640px) {
  body {
    padding: 30px 16px;
  }
  
  .domain-title {
    font-size: 64px;
  }
  
  .domain-desc {
    font-size: 14px;
  }
  
  header {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}
