*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html, body {
  max-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-family: Arial, sans-serif;
  text-align: center;
  user-select: none;
  background: #0f172a;
}
.viewport-wrapper {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;       /* clip everything */
  position: absolute;
  touch-action: none;     /* stops mobile scroll bounce */
}
.container{
  width: 100%;
  height: 100%;
  background: #0f172a;
}
.bg-effect-outer-container{
  width:100%;
  height: 100%;
  position: fixed;
  top: 25vmin;
  left: -22vmin;
  z-index: -1;
  filter: blur(5vmin);
  pointer-events: none;
}
.bg-effect-inner-container{
  border-radius: 99999px;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100vmin;
  height: 100vmin;
  overflow: hidden;
  background: #fff;
  transform: scale(0.52);
  margin-bottom: 25px;
}
.bg-effect{
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  margin: auto;
  background: conic-gradient(from 0deg, #08f, #f60, #bbffa1,#00FFDE, #4c00ff, #ab2666, #09f, #00FF9C, #AF47D2, #FF204E, #00CAFF, #FFE700, #FF8F00);
  animation: spinBg 8s linear infinite;
}
@keyframes spinBg{
  0%{
    transform: rotate(0deg) scale(2);
  }100%{
    transform: rotate(1turn) scale(2);
  }
}

.logo {
  width: 100vmin;
  mask-size: 55vmin;
  /*width: 125%;*/
  height: auto;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-27%);
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: url(./images/logo-mask.svg);
  mask-image: url(./images/logo-mask.svg);
  mask-repeat: no-repeat;
  /*mask-size: 550px;*/
  user-select: none;
}

video {
  pointer-events: none;
  user-select: none;
}

.logo::-webkit-media-controls {
    display: none !important;
    opacity: 0;
}
.logo::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.mobile-options-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  left: 40px;
  display: none;
  object-fit: fill;
  cursor: pointer;
  z-index: 3;
}

.controls {
  min-width: 350px;
  position: absolute;
  left: -2%;
  top: -2%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 1%;
  padding-top: 2%;
  padding-left: 2%;
  background:#333;
  border-radius: 20px;
  border-right: 2px solid #a0a0a0;
  border-bottom: 2px solid #a0a0a0;
  z-index: 2;
}

.middle-section {
  width: 50vmin;
  height: 80vmin;
  position: absolute;
  top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  overflow: visible;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 150px;
}

.category-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  user-select: none;
  border: 2px solid transparent;
}

.category-item:hover {
  background-color: #f0f0f0;
}

.category-item.selected {
  background-color: #d1e7ff;
  border-color: #3399ff;
}

.category-item img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  object-fit: contain;
}

#wheel {
  width: 56vmin;
  height: 56vmin;
}

.wheel-container {
  position: relative;
  margin-top: 120px;
  display: flex;
  transform: rotateZ(90deg);
}

.arrow-wrapper {
  position: absolute;
  top: 66%;
  left: 50%;
  width: 0;
  height: 0;
}

/* Added for animating the black border of the arrow with the arrow */
.arrow-inner {
  position: relative;
  width: 3vmin;
  height: 3vmin;
  margin-left: -4vmin;
  margin-top: -38vmin;
  /*width: 22px;   /* width of the black border arrow */
  /*height: 22px;  /* height of the black border arrow */
  transform-origin: bottom right;
  /*margin-left: -30px;
  margin-top: -280px;*/
  transform: rotateZ(180deg);
  transition: transform 0.1s;
}

/* Black border triangle (bigger one behind) */
.arrow-border {
  position: absolute;
  /*left: -1px;
  top: -1px;*/
  left: 0;
  top: 1px;
  width: 0;
  height: 0;
  border-left: 1.5vmin solid transparent;
  border-right: 1.5vmin solid transparent;
  border-bottom: 3vmin solid black;
  /*border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 22px solid black;*/
  z-index: 1;
}

/* Red arrow triangle (on top) */
.arrow {
  position: absolute;
  /*left: 0;
  top: 0;*/
  left: 1px;  /* 1px to center inside the container */
  top: 2px;   /* 2px to align vertically */
  width: 0;
  height: 0;
  border-left: 1.4vmin solid transparent;
  border-right: 1.4vmin solid transparent;
  border-bottom: 2.8vmin solid red;
  /*border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid red;*/
  z-index: 2;
}

.arrow-inner.flick {
  animation: flickAnim 0.15s ease-in-out;
}

