/*
 * Coding Ireland proprietary interactive activity
 * Copyright (c) 2017-2026 Coding Ireland. All rights reserved.
 *
 * Part of the Coding Ireland online learning platform. Licensed for use only
 * as delivered on the platform. Copying, redistributing, or adapting this
 * file, in whole or in part, for use in any other product or service is not
 * permitted. Ref: CI-maths-sound-explorer
 */

.se-stage { display: flex; gap: 18px; align-items: stretch; flex-wrap: wrap; }
.se-scene { flex: 1 1 380px; min-width: 300px; height: auto; }
.se-side { flex: 0 1 250px; display: flex; flex-direction: column; gap: 10px; }

.se-shell { fill: #b45309; }
.se-rim { fill: none; stroke: #7c2d12; stroke-width: 5; }
.se-skin { fill: none; stroke: #fde68a; stroke-width: 7; stroke-linecap: round; }
.se-neck { stroke: #7c2d12; stroke-width: 8; stroke-linecap: round; }
.se-box { fill: #b45309; }
.se-string { fill: none; stroke: #f8fafc; stroke-width: 4; stroke-linecap: round; }
.se-string--slack { stroke: #94a3b8; stroke-width: 3; }
.se-finger { fill: #fca5a5; stroke: #b91c1c; stroke-width: 2; }
/* The spreading rings ARE the sound. Thin and fading, so they read as air moving
   rather than as solid circles sitting in the room. */
.se-wave { fill: none; stroke: #1565c0; stroke-width: 2.5; }
.se-ear { fill: #fde2e2; stroke: #b91c1c; stroke-width: 2.5; }
.se-tag { font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; fill: #334155; }
.se-tag--dim { fill: #64748b; font-weight: 600; }

.se-readouts { display: flex; gap: 8px; }
.se-read { flex: 1; background: #fff; border: 2px solid #d9e6f2; border-radius: 10px; padding: 6px 8px; text-align: center; }
.se-read-label { font-size: 11px; font-weight: 700; color: #64748b; line-height: 1.2; }
/* Words, not numbers: this is four to eight year olds, and decibels teach nothing. */
.se-read-val { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 20px; color: #163a5f; }
.se-verdict { margin: 0; font-size: 13.5px; line-height: 1.45; color: #334155; }

.se-ctl-label { display: block; font-weight: 700; font-size: 13.5px; color: #163a5f; margin-bottom: 4px; }
.se-control input[type="range"] { width: 100%; }
.se-hit, .se-tone { width: 100%; }

.se-chips { display: flex; gap: 6px; }
.se-chip {
    flex: 1; border: 2px solid #cbd5e1; background: #fff; border-radius: 999px;
    padding: 6px 4px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px;
    color: #334155; cursor: pointer;
}
.se-chip.is-on { background: #1565c0; border-color: #1565c0; color: #fff; }

.se-guided { background: #f8fafc; border-left: 4px solid #1565c0; border-radius: 8px; padding: 10px 12px; }
.se-guided-text { margin: 0 0 8px; font-size: 14px; line-height: 1.45; color: #1e293b; }
.se-guided-nav { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.se-guided-count { font-size: 12px; color: #64748b; white-space: nowrap; }

.se-your-turn {
    margin-top: 16px; background: #fffaf0; border-left: 4px solid #dd6b20;
    border-radius: 8px; padding: 10px 14px;
}
.se-your-turn-label { font-weight: 800; color: #9a3412; font-size: 13px; margin-bottom: 4px; }
#yourTurnList { margin: 0; padding-left: 18px; font-size: 14px; color: #334155; }

body.display-mode .activity-header,
.activity-container.display-mode .activity-header { display: none; }
body.display-mode .se-scene { flex-basis: 460px; }
body.display-mode .se-read-val { font-size: 26px; }
body.display-mode .se-verdict { font-size: 15px; }

@media (max-width: 560px) {
    .se-side { flex-basis: 100%; }
}
