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;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  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 */
}

.buttons a:hover {
  background: rgb(255, 255, 255);
  color: #000;
}

/* 🎧 Audio Player Style */
/* 🎧 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;
}

/* Egyéb stílusok (marad minden más, amit korábban írtunk) */
#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;      /* teljes szélesség */
  height: 100vh;     /* teljes magasság */
  object-fit: cover; /* kitölti a területet, megőrzi az arányokat */
  z-index: -2;       /* háttérbe teszi a videót */
}

#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; /* jobb monospace, vagy pl. 'VT323' is lehet */
  font-size: 6vw; /* kisebb és olvashatóbb */
  letter-spacing: 0.15em;
  cursor: pointer;
  user-select: none;
  z-index: 9999;

  /* Neon glow effekt */
  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;
}

/* Pulzáló neon animáció */
@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.03);
  padding: 12px 16px;
  border-radius: 16px;
  color: white;
  margin-top: 30px;
  gap: 16px;
  border: 1px solid #333;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px #0ff2;
  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 rgb(255, 255, 255);
  box-shadow: 0 0 8px #0ff4;
}

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

.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;
  gap: 4px;
}

.presence-right .username {
  font-weight: bold;
  font-size: 1.1em;
  color: rgb(255, 255, 255);
}

#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 rgb(252, 252, 252);
  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; /* neon szín */
  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);
  }
}