body {
  margin: 0;
  padding: 0;
  background: url("assets/background.png") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.hub-wrapper {
  margin-top: 80px;
  text-align: center;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00ff99;
  box-shadow: 0 0 20px #00ff99;
}

/* HEADER */
.jayway-header {
  font-family: "Irish Grover", cursive;
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: black;
  opacity: 0;
  animation: fadeIn 1.6s ease-out forwards;
  text-shadow:
    -2px -2px 0 white,
     2px -2px 0 white,
    -2px  2px 0 white,
     2px  2px 0 white;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.welcome-text {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: black;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

/* STATUS BUTTON WRAPPER */
.status-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}

/* UIverse Button Base */
.radio-input {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 150px;
  height: 50px;
  cursor: default;
}

.radio-input .input {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.radio-input .span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #323232;
  border-radius: 10px;
}

/* BUTTON LABEL TEXT */
.offline-btn .span::before {
  content: 'Offline';
}

.live-btn .span::before {
  content: 'Live';
}

/* UIverse Inner Styling */
.radio-input .span::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 8px;
  background: #666666;
  box-shadow: inset -6px -6px 12px #2c2c2c,
              inset 6px 6px 12px #a0a0a0;
  color: #323232;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PRESSED STATE */
.input:checked + .span::before {
  color: #fff;
  background: #666666;
  box-shadow: inset 6px 6px 12px #2c2c2c,
              inset -6px -6px 12px #a0a0a0;
}

/* DOT INDICATOR (default red) */
.radio-input .span::after {
  content: '';
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: red;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  box-shadow: 0 0 6px #ff0000;
}

/* DOT TURNS GREEN WHEN LIVE */
#liveToggle:checked + .span::after {
  background: #00ff00;
  box-shadow: 0 0 6px #00ff00;
}

/* SOCIAL BAR */
.social-bar {
  width: 100%;
  margin: 40px auto 0 auto;
  overflow: hidden;
  padding: 10px 0;
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 30px;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.15);
}

.row {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
}

.row-right {
  animation: scroll-right 15s linear infinite;
}

.row-left {
  animation: scroll-left 18s linear infinite;
}

@keyframes scroll-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* MOBILE */
@media (max-width: 600px) {
  .icon {
    width: 50px;
    height: 50px;
    margin: 0 20px;
  }

  .jayway-header {
    font-size: 36px;
  }
}
.live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 999px;
  background: #00ff6a;
  color: #000;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  box-shadow: 0 0 15px #00ff6a;
}
