body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url("hintergrund.gif") no-repeat center center fixed;
  background-size: cover;
  font-family: 'Press Start 2P', monospace;
  color: white;
  text-align: center;
}

.content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
}

.profile-box {
  background: rgba(0, 0, 0, 0.5);
  width: 50%;
  height: 90%;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px;
  gap: 30px;
}

.profile-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.profile-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.profile-border {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-border::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: conic-gradient(
    #1a0033,
    #2e006e,
    #400080,
    #6a0dad,
    #8b008b,
    #4b0082,
    #1a0033
  );
  animation: spin 12s linear infinite;
  z-index: 0;
}

.profile-pic {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  border: 4px solid black;
}

.profile-text {
  font-size: 24px;
  font-family: 'Press Start 2P', monospace;
  font-weight: normal;
  background: linear-gradient(90deg, #ff69b4, #8a2be2, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.profile-pronoun {
  font-size: 14px;
  font-family: 'Press Start 2P', monospace;
  font-weight: normal;
  background: linear-gradient(90deg, #ff69b4, #8a2be2, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
}

.divider {
  width: calc(100vw * 0.515);
  max-width: calc(100vw * 0.6);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff69b4, #8a2be2, #00bfff);
  opacity: 0.5;
  margin-top: 10px;
  margin-bottom: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .profile-box {
    width: 80%;
  }
  .divider {
    width: calc(100vw * 0.85);
    max-width: calc(100vw * 0.85);
  }
}

@media screen and (max-width: 480px) {
  .profile-box {
    width: 90%;
  }
  .divider {
    width: calc(100vw * 0.92);
    max-width: calc(100vw * 0.92);
  }
}

.reaction-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 10px;
}

.likes-section, .dislikes-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 48%;
}

.likes-title, .dislikes-title {
  font-size: 18px;
  font-family: 'Press Start 2P', monospace;
  font-weight: normal;
  background: linear-gradient(90deg, #ff69b4, #8a2be2, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.likes-list, .dislikes-list {
  font-size: 14px;
  font-family: 'Press Start 2P', monospace;
  color: white;
  opacity: 0.65;
  line-height: 1.5;
  text-align: left;
}

.divider2 {
  width: calc(100vw * 0.515);
  max-width: calc(100vw * 0.6);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff69b4, #8a2be2, #00bfff);
  opacity: 0.5;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .divider2 {
    width: calc(100vw * 0.85);
    max-width: calc(100vw * 0.85);
  }
}

@media screen and (max-width: 480px) {
  .divider2 {
    width: calc(100vw * 0.92);
    max-width: calc(100vw * 0.92);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}