:root {
  --main-color: #1e60ee;
  --bg-color: #000000;
  --card-bg: #1a1a1a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Code Pro', monospace;
  background-color: var(--bg-color);
  color: var(--main-color);
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

a {
  color: #ccc;
  text-decoration: none;
}

h1 {
  font-size: 3rem;
  margin-top: 20px;
  text-align: center;
}

.subtitle {
  color: #888;
  margin-bottom: 30px;
  text-align: center;
}

.center-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 30px;
}

.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--main-color);
  box-shadow: 0 0 15px var(--main-color);
  object-fit: cover;
}

.section {
  background-color: var(--card-bg);
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 0 10px #000;
}

.section h2 {
  margin-bottom: 10px;
}

.tag {
  display: inline-block;
  background-color: #2a2a2a;
  color: var(--main-color);
  padding: 4px 10px;
  margin: 3px;
  border-radius: 5px;
  font-size: 0.85rem;
}
.discord-grid, .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.discord-card, .link-card, .music-card {
  background-color: #222;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #ccc;
}
.discord-card-inner, .music-card-inner {
  display: flex;
  align-items: center;
}
.discord-pfp, .music-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid #333;
}
.discord-info, .music-info {
  margin-left: 10px;
}
.status {
  font-size: 0.75rem;
  color: #aaa;
}
.status.suspended {
  color: #f67;
}
.link-tag {
  background-color: #2a2a2a;
  color: #999;
  padding: 2px 6px;
  font-size: 0.7rem;
  margin-left: 6px;
  border-radius: 4px;
}
#enterOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  cursor: pointer;
  transition: opacity 1s ease;
}
#enterOverlay:hover {
  color: var(--main-color);
}
#enterOverlay.hidden {
  opacity: 0;
  pointer-events: none;
}
#volumeControl {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}
#backgroundVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -100;
  pointer-events: none;
}

.container {
  text-align: center;
  filter: blur(10px);
  transition: filter 1s ease;
  position: relative;
  pointer-events: none;
  z-index: 2;
}
.click-to-enter {
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.decorative-image {
  width: 80px;
  height: auto;
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 0 10px var(--main-color));
}
.flip-text {
  font-size: 2.2rem;
  animation: flip 4s infinite;
  transform-style: preserve-3d;
  text-align: center;
  margin-bottom: 10px;
  color: var(--main-color);
}

@keyframes flip {
  0%, 100% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(180deg);
  }
}

.tagline {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 20px;
  text-align: center;
}

.button {
  margin: 10px;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #1e60ee;
  color: #fff;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #1e60ee;
}
