:root {
    --bg-body: #815bff;
    --text-color: #4120ff;
    --text-gray: white;
  }
  html, body {
    height: 100%;
    margin: 0;
    background-color: var(--bg-body);
	color: var(--text-color);
	}
    body {
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    #container {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 0;
      min-width: 450px;
      max-width: 700px;
    }
    #vinil {
      position: relative;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: black;
      box-sizing: border-box;
      background-image:
        radial-gradient(circle at center, transparent 90%, rgba(255 255 255 / 0.05) 91%, transparent 92%),
        radial-gradient(circle at center, transparent 80%, rgba(255 255 255 / 0.05) 81%, transparent 82%),
        radial-gradient(circle at center, transparent 70%, rgba(255 255 255 / 0.05) 71%, transparent 72%),
        radial-gradient(circle at center, transparent 60%, rgba(255 255 255 / 0.05) 61%, transparent 62%),
        radial-gradient(circle at center, transparent 50%, rgba(255 255 255 / 0.05) 51%, transparent 52%),
        radial-gradient(circle at center, transparent 40%, rgba(255 255 255 / 0.05) 41%, transparent 42%);
      animation: girar 30s linear infinite;
    }
    #vinil::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 36px;
      height: 36px;
      background: #222;
      border-radius: 50%;
      border: 8px solid #555;
      box-sizing: border-box;
      transform: translate(-50%, -50%);
      z-index: 15;
      box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
    }
    #profile-pic {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      object-fit: cover;
      transform: translate(-50%, -50%);
      background: #ddd;
      border: 10px solid #222;
      box-sizing: border-box;
      z-index: 20;
    }
    #menu {
      flex-grow: 1;
      user-select: none;
      color: var(--text-color);
    }
    h1 {
      margin: 0.3rem 0;
      color: var(--text-gray);
      font-size: 1.5rem;
      cursor: pointer;
      transition:
        color 0.4s ease,
        font-size 0.4s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
      opacity: 1;
      transform: translateX(0);
      position: relative;
      text-align: left;
      min-width: 250px;
      user-select: none;
    }
    h1.active {
      color: var(--text-color);
      font-size: 2.5rem;
      font-weight: 700;
    }
    h1.fade-out {
      opacity: 0;
      transform: translateX(10px);
      pointer-events: none;
    }
    h1.fade-in {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    @keyframes girar {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
.scplayerdiv{
		position: fixed;
		top: 75vh;
		left: 50%;
		transform: translateX(-50%);
		border: 3px solid #4120ff;
		width: 640px;
		height: 110px;
		box-sizing: border-box;
		border-radius: 8px;
		overflow: hidden;
		z-index: 1000;
	}
.menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  text-decoration: none;
}

.social-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #603fce;
  padding: 10px 16px;
  border-radius: 12px;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.icon {
  height: 32px;
  width: 32px;
  filter: invert(1);
}

.separator {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.4);
}
