/* Review Page Enhancements */
#review-home {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px; /* Space for fixed button */
    overflow-y: auto;
}

.review-visual-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 400px;
}

.level-orb {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.level-orb-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-primary);
    border-right-color: var(--accent-secondary);
    animation: spin 3s linear infinite;
    box-shadow: 0 0 20px rgba(76, 217, 192, 0.2);
}

.level-orb::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at center, rgba(76, 217, 192, 0.1), transparent 70%);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.level-content {
    z-index: 2;
    text-align: center;
}

.score-num {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(76, 217, 192, 0.3);
    line-height: 1;
    margin-bottom: 4px;
}

.score-label {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-stats {
    width: 100%;
    text-align: center;
}

.score-row {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.score-row span {
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 20px;
    margin-left: 8px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:active {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-secondary);
}

.review-actions-fixed {
    position: fixed;
    bottom: var(--nav-height);
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, var(--bg-dark) 80%, transparent);
    z-index: 50;
    display: flex;
    justify-content: center;
}

/* Updated Comment Style */
#review-comment {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: inline-block;
}
