/* Hero wrapper */
body .socelor-hero {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 0rem 1.5rem;
}

/* Text area */
body .socelor-hero-text {
  max-width: 460px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Ensure all hero text is light */
body .socelor-hero,
body .socelor-hero p,
body .socelor-hero h1,
body .socelor-hero button,
body .socelor-hero .socelor-speed-control label {
  color: #e0e0e0;
}

/* Wheel wrapper: center in hero */
body .socelor-wheel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
}

body .socelor-wheel {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 560px;             /* taller box */
  margin: -40px auto 0;      /* pull it up */
  transform-style: preserve-3d;
  transform: rotateY(15deg); /* your preferred angle */

}


/* Paddles: big, centered card */
.socelor-paddle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transform-origin: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.6rem 2.2rem;
  width: 80%;               /* proportional to wheel width */
  max-width: 780px;         /* so it fits inside 900px wheel */
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}

.socelor-paddle-text {
  margin: 0 0 0.25rem 0;   /* smaller bottom margin under quote */
}

/* Name text tweak */
.socelor-paddle-name {
  margin-top: 0;
  font-weight: 600;
  opacity: 0.85;
}


/* Mobile: ensure proper stacking and spacing */
@media (max-width: 768px) {
  body .socelor-hero {
    padding: 2rem 1rem 3rem;
    display: flex;
    flex-direction: column;
  }
  
  body .socelor-hero-text {
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
  }
  
  body .socelor-wheel-wrapper {
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
  }
  
  body .socelor-wheel {
    width: 100%;
    max-width: 100%;
    height: 280px;
    margin: 0 auto;
  }
  
  /* Mobile paddles: wider and shorter */
  .socelor-paddle {
    width: 88vw !important;        /* almost full viewport width */
    max-width: 420px !important;   /* cap for larger phones/tablets */
    min-width: 280px !important;   /* don't let it get too narrow */
    padding: 1rem 1.25rem !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  
  .socelor-paddle-text {
    margin-bottom: 0.5rem;
  }
  
  .socelor-paddle-name {
    font-size: 0.85rem;
  }
  
  /* Toggle button container */
  body .socelor-speed-control {
  margin-top: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 100;  /* sit above paddles */
  }
}


/* Modal overlay */
.socelor-quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.socelor-quote-modal[hidden] {
  display: none;
}

/* Modal inner box */
.socelor-quote-modal-inner {
  position: relative;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 700px;
  width: 100%;
  color: #e0e0e0;
}

/* Close button */
.socelor-quote-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #e0e0e0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.socelor-quote-close:hover {
  opacity: 1;
}

/* Person info */
.socelor-quote-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.socelor-quote-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
}

.socelor-quote-photo:empty,
.socelor-quote-photo[src=""] {
  display: none;
}

.socelor-quote-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.socelor-quote-role {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* Quote text */
.socelor-quote-full {
  font-size: 1.15rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  padding-left: 1.5rem;
}

/* Toggle button */
body .socelor-speed-control {
  margin-top: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 100;  /* sit above paddles */
}

.socelor-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #e0e0e0;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.socelor-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.socelor-toggle-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  body .socelor-speed-control {
    margin-top: 3rem;
    padding-top: 1rem;
  }
}


@media (max-width: 640px) {
  .socelor-quote-modal-inner {
    padding: 2rem 1.5rem;
  }
  
  .socelor-quote-full {
    font-size: 1.05rem;
  }
}

