/* LOGO */
.logo {
  width: clamp(140px, 20vw, 260px);
  filter: drop-shadow(0 0 20px rgba(255, 0, 204, 0.4));
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  color: white;
  box-shadow: 0 0 25px rgba(255, 0, 204, 0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 0, 204, 0.6);
}

/* SMALL BUTTON */
.btn-small {
  margin-top: 20px;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 6px;

  background: linear-gradient(90deg, #ff00cc, #3333ff);
  color: white;
  text-decoration: none;

  align-self: center;
  transition: 0.3s;
}

.btn-small:hover {
  opacity: 0.85;
  box-shadow: 0 0 15px rgba(255, 0, 200, 0.3);
}

/* CARD */
.card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(51, 51, 255, 0.25);
  border-color: #3333ff;
}

.card-body {
  flex-grow: 1;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

/* TAGS */
.tags {
  margin-top: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tags span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}

/* SKILLS */
.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.skill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.skill:hover {
  border-color: #ff00cc;
}

/* ABOUT */
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.about-list li {
  background: rgba(255,255,255,0.05);
  padding: 8px 14px;
  border-radius: 999px;
}
