/* ========== MAIN CSS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: #181818
  background-size: cover;
  image-rendering: pixelated;
  font-family: sans-serif;
}

/* ========== Center Guidelines ==========
.center-guide {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.center-guide::before,
.center-guide::after {
  content: '';
  position: absolute;
  background: red;
}

.center-guide::before {
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateX(-50%);
}

.center-guide::after {
  height: 1px;
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}

/* ========== CANVAS BACKGROUND ========== */
#space {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0;
  letter-spacing: 1px;
  z-index: 999;
}

nav a {
  color: #acacac;
  text-decoration: none;
  text-transform: none;
  font-size: 10px;
  margin: 0 20px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px #fff;
}


/* ========== LOGO ========== */
.logo {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: hueRotate 5s linear infinite;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
  z-index: 10;
}

@keyframes hueRotate {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}


/* ========== SOCIAL ICON BAR ========== */
.social-bar {
  position: fixed;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 999;
}

.social-bar a {
  font-size: 15px;
  color: #acacac;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Platform-specific hover styles */
.social-bar a:nth-child(1):hover { /* Facebook */
  color: #1877F2;
  text-shadow: 0 0 6px #1877F2, 0 0 12px #1877F2;
}
.social-bar a:nth-child(2):hover { /* Instagram */
  color: #E1306C;
  text-shadow: 0 0 6px #E1306C, 0 0 12px #E1306C;
}
.social-bar a:nth-child(3):hover { /* Twitter/X */
  color: #1DA1F2;
  text-shadow: 0 0 6px #1DA1F2, 0 0 12px #1DA1F2;
}
.social-bar a:nth-child(4):hover { /* TikTok */
  color: #69C9D0;
  text-shadow: 0 0 6px #69C9D0, 0 0 12px #69C9D0;
}
.social-bar a:nth-child(5):hover { /* Apple Music */
  color: #FA233B;
  text-shadow: 0 0 6px #FA233B, 0 0 12px #FA233B;
}
.social-bar a:nth-child(6):hover { /* Spotify */
  color: #1DB954;
  text-shadow: 0 0 6px #1DB954, 0 0 12px #1DB954;
}
.social-bar a:nth-child(7):hover { /* YouTube */
  color: #FF0000;
  text-shadow: 0 0 6px #FF0000, 0 0 12px #FF0000;
}
.social-bar a:nth-child(8):hover { /* SoundCloud */
  color: #FF5500;
  text-shadow: 0 0 6px #FF5500, 0 0 12px #FF5500;
}