@keyframes flickAnim {
  0% { transform: rotateZ(180deg); }
  50% { transform: rotateZ(160deg); }
  100% { transform: rotateZ(180deg); }
}

.side-menu {
  width: 150px;
  /*background-color: rgb(43, 73, 73);*/
  background: #333;
  border-radius: 20px;
  border: 2px solid white;
  padding: 10px;
  color: white;
  z-index: 2;
  /*border-right: 1px solid #ccc;*/
}

.category-row {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  margin: 5px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.category-row:hover, .subcategory-row:hover {
  background-color: #24b1db;
}

.category-row.active, .subcategory-row.active {
  background-color: #007bff;
}

.sub-menu-container {
  width: 40%;
  position: absolute;
  top: 30px;
  right: 18px;
  display: flex;
  justify-content: center;
  border-radius: 20px;
  border: 2px solid white;
  background: #333;
}

.sub-menu-hidden { /*ADDED*/
  max-height: 0;
  opacity: 0;
  pointer-events: none;
} /*ADDED*/

.subcategory-row {
  max-width: 100%;
  margin: 5px;
  padding: 10px 12px;
  display: flex;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.category-icon {
  font-size: 1.3em;
  margin-right: 10px;
  width: 24px;
  text-align: center;
}

.category-icon img{
  width: 30px;
  height: 30px;
}

.user-controls{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #3b3b3b;
  border-radius: 20px;
  border: 2px solid white;
  overflow: hidden;
}

#numChoices {
  border: 2px solid white;
  border-radius: 10px;
  padding: 4px;
}

.radio-buttons-container{
  display: flex;
  gap: 20px;
}

.color-mode-group {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 10px;
  display: flex;
  flex-direction: column;
  color: white;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  font-family: sans-serif;
  background: #5e5e5e;
  border-radius: 20px;
  border: 2px solid white;
}

.color-mode-group .mode-label {
  font-weight: bold;
  margin-right: 0.5em;
}

#custom-inputs{
  width: 100%;
  color: white;
  background:#5e5e5e; /*#a0a0a0*/
  border-bottom: 2px solid white;
  padding: 8px;
}

#custom-inputs p{
  color: rgb(165, 250, 214);
  font-size: 20px;
  margin-bottom: 25px;
  padding: 8px;
  background: #333;
  border-radius: 20px;
  border: 2px solid cyan;
  box-shadow: 2px 2px 5px rgba(0, 225, 255, 0.5), -2px -2px 5px rgba(0, 225, 255, 0.5), -2px 2px 5px rgba(0, 225, 255, 0.5), 2px -2px 5px rgba(0, 225, 255, 0.5);
  pointer-events: none;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.3em;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  accent-color: #4caf50; /* Green style for radio */
  cursor: pointer;
}

.custom-options-container {
  display: none;
  flex-direction: column;
  padding: 10px;
  gap: 0.5em;
  margin-top: 1em;
}

.custom-option-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.custom-option-row input[type="text"] {
  flex: 1;
}

.custom-option-row input[type="color"] {
  width: 40px;
  height: 30px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}

#customColorModeOption {
  display: none;
}

.segment-editor {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  background:#3b3b3b;
  border: 2px solid white;
  border-radius: 20px;
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.segment-editor.hidden {
  display: none;
}

.segment-layout-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.segment-editor input[type="text"] {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  padding-left: 5px;
}

.segment-editor input[type="color"] {
  border-radius: 10px;
  border: 2px solid white;
  cursor: pointer;
}

.segment-editor h3 {
  color: rgb(165, 250, 214);
  padding-bottom: 10px;
}

.segment-editor label {
  padding: 10px;
}

.segment-color-options {
  display: flex;
  align-items: center;
}

.editor-buttons {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

#segmentDone {
  background:green;
  border: 2px solid white;
  border-radius: 10px;
  font-weight: bold;
  padding: 4px;
  color: white;
  cursor: pointer;
}

#segmentDone:hover {
  background:#4caf50;
}

#segmentCancel {
  background:darkred;
  border: 2px solid white;
  border-radius: 10px;
  font-weight: bold;
  padding: 4px;
  color: white;
  cursor: pointer;
}

#segmentCancel:hover {
  background: red;
}

.result-text {
  background: rgba(0,0,0,0.5);
  border-radius: 2vmin;
  border: 2px solid white;
  padding-bottom: 1vmin;
}

