/* Reset de márgenes del navegador */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Fuente global */
:root {
    --main-color: #FFD700;           /* Amarillo dorado */
    --main-color-light: #FFE55C;     /* Amarillo claro */
    --background-color: #0A0E27;     /* Azul oscuro casi negro */
    --bg-secondary: #1A1F3A;         /* Azul oscuro secundario */
    --text-primary: #FFFFFF;          /* Blanco */
    --text-secondary: #94A3B8;       /* Gris claro */
    --accent: #FFB800;               /* Amarillo ámbar */
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--bg-secondary) 100%);
  padding: 2rem;
}

/* Terminal Window */
.terminal-window {
  background: rgba(10, 14, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 42px;
  max-width: 1000px;
  width: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* Terminal Header */
.terminal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
  color: var(--text-secondary);
  font-size: 17px;
  font-family: 'Monaco', 'Courier New', monospace;
}

/* Terminal Content */
.terminal-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.greeting {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.greeting h1 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  font-family: 'Monaco', 'Courier New', monospace;
}

.white-text {
  color: var(--text-primary);
  display: inline-block;
}

.highlight-text {
  color: var(--main-color);
  display: inline-block;
}

.prompt {
  color: var(--main-color);
  font-weight: bold;
  font-size: 26px;
  margin-right: 5px;
}

.description {
  display: flex;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 23px;
  line-height: 1.6;
  margin: 0;
  font-family: 'Monaco', 'Courier New', monospace;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 20px;
  font-family: 'Monaco', 'Courier New', monospace;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid;
  font-weight: 500;
}

.btn-primary {
  background: var(--main-color);
  color: var(--background-color);
  border-color: var(--accent);
  border-width: 1px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  color: var(--background-color);
}

.btn-primary .prompt-symbol {
  color: var(--background-color);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--main-color-light);
  border-color: var(--main-color);
}

.prompt-symbol {
  color: var(--main-color);
  font-weight: bold;
}

/* Animación Typewriter Cursor */
.cursor {
  color: var(--main-color);
  margin-left: 2px;
  font-weight: normal;
  -webkit-text-fill-color: var(--main-color) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  opacity: 1;
}

.cursor.blinking {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

/* Ocultar botones inicialmente */
.button-group {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .greeting h1 {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }

  .terminal-window {
    padding: 24px;
  }
}