/* Style Guide & Variables */
:root {
  --bg-primary: #0a0c10;
  --bg-secondary: #12161f;
  --text-primary: #f0f6fc;
  --text-secondary: #8b949e;
  --accent-primary: #58a6ff;
  --accent-glow: rgba(88, 166, 255, 0.15);
  --accent-success: #3fb950;
  --border-color: rgba(240, 246, 252, 0.1);
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(10, 12, 16, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-primary);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(63, 185, 80, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(63, 185, 80, 0.2);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-success);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Main Content Area */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.wip-container {
  position: relative;
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  background: rgba(18, 22, 31, 0.6);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.glow-effect {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  background-color: rgba(88, 166, 255, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(88, 166, 255, 0.15);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gradient-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #a5c7f7 50%, #58a6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background-color: rgba(240, 246, 252, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, var(--accent-primary), #a5c7f7);
  border-radius: 2px;
  animation: progressAnimation 3s ease-in-out infinite alternate;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  background-color: var(--bg-primary);
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--text-primary);
}

.divider {
  font-size: 0.85rem;
  color: rgba(240, 246, 252, 0.15);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(63, 185, 80, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(63, 185, 80, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(63, 185, 80, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressAnimation {
  0% {
    width: 10%;
  }
  100% {
    width: 80%;
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  html, body {
    overflow: auto;
  }
  
  .main-content {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .gradient-title {
    font-size: 2.25rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
