* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #0b0b12;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  background: radial-gradient(circle at top, #1e1e2f, #0b0b12 70%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
}

.background-glow {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #7c7cff, #00ffe0);
  filter: blur(180px);
  opacity: 0.35;
  position: fixed;
  inset: -300px -300px auto auto;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 32px;
  max-width: 720px;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(217, 237, 237, 0.15);
  border-right: 1px solid rgba(217, 237, 237, 0.15);
}

.logo {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #7c7cff, #00ffe0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 32px;
}

.status {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.status span {
  color: #00ffe0;
}

.info {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.75;
}

.footer {
  margin-top: 40px;
  font-size: 13px;
  opacity: 0.5;
}

.boss {
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.team-panel {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  padding: 20px;
  z-index: 2;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(217, 237, 237, 0.15);
  border-right: 1px solid rgba(217, 237, 237, 0.15);
}

.team-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  background: linear-gradient(90deg, #7c7cff, #00ffe0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.member-main {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(124, 124, 255, 0.2);
  border-radius: 10px;
}

.member-main img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.member-main .nick {
  font-weight: 700;
  font-size: 16px;
}

.social-popup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 20px;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.team-member:hover .social-popup {
  max-height: 500px;
  opacity: 1;
  transform: translateX(0);
}

.social-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(53, 53, 132, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.social-box:hover {
  background: rgba(78, 78, 172, 0.3);
}

.social-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  padding: 2px;
}

.social-box > * {
  transition: 0.2s ease;
}
.social-box:hover > * {
  transform: scale(1.1);
}

.kick-status {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kick-live {
  color: #00ff75;
}

.kick-dot {
  width: 8px;
  height: 8px;
  background: #00ff75;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff75;
}

.kick-viewers {
  opacity: 0.85;
  font-size: 13px;
}

.kick-viewers > * {
  display: inline;
}

.mc-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 16px;
  font-weight: 700;
}

.mc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00ff75;
  box-shadow: 0 0 12px #00ff75;
  animation: pulse 1.5s infinite;
}

.mc-players {
  opacity: 0.7;
  font-size: 14px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 6px #00ff75;
  }
  50% {
    box-shadow: 0 0 16px #00ff75;
  }
  100% {
    box-shadow: 0 0 6px #00ff75;
  }
}

.join-btn {
  margin-top: 12px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  color: #0b0b12;
  background: linear-gradient(90deg, #7c7cff, #00ffe0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.join-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 224, 0.6);
}

@media (max-width: 900px) {
  body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .logo {
    font-size: 32px;
  }

  .container {
    width: 90%;
    margin: 20px auto;
  }

  .team-panel {
    left: 0;
    top: 0;
    width: 90%;
    position: relative;
    transform: none;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    margin: 20px auto;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
  }

  .team-list {
    flex-direction: column;
    gap: 12px;
  }

  .team-member {
    flex-direction: column;
    width: 100%;
    gap: 6px;
  }

  .member-main {
    justify-content: flex-start;
    width: 100%;
    padding: 12px;
    gap: 12px;
  }

  .social-popup {
    position: relative;
    width: 90%;
    margin: 0 auto;
    top: 0;
    transform: translateY(0);
    max-height: none;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .social-box {
    width: 100%;
    justify-content: flex-start;
  }

  .background-glow {
    pointer-events: none;
    will-change: transform;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 32px;
  }
  .status {
    font-size: 18px;
  }
}
