@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --accent-color: #8b5cf6;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #0a0a0a, #000000);
}

/* GWIAZDKI W TLE */
#stars div {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.4;
  animation: blink 3s infinite ease-in-out;
}

@keyframes blink {
  0%,100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* KARTA */
.card {
  position: relative;
  width: 350px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(15,15,15,0.9);
  box-shadow: 0 0 25px var(--accent-color);
  text-align: center;
}

/* AVATAR */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(255,255,255,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent-color);
}

/* NICK */
.nick {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--accent-color);
}

/* STATUS POD NICKIEM */
.status-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 4px;
}

/* SOCIAL MEDIA */
.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.socials a {
  position: relative;
  display: inline-block;
}

.socials a img.social-btn {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s, filter 0.2s;
}

.socials a img.social-btn:hover {
  transform: scale(1.3);
  filter: brightness(0) invert(0.6) sepia(1) hue-rotate(260deg) saturate(5);
}

.socials a .tooltip {
  visibility: hidden;
  background-color: rgba(0,0,0,0.85);
  color: #fff;
  text-align: center;
  padding: 4px 8px;
  border-radius: 6px;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}

.socials a:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* PROJEKTY */
.project {
  background: rgba(200, 200, 200, 0.05);
  border-radius: 12px;
  margin: 10px 0;
  padding: 12px;
  transition: background 0.3s, border 0.3s;
  text-align: left;
}

.project:hover {
  background: rgba(139,92,246,0.15);
}

.project h3 {
  margin: 0;
  font-size: 1.1rem;
}

.project p {
  margin: 4px 0 6px;
  font-size: 0.9rem;
  color: #cccccc;
}

.project a {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.2s;
}

.project a:hover {
  color: #ffffff;
}

/* STATUS POD NICKIEM */
.status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1rem;
  margin-top: 4px;
}

.discord-logo {
  width: 0.85rem; /* mniejsze logo */
  height: 0.85rem;
  object-fit: contain;
}

.status-text {
  font-weight: 600; /* grubszy tekst */
  line-height: 1rem;
}

/* AKTYWNOŚĆ / W CO GRAM */
.activity-line {
  text-align: center;
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 2px;
}


