body {
  margin: 0;
  padding: 0;
  cursor: none; /* natív kurzor teljes eltüntetése */
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f0f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 10px #fff2;
}

h1 {
  margin: 15px 0 5px;
  font-size: 2em;
}

.subtitle {
  font-size: 1em;
  color: #aaa;
  margin-bottom: 20px;
}

.quote {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.glow {
  color: #fff;
  text-shadow: 0 0 5px #fff, 0 0 15px #0ff, 0 0 25px #0ff;
}

/* ───────────── GOMBOK (alsó sor) ───────────── */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.buttons a {
  display: inline-block;
  margin: 0; /* gap kezeli */
  padding: 10px 20px;
  background: #222;
  color: rgb(245, 245, 245);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  cursor: none; /* natív kurzor elrejtése gombokon, linkeken */
  box-shadow: 0 0 10px #ffffff10;
}

.buttons a:hover {
  background: rgb(255, 255, 255);
  color: #000;
  transform: translateY(-1px);
}

.buttons a:focus-visible {
  outline: 2px dashed #fff;
  outline-offset: 3px;
}

/* ───────────── 🎧 Audio Player Style ───────────── */
.music-player {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 20, 20, 0.6);
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 0 10px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255);
  backdrop-filter: blur(8px);
  z-index: 1000;
  cursor: none;
}

.music-player button {
  background: none;
  border: none;
  cursor: none;
  transition: transform 0.3s ease;
}

.music-player button:hover {
  transform: scale(1.15);
}

.music-player svg {
  width: 28px;
  height: 28px;
  stroke: rgb(247, 247, 247);
  filter: drop-shadow(0 0 4px rgb(255, 255, 255));
  transition: stroke 0.3s;
}

/* 👇 Hangerőcsúszka alapállapotban elrejtve */
#volumeSlider {
  width: 100px;
  accent-color: rgb(255, 255, 255);
  background: transparent;
  cursor: none;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 👇 Ha hover van a .music-player-en vagy a slideren: előcsúszik */
.music-player:hover #volumeSlider,
#volumeSlider:hover {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* ───────────── Háttér vászon ───────────── */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}

.glow-name {
  color: #fff;
  font-size: 2.8em;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 40px #fff;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow:
      0 0 5px rgb(255, 255, 255),
      0 0 10px rgb(255, 255, 255),
      0 0 20px rgb(255, 255, 255),
      0 0 40px rgb(255, 255, 255);
  }
  to {
    text-shadow:
      0 0 2px rgb(32, 32, 32),
      0 0 4px rgb(32, 32, 32),
      0 0 8px rgb(43, 43, 43),
      0 0 16px rgb(37, 37, 37);
  }
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

#entryScreen {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: black;
  color: #e2e2e2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 6vw;
  letter-spacing: 0.15em;
  cursor: pointer;
  user-select: none;
  z-index: 9999;
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px #ffffff,
    0 0 20px rgb(214, 214, 214),
    0 0 30px rgb(255, 255, 255),
    0 0 40px rgb(255, 255, 255);
  animation: neonPulse 2.5s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow:
      0 0 5px #ffffff,
      0 0 10px #ffffff,
      0 0 20px rgb(240, 240, 240),
      0 0 30px rgb(255, 255, 255),
      0 0 40px rgb(204, 204, 204);
  }
  to {
    text-shadow:
      0 0 10px #ffffff,
      0 0 20px #cccccc,
      0 0 30px rgb(255, 255, 255),
      0 0 40px rgb(255, 255, 255),
      0 0 50px rgb(255, 255, 255);
  }
}

#presenceCard {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: 14px;
  color: white;
  margin-top: 30px;
  gap: 14px;
  border: 1px solid #333;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px #0ff3;
  animation: fadeIn 1s ease-in;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.presence-left {
  position: relative;
}

#presenceAvatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 8px #0ff5;
}

.status-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  bottom: 3px;
  right: 3px;
  border: 2px solid #0f0f0f;
}

.status-dot.online { background-color: #43b581; }
.status-dot.dnd    { background-color: #f04747; }
.status-dot.idle   { background-color: #faa61a; }
.status-dot.offline{ background-color: #747f8d; }

.presence-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* függőlegesen középre */
  align-items: center;       /* vízszintesen középre */
  text-align: center;
  gap: 4px;
}

.presence-right .username {
  font-weight: bold;
  font-size: 1.1em;
  color: white;
}

#statusText {
  font-size: 0.9em;
  color: #ccc;
}

#songInfo {
  font-size: 0.85em;
  color: #aaa;
}

#spotifyCover {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid white;
  box-shadow: 0 0 8px #0ff5;
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

#tiltCard {
  transition: transform 0.15s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

#customCursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px #ffffff, 0 0 20px #e9e9e9, 0 0 30px #141414;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.sparkle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, white, transparent);
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
  animation: sparkle-fade 0.8s forwards;
  z-index: 9999;
}

@keyframes sparkle-fade {
  to {
    opacity: 0;
    transform: translateY(-20px) scale(0.5);
  }
}

/* háttér elemek NE fogják el a klikket */
#bgCanvas,
#bgVideo {
  pointer-events: none !important;
}

/* ───────────── SOCIAL IKONOK – csak ikon, egérre villan + emelkedik ───────────── */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
  position: relative;
  z-index: 1000;
}

.social-icons a {
  pointer-events: auto !important;   /* mindig 1 kattintás */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;                       /* nagyobb hitbox a könnyebb kattintáshoz */
  height: 48px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none;
  color: rgba(255,255,255,.8);       /* picit visszafogott fehér */
  font-size: 28px;                   /* FA ikon méret */
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  transition: transform .22s ease, text-shadow .22s ease, color .22s ease;
}

.social-icons a i { pointer-events: none; }   /* az <i> ne fogja a klikket */

.social-icons a:hover {
  transform: translateY(-3px) scale(1.12);
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 18px #fff;   /* fehér glow */
}

/* ─── Developer / Designer ikonok + tooltip ─── */
.role-icons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.role-icons .role {
  position: relative;
  font-size: 28px;
  color: #fff;
  opacity: 0.9;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.6));
  line-height: 1;
}

.role-icons .role:hover {
  transform: scale(1.18);
  opacity: 1;
}

.role-icons .role::after {
  content: attr(data-label);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,0.85);
  color: #fff;
  font-size: 0.60rem;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 8px rgba(168,85,247,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1000;
}

.role-icons .role:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.role-icons .fa-code::after,
.role-icons .fa-palette::after {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}

a, button, input, textarea, select {
  cursor: none !important;
}

.profile-section {
  text-align: center;
  margin-top: 40px;   /* kicsit lejjebb tolja */
}

.roles {
  font-size: 1.1em;
  color: #ccc;
  margin-top: 6px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-align: center;
}

.quote {
  font-size: 1.2em;
  margin-bottom: 25px;
  text-align: center;
}

