/* Enhanced Avatar Selection Styles */
.avatar-image-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.avatar-image-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.avatar-image-card.selected {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.avatar-image-card.coming-soon {
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.1);
    cursor: pointer;
}

.avatar-image-card.coming-soon:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
}

.avatar-image-placeholder {
    position: relative;
}

.avatar-preview-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.avatar-name {
    color: var(--bs-light);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.avatar-type {
    color: var(--bs-secondary);
    font-size: 0.75rem;
}

.avatar-selection-overlay {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #10b981;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.avatar-image-card.selected .avatar-selection-overlay {
    opacity: 1;
}

.coming-soon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f59e0b;
    color: white;
    border-radius: 50px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Voice Selection Styles */
.voice-option-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.voice-option-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.voice-option-card.selected {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.voice-option-card.coming-soon {
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.1);
    cursor: pointer;
}

.voice-option-card.coming-soon:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
}

.voice-info {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voice-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.voice-name {
    color: var(--bs-light);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.voice-description {
    color: var(--bs-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.voice-sample {
    margin-top: auto;
}

.voice-selection-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #10b981;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voice-option-card.selected .voice-selection-indicator {
    opacity: 1;
}

/* Selection Summary Styles */
.selected-combo {
    background: rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.selected-avatar {
    color: var(--bs-light);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.selected-voice {
    color: var(--bs-info);
    font-size: 0.8rem;
}

/* Demo Card Styles for Coming Soon Modal */
.demo-avatar-card, .demo-voice-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.demo-avatar-card:hover, .demo-voice-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.demo-avatar-icon, .demo-voice-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.demo-avatar-name, .demo-voice-name {
    color: var(--bs-light);
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.demo-avatar-type, .demo-voice-description {
    color: var(--bs-secondary);
    font-size: 0.85rem;
}

/* Tutorial Styles */
.tutorial-steps {
    padding: 1rem 0;
}

.tutorial-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.tutorial-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    width: 2px;
    height: 30px;
    background: rgba(59, 130, 246, 0.3);
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h6 {
    margin-bottom: 0.5rem;
}

.tutorial-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.tutorial-highlight {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.tutorial-highlight ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.tutorial-highlight li {
    margin-bottom: 0.5rem;
}

.tutorial-stats {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-value {
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.stat-label {
    color: var(--bs-secondary);
    font-size: 0.8rem;
    flex: 1;
    margin-left: 0.5rem;
}