/* Aura Calculator App */
.aura-content {
    padding: 0;
    background: var(--bg-dark);
}

.aura-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.aura-start,
.aura-result,
.aura-question {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
}

.aura-start {
    display: flex;
}

.aura-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
    text-align: center;
    white-space: pre;
}

.aura-subtitle {
    color: var(--text-dim);
    font-size: 0.85rem;
    text-align: center;
    max-width: 300px;
}

.aura-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.aura-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.aura-question {
    display: none;
}

.aura-progress-container {
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
}

.aura-progress-bar-bg {
    width: 100%;
    height: 6px;
    background: var(--bg-medium);
    border-radius: 3px;
    overflow: hidden;
}

.aura-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.aura-progress-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 6px;
}

.aura-question-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}

.aura-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.aura-option {
    padding: 14px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.aura-option:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
    transform: translateX(5px);
}

.aura-option .option-label {
    font-size: 0.7rem;
    color: var(--primary);
    margin-right: 8px;
}

.aura-result {
    display: none;
}

.aura-score-display {
    text-align: center;
    margin-bottom: 10px;
}

.aura-score-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: block;
    margin-bottom: 5px;
}

.aura-score-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary);
}

.aura-level {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.aura-message {
    color: var(--text-dim);
    font-size: 0.85rem;
    text-align: center;
    max-width: 280px;
}
