/* Story & Frame Styles */
.frame-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 300px;
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    align-self: flex-start;
    max-width: 85%;
    position: relative;
    text-align: left;
}

.speaker-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.speaker-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #c084fc);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: white;
}

.speaker-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.emotion-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 99px;
    color: #a5b4fc;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.frame-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-color);
}

.question-card {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 2.5rem;
    border-radius: 32px;
    text-align: center;
    margin-top: 1rem;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.option-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    text-align: left;
    padding: 1.5rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-color);
    padding-left: 2rem;
}