#result {
  width: 40vmin;
  height: 40vmin;
  font-size: 3vmin;
  /*height: 500px;
  width: 500px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15vmin;
  /*font-size: 3em;*/
  white-space: nowrap;
  border-radius: 500px;
  overflow: visible;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 0px black, -2px -2px 0px black, -2px 2px 0px black, 2px -2px 0px black;
  transform: translate(-50%, -50%) rotateZ(-90deg);
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
}

#result.show {
  opacity: 1;
  animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) rotateZ(-90deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotateZ(-90deg) scale(1.15); }
  100% { transform: translate(-50%, -50%) rotateZ(-90deg) scale(1); }
}

#result.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Fades out the result box quickly when spinning wheel again */
.result-fade-out {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeOut {
  from { opacity: 1; transform: translate(-50%, -50%) rotateZ(-90deg) scale(1); }
  to   { opacity: 0; transform: translate(-50%, -50%) rotateZ(-90deg) scale(0.95); }
}

.sound-controls {
  width: 260px;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
  /*margin-top: 5px;*/
  color: white;
}

#muteToggle{
  background: #007bff;
  color: white;
  border-radius: 10px;
  border: 2px solid #24b1db;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
}

.sound-controls input[type="range"] {
  width: 80px; /*7.7vmin*/
  cursor: pointer;
}

.hidden {
  display: none;
}

.spin-btn-inner, #spinButton, .spin-btn-glow, .spin-btn-glow-on {
  width: 10vmin;
  height: 10vmin;
  font-size: 2vmin;
}

.spin-btn-outer{
  /*width: 100px;
  height: 100px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.spin-btn-glow{
  position: absolute;
  /*width: 100px;
  height: 100px;*/
  background: lightgreen;
  border-radius: 500px;
  opacity: 1;
  z-index: 0;
  filter: blur(15px);
  /*transition: all 300ms ease;*/
  animation: spin-btn-bg-pulse 2s linear infinite;
}

@keyframes spin-btn-bg-pulse{
  0%{
    filter: blur(15px);
  }50%{
    filter: blur(0);
  }100%{
    filter: blur(15px);
  }
}

.spin-btn-glow-on{
  position: absolute;
  /*width: 100px;
  height: 100px;*/
  background: lightgreen;
  border-radius: 500px;
  opacity: 0;
  z-index: 0;
  filter: blur(15px);
  transition: all 300ms ease;
}

.spin-btn-outer:hover .spin-btn-glow-on:not(:hover){
  opacity: 1;
}

.spin-btn-outer:active:hover .spin-btn-glow-on:not(:hover){
  opacity: 0;
}

.spin-btn-outer:hover .spin-btn-glow:not(:hover){
  opacity: 0;
}

.spin-btn-inner{
  /*width: 100px;
  height: 100px;*/
  background: green;
  border: 2px solid white;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  font-weight: bold;
  /*font-size: 20px;*/
  cursor: pointer;
  color: white;
  opacity: 1;
  z-index: 1;
  animation: spin-btn-pulse 2s linear infinite;
}

@keyframes spin-btn-pulse{
  0%{
    background: #00b406;
  }50%{
    background: green;
  }100%{
    background: #00b406;
  }
}

.spin-btn-inner:hover{
  opacity: 0;
}

#spinButton {
    /*width: 100px;
    height: 100px;*/
    position: absolute;
    border: 2px solid white;
    border-radius: 500px;
    background: green;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    font-weight: bold;
    /*font-size: 20px;*/
    z-index: 2;
    opacity: 0;
    cursor: pointer;
    transition: all 300ms ease;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }

  #spinButton:hover {
    opacity: 1;
    background: #00b406;
    cursor: pointer;
  }

  #spinButton:active:hover{
    background: darkslategray;
  }

.coffee-container {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.coffee {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 5px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.coffee:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.no-endorse {
  font-size: 0.6em;
  color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 98%;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: end;
  pointer-events: none;
  user-select: none;
}

.version {
  font-size: 0.6em;
  color: rgba(255, 255, 255, 0.2);
  z-index: 20;
  width: 98%;
  height: 98%;
  display: flex;
  position: absolute;
  justify-content: end;
  align-items: end;
  pointer-events: none;
  user-select: none;
}

/*-- AD STUFF --*/
#right-ads {
  width: 300px;            /* Adjust width to match ad size */
  height: 780px;
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50px;
}

.ad-slot {
  width: 100%;
  text-align: center;
  background: #f8f8f8;
}

.top-box,
.bottom-box,
.middle-box {
  height: 250px;           /* Typical 300×250 ad box */
  margin-bottom: 10px;
}

/* Make space at bottom for banner */
#bottom-banner {
  position: fixed;
  bottom: 0;
  /*left: 0;*/
  width: calc(100% - 600px); /* Full width minus right sidebar width */
  height: 90px;              /* Change based on your banner size */
  text-align: center;
}

