:root {
  --background: 188.6 22.6% 6.1%;
  --foreground: 180 1.7% 76.5%;
  --muted-foreground: 0 0% 55%;
  --accent: #bbf7d0;
  --border: 0 0% 55%;
}

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

html {
  scrollbar-width: thin;
  scrollbar-color: hsl(0, 0%, 55%) hsl(0, 0%, 8.5%);
}

body {
  font-family: 'Roboto Mono', monospace;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  background-image: url('images/bg.webp');
  background-repeat: repeat;
  min-height: 100svh;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3rem;
  margin: 0 auto;
  max-width: 64rem;
}

a { color: inherit; text-decoration: none; }

/* Header */
.header {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 2rem;
}

.avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.8;
}

/* Hero Section */
.hero-section {
  width: 100%;
  margin: 5rem 0;
}

.hero-name span {
  font-size: 54px;
  background: linear-gradient(to right, hsl(0, 0%, 55%), hsl(180, 1.7%, 76.5%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.hero-typing { margin: 2rem 0; height: 2.5rem; }
.hero-typing-text { font-size: 42px; font-weight: 600; }
.cursor { color: hsl(var(--border)); }
.cursor.hidden { display: none; }

.hero-tags {
  margin-bottom: 2rem;
  font-size: 26px;
  color: var(--accent);
  opacity: 0.6;
}

.hero-desc {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Two Column Layout (About + Skills) */
.two-column {
  display: flex;
  gap: 3rem;
  width: 100%;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .two-column { flex-direction: column; }
}

.two-column-left, .two-column-right {
  flex: 1;
}

/* Cards */
.card, .skills-card {
  padding: 1.5rem;
  border: 1px solid hsla(0, 0%, 55%, 0.2);
  border-radius: 0.75rem;
  height: 100%;
}

.card-title, .skills-title {
  margin-bottom: 1.5rem;
  color: var(--accent);
  opacity: 0.8;
}

.about-list {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-badge {
  border: 1px solid hsla(0, 0%, 55%, 0.3);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  width: 100%;
  margin-top: 5rem;
  text-align: center;
  padding-bottom: 2rem;
  opacity: 0.6;
  font-size: 0.875rem;
}

.fade-in { animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
