/* Custom Homepage Styles */
.custom-hero {
  min-height: calc(100vh - 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

.logo-glow {
  margin-bottom: 1.5rem;
  animation: pulse 3s ease-in-out infinite;
}

.logo-glow svg {
  color: #58a6ff;
  filter: drop-shadow(0 0 20px rgba(88, 166, 255, 0.5));
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.custom-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #f0f6fc;
  margin: 0 0 0.5rem 0;
  letter-spacing: -1px;
}

.custom-hero h1 .accent {
  background: linear-gradient(90deg, #58a6ff, #a371f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.25rem;
  color: #8b949e;
  margin: 0 0 2.5rem 0;
  font-weight: 300;
}

.stats-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-icon {
  color: #58a6ff;
  margin-bottom: 0.25rem;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #f0f6fc;
}

.stat-label {
  font-size: 0.75rem;
  color: #8b949e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #238636, #2ea043);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(35, 134, 54, 0.4);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35, 134, 54, 0.5);
  color: #ffffff;
}

.btn-login svg {
  width: 18px;
  height: 18px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(88, 166, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(163, 113, 247, 0.08) 0%, transparent 50%);
  z-index: 1;
}

/* Grid pattern overlay */
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

@media (max-width: 600px) {
  .custom-hero h1 { font-size: 2.5rem; }
  .stats-row { gap: 2rem; }
  .stat-value { font-size: 1.5rem; }
}