.ad-bottom {
    display: none !important;
  }
/*-- END AD STUFF --*/

/*--- MOBILE - NOT MOBILE!!!!!!! JUST SMALLER SCREENS!!!!!!!!!!!!!!!!!!!!!!!! MOBILE SHOULD BE 360px = 1080px!!!!!!!!!!!!!!!! ---*/
@media screen and (max-width: 1260px) {
  .container {
    /*border: 2px dashed blue;*/
    background: #0f172a;
  }
  /*-- AD STUFF --*/
  .ad-desktop {
    display: none !important;
  }

  .ad-bottom {
    display: block !important;
  }

  #bottom-banner {
    width: 100%;
  }

  #right-ads {
    display: none;
  }
  /*-- END AD STUFF --*/
  /*-- SIDE MENU / TOP MENU - CATEGORIES --*/
  .controls {
    width: 100vw;
    max-width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
  }

  .side-menu {
    background: rgb(46, 46, 46);
    position: absolute;
    top: 0px;
    width: 100%;
    height: 50px;
    border-radius: 0;
    border: none;
    border-right: none;
    border-bottom: 1px solid #a0a0a0;
    display: flex;
    flex-direction: row;
    /*padding: 10px;*/
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
  }

  .side-menu .category-row {
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    font-size: 16px;
    margin: 2px;
    cursor: pointer;
    color: white;
  }

  .side-menu .category-row:hover {
    background: #24b1db;
  }

  .side-menu .category-row.active {
    background-color: #007bff;
  }

  .sub-menu-container {
  width: 110%;
  height: 40px;
  top: 50px;
  right: -26px;
  align-items: center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid gray;
  /*transition: max-height 0.3s ease, opacity 0.3s ease; /*ADDED*/
  opacity: 1; /*ADDED*/
  animation: subMenuShow 0.4s ease;
  z-index: 2;
}

.sub-menu-hidden { /*ADDED*/
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  /*transition: max-height 0.3s ease, opacity 0.3s ease; /*ADDED*/
  animation: subMenuHide 0.4s ease;
} /*ADDED*/

@keyframes subMenuHide { /*ADDED*/
  from {
    max-height: 50px;
    opacity: 1;
  } to {
    max-height: 0;
    opacity: 0;
  }
}

@keyframes subMenuShow { /*ADDED*/
  from {
    max-height: 0;
    opacity: 0;
  } to {
    max-height: 50px;
    opacity: 1;
  }
}

