@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&display=swap');

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

body {
  background-color: #ffffff;
  color: #2d3748;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: fixed;
  width: 100%;
  height: 100vh;
}

.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.dev-container {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.dev-window {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
  animation: slideIn 0.6s ease-out;
}

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

.terminal-header {
  background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
  padding: 0;
  border-bottom: 2px solid #e2e8f0;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  height: 45px;
  position: relative;
}

.window-controls {
  display: flex;
  gap: 8px;
  padding: 0 16px;
  align-items: center;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.control-btn.close {
  background: #ff5f57;
}

.control-btn.minimize {
  background: #ffbd2e;
}

.control-btn.maximize {
  background: #28ca42;
}

.control-btn:hover {
  transform: scale(1.15);
  filter: brightness(0.9);
}

.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9em;
  color: #667eea;
  font-weight: 600;
  font-family: 'Fira Code', monospace;
}

.dev-content {
  padding: 40px 30px;
  background: #f8f9fa;
  border-radius: 0 0 10px 10px;
  text-align: center;
}

.icon-section {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.dev-icon {
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.dev-icon svg {
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
}

.message-section h1 {
  color: #667eea;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 15px;
}

.main-message {
  color: #4a5568;
  font-size: 0.9em;
  line-height: 1.8;
  margin-bottom: 25px;
}

.status-box {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  text-align: left;
  font-family: 'Fira Code', monospace;
}

.terminal-line {
  margin: 8px 0;
  display: block;
  font-size: 0.9em;
}

.prompt {
  color: #667eea;
  margin-right: 8px;
  font-weight: 600;
}

.command {
  color: #d69e2e;
  font-weight: 500;
}

.output {
  color: #4a5568;
  padding-left: 20px;
}

.sub-message {
  color: #718096;
  font-size: 0.95em;
  line-height: 1.7;
  margin-top: 20px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  background: #667eea;
  border: 2px solid transparent;
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.action-btn.primary {
  background: #667eea;
}

.action-btn.secondary {
  background: transparent;
  border-color: #667eea;
  color: #667eea;
}

.action-btn:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.action-btn.secondary:hover {
  background: #667eea;
  color: #ffffff;
}

.action-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

.footer-hint {
  color: #718096;
  font-size: 0.9em;
  font-family: 'Inter', sans-serif;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
  .dev-content {
    padding: 30px 20px;
  }

  .dev-window {
    max-width: 95%;
  }

  .message-section h1 {
    font-size: 1.6em;
  }

  .main-message {
    font-size: 1em;
  }

  .action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-hint {
    font-size: 0.8em;
  }

  .dev-icon svg {
    width: 60px;
    height: 60px;
  }
}
