.actor-select-section {
  padding: 90px 0;
  background: var(--off-white);
}

.actor-select-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.actor-select-section h2 {
  color: var(--themesecondaryclr);
}

.actor-select-section .section-subtitle {
  color: var(--gray-100);
  max-width: 650px;
  margin: 10px auto 0;
}

.actor-card {
  background: var(--plainclr);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.actor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--lightbg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--themeprimaryclr);
  transition: 0.3s;
}

.actor-card:hover .icon-box {
  background: var(--themeprimaryclr);
  color: var(--plainclr);
}

.actor-card h4 {
  color: var(--gray-200);
  margin-bottom: 5px;
}

.actor-card h6 {
  color: var(--themeprimaryclr);
  font-weight: 600;
  margin-bottom: 10px;
}

.actor-card p {
  color: var(--gray-100);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.action-btn span {
  font-weight: 600;
  color: var(--themesecondaryclr);
}/*# sourceMappingURL=multiregister.css.map */
.actor-card {
    position: relative;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.actor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
/* opacity only on content */
.card-disabled .card-content{
    opacity: 0.5;
}

/* disable clicking */
.card-disabled{
    cursor: not-allowed;
}

/* Badge Wrapper */
.badge-wrapper {
    position: absolute;
    top: 15px;
    right: 15px; /* Move to right for better balance */
    z-index: 5;
    display: flex;
    gap: 8px;
}

/* Modern Badge Style */
.theme-badge {
    background: linear-gradient(135deg, #ff6b1a, #ff8c42);
    color: #fff;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 107, 26, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Optional small pulse effect for important badges */
.theme-badge.pulse {
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 107, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0); }
}