#subMenu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.subcategory-row {
  max-width: 150px;
  margin: 2px;
  padding: 10px 12px;
  display: flex;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

  .category-icon {
    margin-right: 8px;
  }
  .mobile-options-btn{
    display: flex;
  }
  .middle-section {
    height: 90vmin;
  }

  .user-controls {
    width: 300px;
    height: auto;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 25px;
    align-items: center;
    border-radius: 20px;
    border: 2px solid white;
    overflow: hidden;
    opacity: 0;
    display: flex;
    z-index: 1;
    pointer-events: none;
    transition: all 300ms ease;
  }
  .user-controls.show {
    animation: option-slide-in 1s forwards;
    pointer-events: auto;
  }
  .user-controls.hiding {
    animation: option-slide-out 1s forwards;
  }
  @keyframes option-slide-in {
    0%{
      opacity: 0;
      top: -400px;
    }100%{
      opacity: 1;
      top: 72px;
    }
  }
  @keyframes option-slide-out {
    0%{
      opacity: 1;
      top: 72px;
    }100%{
      opacity: 0;
      top: -400px;
    }
  }

  /*.user-controls {
    width: 300px;
    height: auto;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 25px;
    z-index: 999;
  }
  .user-controls.show{
    display: flex;
  }*/
  .sound-controls {
    padding: 10px;
    padding-bottom: 20px;
    gap: 5px;
  }
  /*-- END TOP / SIDE MENU --*/
  .middle-section {
    position: absolute;
    top: 60px;
  }
  .logo {
    top: 30px;
  }
  .wheel-container {
    margin-top: 200px;
  }
}
@media screen and (max-width: 1080px) {

  .sub-menu-container {
    width: 110%;
    height: 40px;
    top: 50px;
    right: -26px;
    align-items: center;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid gray;
  }

  .subcategory-row {
    max-width: 100%;
    margin: 2px;
    padding: 5px 7px;
    display: flex;
    border-radius: 6px;
    font-size: 2vmin;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .user-controls {
    width: 300px;
    height: auto;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 25px;
    align-items: center;
    background: rgba(59,59,59,0.6);
    border-radius: 20px;
    border: 2px solid white;
    overflow: hidden;
    opacity: 0;
    display: flex;
    z-index: 1;
    pointer-events: none;
    transition: all 300ms ease;
  }

  /*.user-controls{
    width: 40vmin;
    flex-direction: column;
    align-items: center;
    background: rgba(59,59,59,0.6);
    border-radius: 20px;
    border: 2px solid white;
    overflow: hidden;
  }*/

  .color-mode-group {
    width: 100%;
  }

  /*.color-mode-group {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: white;
    flex-wrap: wrap;
    align-items: center;
    gap: 1em;
    font-family: sans-serif;
    background: #5e5e5e;
    border-radius: 20px;
    border: 2px solid white;
  }*/

  .color-mode-group .mode-label {
    font-weight: bold;
  }

  /*.color-mode-group {
    width: 90%;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: white;
    flex-wrap: wrap;
    align-items: center;
    gap: 1em;
    font-family: sans-serif;
    background: rgba(94,94,94,0.8);
    border-radius: 20px;
    border: 2px solid white;
  }

  .color-mode-group .mode-label {
    margin-right: auto;
    margin-left: 10px;
  }*/

  #custom-inputs{
    width: 100%;
    color: white;
    background:rgba(94,94,94,0.6); /*#a0a0a0*/
    border-bottom: 2px solid white;
    padding: 8px;
  }

  #custom-inputs p{
    color: rgb(165, 250, 214);
    font-size: 20px;
    margin-bottom: 25px;
    padding: 8px;
    background: rgba(51,51,51,0.6);
    border-radius: 20px;
    border: 2px solid cyan;
    box-shadow: 2px 2px 5px rgba(0, 225, 255, 0.5), -2px -2px 5px rgba(0, 225, 255, 0.5), -2px 2px 5px rgba(0, 225, 255, 0.5), 2px -2px 5px rgba(0, 225, 255, 0.5);
    pointer-events: none;
  }

  .radio-buttons-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: left;
    margin-left: 0;
    justify-content: center;
    gap: 15px;
  }

  .radio-option {
    align-items: flex-start;
  }
  .sound-controls {
    width: 40vmin;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px;
    gap: 10px;
    margin-bottom: 5px;
    color: white;
  }

  #muteToggle {
    background: #007bff;
    color: white;
    border-radius: 10px;
    border: 2px solid #24b1db;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
  }

  .sound-controls input[type="range"] {
    width: 7.7vmin;
    cursor: pointer;
  }
}
@media screen and (max-width: 600px) {
  
  .subcategory-row {
    font-size: 3vmin;
  }
  .user-controls{
    width: 40vmin;
    flex-direction: column;
    align-items: center;
    background: rgba(59,59,59,0.6);
    border-radius: 20px;
    border: 2px solid white;
    overflow: hidden;
  }
  .mobile-options-btn {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 10px;
  }
  #custom-inputs p {
    font-size: 2vmin;
    margin-bottom: 10px;
    padding: 8px;
  }
  #numChoices {
    width: 9vmin;
    height: 5vmin;
    font-size: 2vmin;
  }
  .numChoices {
    font-size: 2vmin;
  }
  .mode-label {
    width: 100%;
    font-size: 2vmin;
    padding-right: 0;
  }
  .radio-buttons-container {
    padding-left: 0;
  }
  .radio {
    width: 2vmin;
    height: 2vmin;
  }
  .radio-option {
    font-size: 2vmin;
  }
  .sound-controls {
    width: 100%;
  }
  .volume-label {
    font-size: 2vmin;
  }
  #volumeSlider {
    width: 30%;
  }
  #muteToggle {
    width: 28%;
    font-size: 2vmin;
  }
}

/** {
  outline: 1px solid rgba(255,0,0,0.2);
}*/