@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveLeft {
  0% {
    left: 100%;
  }
  100% {
    left: -200vw;
  }
}

#a-name{
  color: rgba(64, 224, 64, 1);
}

#user-client {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

#user-admin {
    background: linear-gradient(90deg, #f12711, #f5af19);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 6vh;
    text-align: center;
    text-decoration: none;
}

#user-admin .user-icon {
    width: 48px;
    height: 48px;
    position: relative;
    top: 8px;
    left: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #ffff;
}

body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  background: #222;
  overflow-x: hidden;
}

header {
  padding: 1rem 2rem;
  text-align: center;
}

.header-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  width: 50px;
  border-radius: 9999px;
}

.site-title h2 {
  font-size: 1.5rem;
  margin-left: 100px;

}

.nav-links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #fff;
  position: relative;
}

.nav-links a:hover {
  color: #f5c2e7;
}

main {
  flex-grow: 1;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  width: 100%;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 6rem;
  animation: fadeInUp 0.6s ease forwards;
}

.text-section {
  min-width: 0;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 450px;
}

h1 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #f5c2e7;
  text-align: center;
}

p {
  margin-bottom: 1rem;
}

ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

a.loser {
  color: #f5c2e7;
  text-decoration: underline;
}

a.loser:hover {
  color: #fff;
}

.userbox-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.userbox {
  border: 2px solid #ababab;
  width: 100%;
  max-width: 450px;
  background: #fd9;
  border-radius: 4px;
  overflow: hidden;
}

.userbox table {
  width: 100%;
  background: #fd9;
}

.userbox-id {
  background: #000;
  font-size: 10pt;
  color: #fff;
  padding: 8px;
  text-align: center;
  width: 60px;
  font-weight: bold;
}

.userbox-info {
  font-size: 15px;
  color: #000;
  padding: 8px;
}

.slideshow-section {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.slideshow-section h1 {
  text-align: center;
  color: #f5c2e7;
  font-size: 1.5rem;
  margin-top: 0;
}

.slide {
  display: none;
  text-align: center;
  margin: 1.5rem 0;
}

.slide.active {
  display: block;
  animation: fadeInUp 0.5s ease;
  
}

.slide img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.slide-text {
  color: #fff;
  font-style: italic;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.dots {
  text-align: center;
  margin: 1rem 0;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #555;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #f5c2e7;
}

.spotify-embed {
  margin: 1rem 0 0 0;
  border-radius: 12px;
  overflow: hidden;
}

footer {
  text-align: center;
  color: #222;

}

.floor {
  background-color: #f5c2e7;
  width: 100%;
  height: 10px;
}

#animatedBackground {
  position: relative;
  width: 25px;
  height: auto;
  left: 100%;
  bottom: -23px;
  animation: moveLeft 30s linear infinite;
}

@media (max-width: 768px) {
    html, body {
      overflow-x: hidden;
    }
    .header-container {
    justify-content: center;
  }
  
  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .text-section, .sidebar-section {
    width: 90%; 
    justify-content: center;
    align-items: center;
  }

  .userbox {
    max-width: 90%;
    margin: 0 auto;
  }

  .slideshow-section {
    width: 80%;
    max-width: 450px;
  }

  main {
    padding: 0;
  }

  h1 {
    font-size: 1.5rem;
  }
}