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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== CODECRAFT ACADEMY - Terminal Design ===== */
.codecraft {
  background: #0d1117;
  color: #c9d1d9;
  min-height: 100vh;
  padding: 2rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.terminal-window {
  max-width: 1200px;
  margin: 0 auto;
  background: #161b22;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  background: #21262d;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #30363d;
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn.red { background: #ff5f56; }
.btn.yellow { background: #ffbd2e; }
.btn.green { background: #27ca3f; }

.terminal-title {
  color: #8b949e;
  font-size: 0.9rem;
}

.terminal-body {
  padding: 2rem;
}

.code-lines {
  display: flex;
  margin-bottom: 3rem;
}

.line-numbers {
  display: flex;
  flex-direction: column;
  color: #6e7681;
  font-size: 0.9rem;
  margin-right: 2rem;
  user-select: none;
}

.line-numbers span {
  height: 1.5rem;
  display: flex;
  align-items: center;
}

.code-content {
  flex: 1;
}

.code-line {
  height: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.indent { padding-left: 2rem; }
.indent-2 { padding-left: 4rem; }

.keyword { color: #ff7b72; }
.class-name { color: #7ee787; }
.property { color: #79c0ff; }
.string { color: #a5d6ff; }
.number { color: #79c0ff; }
.comment { color: #8b949e; font-style: italic; }
.bracket { color: #c9d1d9; }

.terminal-prompt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.prompt-symbol {
  color: #7ee787;
  font-weight: bold;
}

.cursor-line {
  display: flex;
  align-items: center;
}

.cursor {
  color: #7ee787;
  animation: blink 1s infinite;
}

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

.program-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.info-section h3 {
  color: #7ee787;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.tech-stack {
  list-style: none;
}

.tech-stack li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #30363d;
}

.tech-icon {
  font-size: 1.2rem;
}

.stats-code, .contact-code {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.stat-item, .contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-label, .property {
  color: #79c0ff;
}

.stat-value {
  color: #a5d6ff;
  font-weight: bold;
}
