body {
  font-family: 'Segoe UI', sans-serif;
  background: #1a0a2a;
  color: #eee;
  margin: 0;
  overflow-x: hidden;
}

section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #d3b0ff;
}

p {
  font-size: 1.2rem;
  max-width: 600px;
  color: #e0d4ff;
}

#star-canvas {
    position: fixed;      
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    pointer-events: none; 
    z-index: -1;         
}


.projects {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.project-card {
  background: #2b0f4d;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 300px;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff69b4;
}

.buttons {
  margin-top: 1rem;
}

.buttons a,
.buttons button {
  text-decoration: none;
  color: #f0d6ff;
  margin: 0 0.5rem;
  font-weight: bold;
  background: #3c1a6f;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.buttons a:hover,
.buttons button:hover {
  background: #ff69b4;
}

#contact-image {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact-image img {
  width: 300px;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#contact-image img:hover {
  transform: scale(1.2) rotate(-5deg);
  box-shadow: 0 0 20px #ff69b4;
}


#outro1 {
  min-height: auto;
  padding: 2rem;
}

#outro1 h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #d3b0ff;
}


#project-ticker {
  width: 100%;
  padding: 12.5px 0;    
  background: transparent; 
  display: flex;
  align-items: center;
  overflow: hidden;
  height: auto;          
  min-height: auto;
}

#project-ticker .project-card {
  width: auto;
  max-width: 320px;
  height: auto;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  border-radius: 12px;
  text-align: left;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

#project-ticker .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  border: 2px solid #ff69b4;
  box-shadow: 0 0 8px #ff69b444;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
}

.scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 20s linear infinite;
}

#project-ticker .project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff69b4;
}
#del-deps button {
  font-weight: bold;
  background: #3c1a6f;
  color: #f0d6ff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

#del-deps button:hover {
  background: #ff69b4;
  transform: scale(1.03);
  box-shadow: 0 0 8px #ff69b4;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
