@import url('https://fonts.googleapis.com/css2?family=Inconsolata&family=Montserrat:wght@400;700&display=swap');

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

body {
  margin: 0; 
  padding: 0;
  height: 100vh;
  background: linear-gradient(135deg, #1a0a1e, #3b1423, #2e1427);
  color: #e2c4ca;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
  background: transparent;
}

.content {
  width: 90vw;
  max-width: 900px;
  max-height: 90vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  overflow: auto;
  box-sizing: border-box;
}

header {
  font-size: 3.5rem;
  font-weight: 900;
  color: #c86ca9;
  letter-spacing: 0.2em;
  text-shadow: 0 0 12px #c86ca9, 0 0 24px #a0457d;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #d89eb2aa;
  margin-bottom: 2rem;
  font-style: italic;
}

.presentation {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  color: #d7a9bf;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  user-select: none;
}

.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 700px;
  justify-content: center;
  margin-bottom: 1rem;
}

.lang-badge {
  background: #c86ca944;
  border: 1.5px solid #c86ca9;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-family: 'Inconsolata', monospace;
  color: #f7c6d1;
  box-shadow: 0 0 12px #c86ca9aa;
  transition: transform 0.3s ease;
  cursor: default;
  user-select: none;
}

.lang-badge:hover {
  transform: scale(1.2);
  box-shadow: 0 0 24px #d087adff;
}

#terminal {
  background: #1e121fdd;
  border-radius: 15px;
  box-shadow: 0 0 40px #c86ca9cc;
  width: 90vw;
  max-width: 800px;
  height: 200px;
  color: #f7c6d1;
  font-family: 'Inconsolata', monospace;
  padding: 1rem 1.5rem;
  overflow-y: auto;
  user-select: text;
  border: 2px solid #c86ca9f0;
  margin-bottom: 1rem;
  text-align: left;
  flex-shrink: 0;
}

.line {
  display: flex;
  align-items: center;
  white-space: pre-wrap;
}

.prompt {
  color: #a0457d;
  font-weight: bold;
  margin-right: 0.3rem;
  white-space: nowrap;
}

#terminal::-webkit-scrollbar {
  width: 8px;
}

#terminal::-webkit-scrollbar-thumb {
  background-color: #c86ca9cc;
  border-radius: 5px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-link {
  background-color: #a4457a;
  color: #f7c6d1;
  font-family: 'Inconsolata', monospace;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 10px #c86ca9aa;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  display: flex;
  align-items: center;
}

.btn-link i {
  margin-right: 8px;
  font-size: 1.2em;
  vertical-align: middle;
}

.btn-link:hover,
.btn-link:focus {
  background-color: #d087ad;
  box-shadow: 0 0 20px #e1a5c4;
  outline: none;
}

footer {
  position: fixed;
  bottom: 10px;
  color: #c86ca966;
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  user-select: none;
}
