43c8f9d49a
Co-authored-by: Cursor <cursoragent@cursor.com>
3849 lines
136 KiB
HTML
3849 lines
136 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="th">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<meta http-equiv="Cache-Control" content="no-store, max-age=0">
|
||
<title>เล่น — Game</title>
|
||
<!-- คลาส embed ต้องมีก่อน first paint — ถ้ารอ play.js ท้าย body จะ layout รอบแรกผิด (แคนวาสชิดซ้ายบน / stack สูงไม่เต็ม) -->
|
||
<script>
|
||
(function () {
|
||
try {
|
||
var q = typeof location !== 'undefined' && location.search ? location.search : '';
|
||
if (q.indexOf('preview=1') !== -1 && q.indexOf('editorEmbed=1') !== -1) {
|
||
document.documentElement.classList.add('play-preview-editor-embed');
|
||
}
|
||
document.documentElement.classList.add('play-hide-top-chrome');
|
||
} catch (e) { /* ignore */ }
|
||
})();
|
||
</script>
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Share+Tech+Mono&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="css/style.css?v=20260506-stack-tower-cover">
|
||
<style>
|
||
html, body {
|
||
height: 100%;
|
||
width: 100%;
|
||
margin: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
body { min-height: 100dvh; }
|
||
/* ทุกเกม — ซ่อนเฉพาะแถบห้องบน (ออกจากห้อง + ชื่อห้อง); คง SCORE/TIME/หน้าผู้เล่นใน #play-cyber-hud */
|
||
html.play-hide-top-chrome .game-header {
|
||
display: none !important;
|
||
visibility: hidden !important;
|
||
pointer-events: none !important;
|
||
}
|
||
html.play-hide-top-chrome .play-canvas-stack {
|
||
margin-top: 0;
|
||
}
|
||
.game-wrap {
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
}
|
||
/* พรีวิว editor embed — ห้าม display:flex บน <html> (จะทำให้ <head> กับ <body> เป็น flex items คู่กัน → ความสูง body/เกมคำนวณผิด แคนวาสชิดซ้ายบน แต่ stack ยังเต็มจอ) */
|
||
html.play-preview-editor-embed {
|
||
width: 100%;
|
||
height: 100%;
|
||
min-height: 100vh;
|
||
min-height: 100dvh;
|
||
box-sizing: border-box;
|
||
display: block;
|
||
}
|
||
html.play-preview-editor-embed body {
|
||
width: 100%;
|
||
height: 100%;
|
||
margin: 0;
|
||
box-sizing: border-box;
|
||
min-height: 100vh;
|
||
min-height: 100dvh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
html.play-preview-editor-embed .game-wrap {
|
||
flex: 1 1 auto;
|
||
min-height: 0;
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
position: relative;
|
||
}
|
||
html.play-preview-editor-embed .play-canvas-stack {
|
||
flex: 1 1 0% !important;
|
||
min-height: 0 !important;
|
||
min-width: 0 !important;
|
||
width: 100%;
|
||
display: flex !important;
|
||
flex-direction: column !important;
|
||
position: relative;
|
||
}
|
||
html.play-preview-editor-embed #play-canvas-stage.play-canvas-stage {
|
||
flex: 1 1 0% !important;
|
||
min-height: 0 !important;
|
||
min-width: 0 !important;
|
||
width: 100%;
|
||
display: flex !important;
|
||
align-items: center !important;
|
||
justify-content: center !important;
|
||
}
|
||
html.play-preview-editor-embed #play-canvas-stage #game-canvas {
|
||
align-self: center !important;
|
||
}
|
||
html.play-preview-editor-embed .version-tag {
|
||
display: none !important;
|
||
}
|
||
.sr-only {
|
||
position: absolute !important;
|
||
width: 1px !important;
|
||
height: 1px !important;
|
||
padding: 0 !important;
|
||
margin: -1px !important;
|
||
overflow: hidden !important;
|
||
clip: rect(0, 0, 0, 0) !important;
|
||
white-space: nowrap !important;
|
||
border: 0 !important;
|
||
}
|
||
.play-canvas-stack {
|
||
position: relative;
|
||
flex: 1 1 auto;
|
||
min-height: 0;
|
||
min-width: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
/* พื้นที่เต็มแถวแล้วจัดแคนวาสกลาง (กันจอใหญ่/iframe แล้วแคนวาสเล็กหลุดมุม) — ชนะ #game-canvas ใน style.css */
|
||
#play-canvas-stage.play-canvas-stage {
|
||
position: relative;
|
||
flex: 1 1 auto;
|
||
min-height: 0;
|
||
min-width: 0;
|
||
width: 100%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
box-sizing: border-box;
|
||
}
|
||
#play-canvas-stage #game-canvas {
|
||
flex: none;
|
||
display: block;
|
||
width: auto;
|
||
height: auto;
|
||
max-width: 100%;
|
||
max-height: 100%;
|
||
min-width: 0;
|
||
min-height: 0;
|
||
touch-action: none;
|
||
image-rendering: pixelated;
|
||
image-rendering: crisp-edges;
|
||
}
|
||
/* Stack Tower (mnn93hpi): แคนวาสบัฟเฟอร์ 16:9 — object-fit: cover เติม stage ไม่ให้แถบดำ (contain เคยทำขอบว่าง) */
|
||
html.play-stack-tower-pixel-canvas #play-canvas-stage.play-canvas-stage {
|
||
position: relative;
|
||
min-height: 0;
|
||
}
|
||
html.play-stack-tower-pixel-canvas #play-canvas-stage #game-canvas {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100% !important;
|
||
height: 100% !important;
|
||
max-width: none;
|
||
max-height: none;
|
||
/* contain ทำให้บัฟเฟอร์ 16:9 ถูกย่อกลาง stage — ขอบบน/ล่างหรือซ้าย/ขวาว่างดำเหมือนจอเสีย; cover เติมเต็ม stage (อาจ crop ขอบเล็กน้อย) */
|
||
object-fit: cover;
|
||
object-position: center center;
|
||
touch-action: none;
|
||
image-rendering: pixelated;
|
||
image-rendering: crisp-edges;
|
||
}
|
||
html.play-preview-editor-embed.play-stack-tower-pixel-canvas #play-canvas-stage #game-canvas {
|
||
align-self: stretch !important;
|
||
}
|
||
/* Stack Tower: portrait มุมขวา (DOM) — โฟกัสประมาณคอขึ้น */
|
||
html.play-stack-tower-pixel-canvas .play-cyber-self-frame {
|
||
overflow: hidden;
|
||
}
|
||
html.play-stack-tower-pixel-canvas .play-cyber-self-frame img#play-cyber-portrait-img {
|
||
width: 72px;
|
||
height: 96px;
|
||
object-fit: cover;
|
||
object-position: center 2%;
|
||
margin: -22px 0 0 0;
|
||
}
|
||
html.play-stack-tower-pixel-canvas .play-cyber-self {
|
||
top: max(44px, calc(env(safe-area-inset-top) + 30px)) !important;
|
||
}
|
||
/* หลังกดรับหลักฐานในหน้าสรุป — BG ดำ alpha ทั้งจอ + timeup ติดโซนโต๊ะเหมือน #quiz-map-question-panel */
|
||
#quiz-carry-timeup-desk-layer {
|
||
position: absolute;
|
||
inset: 0;
|
||
z-index: 65;
|
||
pointer-events: none;
|
||
box-sizing: border-box;
|
||
}
|
||
/* หมดเวลาตอบรอบคำถาม — กด «ข้อถัดไป» ได้ (กัน pointer ทะลุไปเกม) */
|
||
#quiz-carry-timeup-desk-layer.qc-timeup-desk--interactive {
|
||
pointer-events: auto;
|
||
}
|
||
#quiz-carry-timeup-desk-layer.qc-timeup-desk--interactive .qc-timeup-dim {
|
||
pointer-events: auto;
|
||
}
|
||
#quiz-carry-timeup-desk-layer.qc-timeup-desk--interactive .qc-timeup-desk-anchor {
|
||
pointer-events: auto;
|
||
}
|
||
#quiz-carry-timeup-desk-layer.is-hidden {
|
||
display: none !important;
|
||
}
|
||
.qc-timeup-dim {
|
||
position: absolute;
|
||
inset: 0;
|
||
z-index: 0;
|
||
background: rgba(0, 0, 0, 0.58);
|
||
pointer-events: none;
|
||
}
|
||
.qc-timeup-desk-anchor {
|
||
position: absolute;
|
||
z-index: 1;
|
||
box-sizing: border-box;
|
||
padding: clamp(6px, 1.5vw, 14px);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
text-align: center;
|
||
overflow: visible;
|
||
pointer-events: none;
|
||
}
|
||
/* หมดเวลาตอบรอบคำถาม — ซ่อนข้อความคำถามใต้ TIME'S UP */
|
||
html.quiz-carry-answer-timeup-active #quiz-map-question-text,
|
||
html.quiz-carry-answer-timeup-active #quiz-map-question-kicker,
|
||
html.quiz-carry-answer-timeup-active .quiz-map-q-feedback-icon,
|
||
html.quiz-carry-answer-timeup-active #quiz-map-q-feedback-score-wrap,
|
||
html.quiz-carry-answer-timeup-active #quiz-game-question,
|
||
html.quiz-carry-answer-timeup-active #quiz-carry-embed-q-strip,
|
||
html.quiz-carry-answer-timeup-active #quiz-carry-embed-q-strip-text {
|
||
visibility: hidden !important;
|
||
opacity: 0 !important;
|
||
pointer-events: none !important;
|
||
}
|
||
.qc-timeup-txt-img {
|
||
width: min(94%, 520px);
|
||
max-width: 100%;
|
||
height: auto;
|
||
object-fit: contain;
|
||
display: block;
|
||
filter: drop-shadow(0 10px 36px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 20px rgba(255, 60, 80, 0.15));
|
||
}
|
||
/* หลัง timeup 5s — mock จบ: result-complete / result-gameover เต็มพื้นที่แคนวาส */
|
||
#quiz-carry-result-end-layer {
|
||
position: absolute;
|
||
inset: 0;
|
||
z-index: 66;
|
||
pointer-events: none;
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
#quiz-carry-result-end-layer.is-hidden {
|
||
display: none !important;
|
||
}
|
||
.qc-result-end-dim {
|
||
position: absolute;
|
||
inset: 0;
|
||
z-index: 0;
|
||
background: rgba(0, 0, 0, 0.62);
|
||
pointer-events: none;
|
||
}
|
||
.qc-result-end-img {
|
||
position: relative;
|
||
z-index: 1;
|
||
width: min(96vw, 920px);
|
||
max-height: min(88vh, 640px);
|
||
height: auto;
|
||
object-fit: contain;
|
||
display: block;
|
||
pointer-events: none;
|
||
filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.7));
|
||
}
|
||
/* Quiz carry — ปุ่ม GRAB มุมขวาล่าง (เทียบ F) · mockup ≈ 10–12% ความสูงจอ */
|
||
#quiz-carry-grab-btn {
|
||
position: absolute;
|
||
right: max(10px, env(safe-area-inset-right, 0px));
|
||
bottom: max(10px, env(safe-area-inset-bottom, 0px));
|
||
z-index: 60;
|
||
width: min(12vh, 13vw, 168px);
|
||
height: min(12vh, 13vw, 168px);
|
||
padding: 0;
|
||
margin: 0;
|
||
border: none;
|
||
border-radius: 50%;
|
||
background: transparent;
|
||
cursor: default;
|
||
opacity: 0.38;
|
||
transition: opacity 0.2s ease, transform 0.15s ease;
|
||
touch-action: manipulation;
|
||
-webkit-tap-highlight-color: transparent;
|
||
box-shadow: none;
|
||
}
|
||
#quiz-carry-grab-btn.is-hidden {
|
||
display: none !important;
|
||
}
|
||
#quiz-carry-grab-btn.quiz-carry-grab-btn--active {
|
||
opacity: 1;
|
||
cursor: pointer;
|
||
}
|
||
#quiz-carry-grab-btn.quiz-carry-grab-btn--active:active {
|
||
transform: scale(0.96);
|
||
}
|
||
#quiz-carry-grab-btn.quiz-carry-grab-btn--place.quiz-carry-grab-btn--active {
|
||
filter: drop-shadow(0 0 10px rgba(94, 234, 255, 0.45));
|
||
}
|
||
#quiz-carry-grab-btn img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: contain;
|
||
display: block;
|
||
pointer-events: none;
|
||
user-select: none;
|
||
}
|
||
/* Last Light (mno9kb07) — ปุ่มกระโดดมุมขวาล่าง · เทียบ Space / W / ↑ */
|
||
#gauntlet-crown-jump-btn {
|
||
position: absolute;
|
||
right: max(10px, env(safe-area-inset-right, 0px));
|
||
bottom: max(10px, env(safe-area-inset-bottom, 0px));
|
||
z-index: 59;
|
||
width: min(14vh, 16vw, 200px);
|
||
height: min(14vh, 16vw, 200px);
|
||
padding: 0;
|
||
margin: 0;
|
||
border: none;
|
||
border-radius: 50%;
|
||
background: transparent;
|
||
cursor: pointer;
|
||
opacity: 1;
|
||
transition: transform 0.15s ease, filter 0.15s ease;
|
||
touch-action: manipulation;
|
||
-webkit-tap-highlight-color: transparent;
|
||
box-shadow: none;
|
||
filter: drop-shadow(0 0 12px rgba(94, 234, 255, 0.35));
|
||
}
|
||
#gauntlet-crown-jump-btn.is-hidden {
|
||
display: none !important;
|
||
}
|
||
#gauntlet-crown-jump-btn:active {
|
||
transform: scale(0.96);
|
||
}
|
||
#gauntlet-crown-jump-btn img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: contain;
|
||
display: block;
|
||
pointer-events: none;
|
||
user-select: none;
|
||
}
|
||
/* Stack Tower (mnn93hpi) — ปุ่มปล่อยบล็อก มุมขวาล่าง · เทียบ Space / Enter */
|
||
#stack-tower-drop-btn {
|
||
position: absolute;
|
||
right: max(10px, env(safe-area-inset-right, 0px));
|
||
bottom: max(10px, env(safe-area-inset-bottom, 0px));
|
||
z-index: 60;
|
||
width: min(14vh, 16vw, 200px);
|
||
height: min(14vh, 16vw, 200px);
|
||
padding: 0;
|
||
margin: 0;
|
||
border: none;
|
||
border-radius: 50%;
|
||
background: transparent;
|
||
cursor: pointer;
|
||
opacity: 0.4;
|
||
transition: transform 0.15s ease, opacity 0.2s ease, filter 0.15s ease;
|
||
touch-action: manipulation;
|
||
-webkit-tap-highlight-color: transparent;
|
||
box-shadow: none;
|
||
filter: drop-shadow(0 0 14px rgba(187, 100, 255, 0.5));
|
||
}
|
||
#stack-tower-drop-btn.is-hidden {
|
||
display: none !important;
|
||
}
|
||
#stack-tower-drop-btn.stack-tower-drop-btn--active {
|
||
opacity: 1;
|
||
cursor: pointer;
|
||
}
|
||
#stack-tower-drop-btn.stack-tower-drop-btn--active:active {
|
||
transform: scale(0.96);
|
||
}
|
||
#stack-tower-drop-btn img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: contain;
|
||
display: block;
|
||
pointer-events: none;
|
||
user-select: none;
|
||
}
|
||
#quiz-game-overlay {
|
||
position: fixed;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
bottom: max(12px, env(safe-area-inset-bottom));
|
||
z-index: 650;
|
||
max-width: min(96vw, 520px);
|
||
width: 100%;
|
||
pointer-events: none;
|
||
}
|
||
#quiz-game-overlay.is-hidden { display: none !important; }
|
||
.quiz-game-inner {
|
||
background: rgba(12, 14, 28, 0.92);
|
||
border: 1px solid rgba(122, 162, 247, 0.45);
|
||
border-radius: 14px;
|
||
padding: 0.65rem 1rem 0.75rem;
|
||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
|
||
backdrop-filter: blur(10px);
|
||
}
|
||
.quiz-game-phase {
|
||
font-size: 0.72rem;
|
||
font-weight: 700;
|
||
letter-spacing: 0.06em;
|
||
text-transform: uppercase;
|
||
color: #7aa2f7;
|
||
margin-bottom: 0.35rem;
|
||
}
|
||
.quiz-game-q {
|
||
margin: 0 0 0.45rem;
|
||
font-size: clamp(0.95rem, 3vw, 1.1rem);
|
||
line-height: 1.45;
|
||
color: #e2e8f0;
|
||
font-weight: 600;
|
||
white-space: pre-line;
|
||
}
|
||
.quiz-game-timer {
|
||
font-variant-numeric: tabular-nums;
|
||
font-size: 1.35rem;
|
||
font-weight: 800;
|
||
color: #9ece6a;
|
||
text-shadow: 0 0 12px rgba(158, 206, 106, 0.35);
|
||
}
|
||
.quiz-play-legend {
|
||
margin: 0;
|
||
font-size: 0.72rem;
|
||
line-height: 1.4;
|
||
color: #a9b1d6;
|
||
}
|
||
#quiz-map-question-panel {
|
||
position: absolute;
|
||
z-index: 2;
|
||
pointer-events: none;
|
||
box-sizing: border-box;
|
||
padding: clamp(6px, 1.5vw, 14px);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
justify-content: flex-start;
|
||
text-align: center;
|
||
overflow: visible;
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
--qmap-bg: rgba(12, 14, 28, 0.88);
|
||
--qmap-border: rgba(255, 214, 102, 0.7);
|
||
--qmap-border-w: 2px;
|
||
--qmap-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
|
||
background: var(--qmap-bg);
|
||
border: var(--qmap-border-w) solid var(--qmap-border);
|
||
border-radius: 12px;
|
||
box-shadow: var(--qmap-shadow);
|
||
}
|
||
/* เกมถูก/ผิด: จัดข้อความกึ่งกลางแนวตั้งในโซนทอง (quiz_carry ไม่ใส่คลาสนี้ — ยังใช้ไอคอน/คะแนนด้านล่าง) */
|
||
#quiz-map-question-panel.quiz-map-question-panel--true-false {
|
||
justify-content: center;
|
||
}
|
||
/* แมปภารกิจคำถาม (mng8a80o) ช่วงเล่น — กรอบแบบ mock โดยไม่ต้องมี hud-question-plaque.png */
|
||
#quiz-map-question-panel.quiz-map-question-panel--question-mission-live {
|
||
background:
|
||
linear-gradient(180deg, rgba(14, 24, 44, 0.5), rgba(8, 12, 26, 0.82)),
|
||
linear-gradient(90deg, rgba(0, 255, 230, 0.07), transparent 38%, transparent 62%, rgba(255, 100, 70, 0.06)),
|
||
var(--qmap-bg, rgba(12, 14, 28, 0.92));
|
||
border-color: rgba(255, 224, 130, 0.5);
|
||
box-shadow:
|
||
var(--qmap-shadow, 0 8px 28px rgba(0, 0, 0, 0.55)),
|
||
inset 0 0 0 1px rgba(0, 255, 240, 0.14),
|
||
0 0 32px rgba(0, 200, 255, 0.1);
|
||
}
|
||
/* บรรทัดเล็กเหนือข้อความคำถาม — หมายเลขข้อ (เทียบ mock - Quiz 3) */
|
||
#quiz-map-question-panel .quiz-map-question-kicker {
|
||
position: relative;
|
||
z-index: 1;
|
||
flex: 0 0 auto;
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
margin: 0 0 0.28rem;
|
||
padding: 0 2px;
|
||
font-family: 'Orbitron', 'Share Tech Mono', ui-monospace, sans-serif;
|
||
font-size: clamp(0.52rem, 1.35vw, 0.66rem);
|
||
font-weight: 600;
|
||
letter-spacing: 0.16em;
|
||
text-transform: uppercase;
|
||
line-height: 1.25;
|
||
text-align: center;
|
||
color: rgba(236, 252, 255, 0.95);
|
||
text-shadow:
|
||
0 0 10px rgba(0, 240, 255, 0.42),
|
||
0 1px 8px rgba(0, 0, 0, 0.88);
|
||
}
|
||
#quiz-map-question-panel .quiz-map-question-kicker.is-hidden {
|
||
display: none !important;
|
||
}
|
||
#quiz-map-question-panel.is-hidden { display: none !important; }
|
||
#quiz-map-question-panel::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0;
|
||
height: 0;
|
||
}
|
||
/* ขนาดตั้งต้น — โหมด quiz_carry ถูกทับด้วย play.js ตามสัดส่วนกล่อง + ธีม */
|
||
#quiz-map-question-text {
|
||
margin: 0;
|
||
font-size: 22px;
|
||
font-weight: 600;
|
||
line-height: 1.45;
|
||
--qmap-text: #f1f5f9;
|
||
--qmap-text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
|
||
color: var(--qmap-text);
|
||
text-shadow: var(--qmap-text-shadow);
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
flex: 0 1 auto;
|
||
min-height: 0;
|
||
max-height: 100%;
|
||
align-self: center;
|
||
text-align: center;
|
||
overflow: hidden;
|
||
overflow-wrap: anywhere;
|
||
word-break: break-word;
|
||
white-space: pre-line;
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
}
|
||
#quiz-map-question-text::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0;
|
||
height: 0;
|
||
}
|
||
/* quiz_carry: ไอคอนถูก/ผิดโผล่ครึ่งบนกรอบแผง — ข้อความยัง clip ใน p */
|
||
#quiz-map-q-feedback-icon {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 0;
|
||
transform: translate(-50%, -44%);
|
||
width: clamp(28px, min(24%, 5vmin), 76px);
|
||
height: auto;
|
||
z-index: 4;
|
||
pointer-events: none;
|
||
object-fit: contain;
|
||
filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.55));
|
||
}
|
||
#quiz-map-q-feedback-icon.is-hidden {
|
||
display: none !important;
|
||
}
|
||
#quiz-map-q-feedback-score-wrap {
|
||
flex: 1 1 auto;
|
||
min-height: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
pointer-events: none;
|
||
padding: 0.12em 0 0.2em;
|
||
}
|
||
#quiz-map-q-feedback-score-wrap.is-hidden {
|
||
display: none !important;
|
||
}
|
||
#quiz-map-q-feedback-score {
|
||
width: clamp(44px, min(58%, 12vmin), 160px);
|
||
height: auto;
|
||
object-fit: contain;
|
||
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
|
||
}
|
||
#quiz-map-q-feedback-score.quiz-map-q-feedback-score--pop {
|
||
animation: quizMapQScorePop 0.58s ease-out both;
|
||
}
|
||
@keyframes quizMapQScorePop {
|
||
0% { transform: scale(0.55); opacity: 0; }
|
||
58% { transform: scale(1.06); opacity: 1; }
|
||
100% { transform: scale(1); opacity: 1; }
|
||
}
|
||
#quiz-carry-embed-countdown {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 10080;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
pointer-events: none;
|
||
background: var(--carry-ecd-overlay, rgba(8, 10, 20, 0.42));
|
||
}
|
||
#quiz-carry-embed-countdown.quiz-carry-embed-countdown--map-anchor {
|
||
align-items: flex-start;
|
||
justify-content: flex-start;
|
||
background: var(--carry-ecd-overlay, rgba(8, 10, 20, 0.32));
|
||
}
|
||
#quiz-carry-embed-countdown.is-hidden { display: none !important; }
|
||
#quiz-carry-embed-countdown-inner {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 0.55rem;
|
||
max-width: min(94vw, 760px);
|
||
padding: 0;
|
||
text-align: center;
|
||
box-sizing: border-box;
|
||
border-radius: 0;
|
||
background: transparent;
|
||
border: none;
|
||
box-shadow: none;
|
||
}
|
||
#quiz-carry-embed-countdown-inner.quiz-carry-embed-countdown-inner--map-rect {
|
||
max-width: none;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
border-radius: 0;
|
||
background: transparent;
|
||
border: none;
|
||
box-shadow: none;
|
||
}
|
||
#quiz-carry-embed-countdown-kicker {
|
||
display: none;
|
||
margin: 0;
|
||
font: 800 0.68rem / 1.2 system-ui, "Kanit", sans-serif;
|
||
letter-spacing: 0.12em;
|
||
text-transform: uppercase;
|
||
color: #7aa2f7;
|
||
text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
|
||
}
|
||
#quiz-carry-embed-countdown-kicker.quiz-carry-embed-countdown-kicker--mission {
|
||
font-weight: 600;
|
||
font-size: clamp(0.72rem, 2vmin, 0.9rem);
|
||
letter-spacing: 0.04em;
|
||
text-transform: none;
|
||
color: #f8fafc;
|
||
text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
|
||
}
|
||
#quiz-carry-embed-countdown-q {
|
||
display: none;
|
||
margin: 0;
|
||
font: 600 clamp(14px, 3.2vmin, 20px) / 1.45 system-ui, "Kanit", sans-serif;
|
||
color: #f8fafc;
|
||
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.75);
|
||
max-height: min(32vh, 220px);
|
||
overflow: hidden;
|
||
overflow-wrap: anywhere;
|
||
word-break: break-word;
|
||
white-space: pre-line;
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
}
|
||
#quiz-carry-embed-countdown-q::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0;
|
||
height: 0;
|
||
}
|
||
#quiz-carry-embed-countdown-num {
|
||
display: block;
|
||
width: min(var(--carry-ecd-screen-vw, 32vw), var(--carry-ecd-screen-max, 200px));
|
||
max-width: min(78vw, 420px);
|
||
height: auto;
|
||
object-fit: contain;
|
||
filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55));
|
||
}
|
||
/* ยึดกล่องบนแมป (ทอง / กลาง / กริด 321): ตัวเลขตามขนาดกล่องช่อง — ไม่ใช้ vw เต็มจอ */
|
||
#quiz-carry-embed-countdown.quiz-carry-embed-countdown--map-anchor #quiz-carry-embed-countdown-inner.quiz-carry-embed-countdown-inner--map-rect {
|
||
container-type: size;
|
||
}
|
||
#quiz-carry-embed-countdown.quiz-carry-embed-countdown--map-anchor #quiz-carry-embed-countdown-inner.quiz-carry-embed-countdown-inner--map-rect #quiz-carry-embed-countdown-num {
|
||
width: auto;
|
||
height: min(72cqh, 88cqmin);
|
||
max-height: 78%;
|
||
max-width: 92%;
|
||
object-fit: contain;
|
||
filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.55));
|
||
}
|
||
/* ด้านบน: ไม่ชน HUD ล่างบนแคนวาส + เห็นชัดกว่าแถบล่าง */
|
||
#quiz-carry-embed-q-strip {
|
||
position: fixed;
|
||
left: 50%;
|
||
top: max(52px, calc(env(safe-area-inset-top) + 46px));
|
||
bottom: auto;
|
||
transform: translateX(-50%);
|
||
z-index: 10100;
|
||
max-width: min(92vw, min(640px, calc(100vw - 200px)));
|
||
padding: 0.4rem 0.75rem 0.48rem;
|
||
border-radius: 12px;
|
||
background: rgba(12, 14, 28, 0.96);
|
||
border: 1px solid rgba(122, 162, 247, 0.55);
|
||
box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
|
||
pointer-events: none;
|
||
}
|
||
#quiz-carry-embed-q-strip.is-hidden { display: none !important; }
|
||
.quiz-carry-embed-q-strip-kicker {
|
||
display: block;
|
||
font: 800 0.58rem / 1.2 system-ui, "Kanit", sans-serif;
|
||
letter-spacing: 0.12em;
|
||
text-transform: uppercase;
|
||
color: #7aa2f7;
|
||
margin: 0 0 0.2rem;
|
||
text-align: center;
|
||
}
|
||
#quiz-carry-embed-q-strip-text {
|
||
margin: 0;
|
||
font: 600 clamp(0.82rem, 2.4vmin, 1.12rem) / 1.45 system-ui, "Kanit", sans-serif;
|
||
color: #f8fafc;
|
||
text-align: center;
|
||
text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
|
||
max-height: min(28vh, 200px);
|
||
overflow: auto;
|
||
}
|
||
/* ระหว่าง 3–2–1 อยู่เหนือ overlay นับถอยหลัง (10080) */
|
||
#quiz-carry-embed-q-strip.quiz-carry-embed-q-strip--countdown {
|
||
z-index: 10120;
|
||
top: max(52px, calc(env(safe-area-inset-top) + 46px));
|
||
}
|
||
/* พรีวิว embed quiz_carry: How to play — โครง/โกลว์ให้ใกล้ gauntlet-crown-howto (Stack mnn93hpi รูป2) */
|
||
#quiz-carry-pregame-overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 10078;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
|
||
box-sizing: border-box;
|
||
}
|
||
html.play-preview-editor-embed #quiz-carry-pregame-overlay {
|
||
z-index: 10138;
|
||
}
|
||
#quiz-carry-pregame-overlay.is-hidden { display: none !important; }
|
||
.quiz-carry-pregame-backdrop {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(6, 8, 18, 0.78);
|
||
backdrop-filter: blur(5px);
|
||
}
|
||
.quiz-carry-pregame-sr-only {
|
||
position: absolute;
|
||
width: 1px;
|
||
height: 1px;
|
||
padding: 0;
|
||
margin: -1px;
|
||
overflow: hidden;
|
||
clip: rect(0, 0, 0, 0);
|
||
white-space: nowrap;
|
||
border: 0;
|
||
}
|
||
.quiz-carry-pregame-card {
|
||
position: relative;
|
||
z-index: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
width: min(96vw, 920px);
|
||
max-width: min(96vw, 920px);
|
||
max-height: min(92vh, 640px);
|
||
overflow: visible;
|
||
padding: clamp(4px, 1.2vw, 10px);
|
||
background: transparent;
|
||
border: none;
|
||
border-radius: 14px;
|
||
box-shadow: none;
|
||
pointer-events: auto;
|
||
}
|
||
.quiz-carry-pregame-art {
|
||
flex: 0 1 auto;
|
||
width: 100%;
|
||
min-height: 0;
|
||
margin: 0;
|
||
padding: 0;
|
||
overflow: visible;
|
||
background: transparent;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
.quiz-carry-pregame-howto-img {
|
||
display: block;
|
||
width: 100%;
|
||
height: auto;
|
||
max-height: min(88vh, 600px);
|
||
object-fit: contain;
|
||
object-position: center center;
|
||
border: none;
|
||
outline: none;
|
||
pointer-events: none;
|
||
filter: drop-shadow(0 0 18px rgba(0, 255, 240, 0.25)) drop-shadow(0 0 22px rgba(255, 0, 200, 0.2));
|
||
}
|
||
.quiz-carry-pregame-footer {
|
||
position: absolute;
|
||
left: 50%;
|
||
bottom: clamp(6px, 1.6vmin, 14px);
|
||
transform: translateX(-50%);
|
||
width: min(92%, 280px);
|
||
flex: 0 0 auto;
|
||
padding: 0;
|
||
background: transparent;
|
||
border: none;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 4px;
|
||
pointer-events: none;
|
||
}
|
||
.quiz-carry-pregame-status {
|
||
margin: 0;
|
||
max-width: 100%;
|
||
text-align: center;
|
||
font: 800 clamp(0.75rem, 2vw, 0.9rem) / 1.35 system-ui, "Kanit", sans-serif;
|
||
color: #f8fafc;
|
||
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 0 14px rgba(0, 0, 0, 0.55);
|
||
letter-spacing: 0.02em;
|
||
}
|
||
.quiz-carry-pregame-actions {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 0.5rem 1rem;
|
||
justify-content: center;
|
||
align-items: center;
|
||
pointer-events: auto;
|
||
}
|
||
.quiz-carry-pregame-primary-btn {
|
||
background: transparent;
|
||
border: none;
|
||
padding: 0;
|
||
cursor: pointer;
|
||
line-height: 0;
|
||
border-radius: 6px;
|
||
transition: transform 0.12s ease, filter 0.12s ease, opacity 0.15s ease;
|
||
}
|
||
.quiz-carry-pregame-primary-btn:hover:not(:disabled):not(.is-read-only) {
|
||
transform: scale(1.03);
|
||
filter: brightness(1.08) drop-shadow(0 0 10px rgba(0, 255, 240, 0.35));
|
||
}
|
||
.quiz-carry-pregame-primary-btn.is-pressed:not(.is-start-phase) {
|
||
filter: brightness(1.12) drop-shadow(0 0 12px rgba(94, 234, 212, 0.55));
|
||
}
|
||
.quiz-carry-pregame-primary-btn.is-read-only,
|
||
.quiz-carry-pregame-primary-btn:disabled {
|
||
opacity: 0.38;
|
||
pointer-events: none;
|
||
cursor: default;
|
||
filter: grayscale(0.2);
|
||
}
|
||
.quiz-carry-pregame-primary-btn img {
|
||
display: block;
|
||
width: min(240px, 70vw);
|
||
height: auto;
|
||
}
|
||
#play-quiz-scoreboard {
|
||
position: fixed;
|
||
top: max(56px, env(safe-area-inset-top));
|
||
right: max(10px, env(safe-area-inset-right));
|
||
z-index: 10070;
|
||
min-width: 150px;
|
||
max-width: min(42vw, 220px);
|
||
background: rgba(12, 14, 28, 0.92);
|
||
border: 1px solid rgba(122, 162, 247, 0.4);
|
||
border-radius: 12px;
|
||
padding: 0.45rem 0.55rem 0.55rem;
|
||
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
|
||
pointer-events: none;
|
||
}
|
||
#play-quiz-scoreboard.is-hidden { display: none !important; }
|
||
.play-quiz-scoreboard-title {
|
||
font-size: 0.65rem;
|
||
font-weight: 800;
|
||
letter-spacing: 0.08em;
|
||
text-transform: uppercase;
|
||
color: #7aa2f7;
|
||
margin-bottom: 0.3rem;
|
||
border-bottom: 1px solid rgba(122, 162, 247, 0.25);
|
||
padding-bottom: 0.2rem;
|
||
}
|
||
.play-quiz-scoreboard-list {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 0;
|
||
max-height: 38vh;
|
||
overflow: auto;
|
||
}
|
||
.play-quiz-scoreboard-list li {
|
||
display: grid;
|
||
grid-template-columns: minmax(0, 1fr) minmax(2.25rem, auto);
|
||
align-items: baseline;
|
||
column-gap: 0.5rem;
|
||
font-size: 0.74rem;
|
||
color: #c0caf5;
|
||
padding: 0.15rem 0;
|
||
}
|
||
.play-quiz-scoreboard-me { color: #9ece6a !important; font-weight: 700; }
|
||
.play-quiz-scoreboard-val {
|
||
font-variant-numeric: tabular-nums;
|
||
font-weight: 800;
|
||
text-align: right;
|
||
justify-self: end;
|
||
}
|
||
.play-quiz-scoreboard-me .play-quiz-scoreboard-val { color: #9ece6a; }
|
||
/* แจ้งผลรอบคำถามแบบ toast — ปิดการแสดง (กรอบกลางบนรบกวน HUD) โค้ดยังอัปเดตข้อความได้สำหรับ a11y/ดีบัก */
|
||
#play-quiz-feedback {
|
||
display: none !important;
|
||
position: fixed;
|
||
top: max(10px, env(safe-area-inset-top));
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
z-index: 10072;
|
||
max-width: min(92vw, 440px);
|
||
padding: 0.55rem 1rem;
|
||
border-radius: 12px;
|
||
font-size: clamp(0.88rem, 3vw, 1.05rem);
|
||
font-weight: 800;
|
||
text-align: center;
|
||
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
|
||
pointer-events: none;
|
||
line-height: 1.35;
|
||
}
|
||
#play-quiz-feedback.is-hidden { display: none !important; }
|
||
.play-quiz-feedback-ok {
|
||
background: rgba(22, 40, 28, 0.95);
|
||
border: 2px solid rgba(158, 206, 106, 0.85);
|
||
color: #c3e6a8;
|
||
}
|
||
.play-quiz-feedback-bad {
|
||
background: rgba(40, 22, 30, 0.95);
|
||
border: 2px solid rgba(247, 118, 140, 0.85);
|
||
color: #fecdd3;
|
||
}
|
||
/* quiz_carry — สรุปผลภารกิจ (mock) · พื้นหลังแยกจากเนื้อหา กันลาย PNG [4th]/[5th] ทับ + หัวซ้ำกับ artwork */
|
||
#quiz-carry-mission-overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 10090;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
|
||
box-sizing: border-box;
|
||
font-family: 'Orbitron', 'Segoe UI', sans-serif;
|
||
}
|
||
#quiz-carry-mission-overlay.is-hidden { display: none !important; }
|
||
.qc-mission-backdrop {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(4, 6, 14, 0.78);
|
||
backdrop-filter: blur(8px);
|
||
}
|
||
.qc-mission-panel {
|
||
position: relative;
|
||
width: min(96vw, 720px);
|
||
max-width: 100%;
|
||
max-height: min(92vh, 860px);
|
||
border-radius: 12px;
|
||
overflow: hidden;
|
||
filter: drop-shadow(0 0 22px rgba(0, 255, 240, 0.18));
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.qc-mission-panel-bg {
|
||
position: absolute;
|
||
left: 0;
|
||
right: 0;
|
||
top: 0;
|
||
bottom: 0;
|
||
height: auto;
|
||
min-height: 100%;
|
||
background-image: url('/Game/img/quiz-carry/popup-result.png');
|
||
background-repeat: no-repeat;
|
||
background-position: center top;
|
||
background-size: 100% auto;
|
||
pointer-events: none;
|
||
z-index: 0;
|
||
}
|
||
.qc-mission-panel-inner {
|
||
position: relative;
|
||
z-index: 1;
|
||
flex: 1 1 auto;
|
||
min-height: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
/* เว้นตำแหน่งหัวข้อใน artwork — ไม่ซ้ำกับ <h2> sr-only */
|
||
padding: clamp(72px, 16vw, 112px) clamp(14px, 3.2vw, 26px) clamp(14px, 2.8vw, 22px);
|
||
gap: clamp(8px, 1.6vw, 14px);
|
||
}
|
||
.qc-mission-rank-row {
|
||
display: flex;
|
||
flex-wrap: nowrap;
|
||
justify-content: center;
|
||
align-items: stretch;
|
||
gap: clamp(6px, 1.5vw, 14px);
|
||
flex: 0 0 auto;
|
||
overflow-x: auto;
|
||
-webkit-overflow-scrolling: touch;
|
||
scrollbar-width: thin;
|
||
padding: 2px 0;
|
||
}
|
||
.qc-mission-rank-cell {
|
||
flex: 0 0 auto;
|
||
width: clamp(68px, 16vw, 104px);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
gap: 4px;
|
||
text-align: center;
|
||
color: #e2e8f0;
|
||
min-width: 0;
|
||
}
|
||
/* แท็กอันดับ mock: [1st] … [5th] สีทอง — อยู่เหนือกรอบ ไม่ทับอวาตาร์ */
|
||
.qc-mission-rank-tag {
|
||
flex: 0 0 auto;
|
||
font-size: clamp(0.5rem, 1.35vw, 0.65rem);
|
||
font-weight: 800;
|
||
letter-spacing: 0.04em;
|
||
color: #f6e08a;
|
||
text-shadow: 0 0 10px rgba(246, 224, 138, 0.45);
|
||
line-height: 1.1;
|
||
white-space: nowrap;
|
||
}
|
||
.qc-mission-rank-frame {
|
||
position: relative;
|
||
width: 100%;
|
||
max-width: 88px;
|
||
aspect-ratio: 1;
|
||
margin: 0 auto;
|
||
overflow: hidden;
|
||
border-radius: 8px;
|
||
border: 1px solid rgba(0, 255, 240, 0.45);
|
||
box-shadow:
|
||
0 0 0 1px rgba(255, 79, 180, 0.2),
|
||
0 0 14px rgba(0, 255, 240, 0.18);
|
||
background: rgba(10, 12, 24, 0.95);
|
||
flex-shrink: 0;
|
||
}
|
||
.qc-mission-rank-avatar {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 40%;
|
||
transform: translate(-50%, -50%) scale(1.28);
|
||
transform-origin: 50% 30%;
|
||
width: 88%;
|
||
height: 88%;
|
||
object-fit: cover;
|
||
object-position: center 18%;
|
||
image-rendering: pixelated;
|
||
display: block;
|
||
pointer-events: none;
|
||
}
|
||
.qc-mission-rank-nick {
|
||
flex: 1 1 auto;
|
||
min-height: 2.5em;
|
||
display: flex;
|
||
align-items: flex-end;
|
||
justify-content: center;
|
||
font-size: clamp(0.52rem, 1.45vw, 0.68rem);
|
||
font-weight: 700;
|
||
color: #e2e8f0;
|
||
line-height: 1.15;
|
||
width: 100%;
|
||
max-width: 100%;
|
||
overflow: hidden;
|
||
word-break: break-word;
|
||
hyphens: auto;
|
||
text-align: center;
|
||
}
|
||
.qc-mission-rank-score {
|
||
flex: 0 0 auto;
|
||
margin-top: auto;
|
||
font-variant-numeric: tabular-nums;
|
||
font-size: clamp(0.62rem, 1.85vw, 0.78rem);
|
||
font-weight: 800;
|
||
color: #f6e08a;
|
||
text-shadow: 0 0 10px rgba(246, 224, 138, 0.35);
|
||
}
|
||
.qc-mission-total {
|
||
margin: 0;
|
||
text-align: center;
|
||
font-size: clamp(0.65rem, 1.85vw, 0.8rem);
|
||
font-weight: 700;
|
||
line-height: 1.4;
|
||
flex: 0 0 auto;
|
||
color: #f1f5f9;
|
||
}
|
||
.qc-mission-total-nums {
|
||
color: #f6e08a;
|
||
font-weight: 800;
|
||
text-shadow: 0 0 8px rgba(246, 224, 138, 0.25);
|
||
}
|
||
.qc-mission-bottom {
|
||
display: grid;
|
||
grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
|
||
gap: clamp(10px, 2.2vw, 20px);
|
||
align-items: start;
|
||
flex: 0 0 auto;
|
||
isolation: isolate;
|
||
}
|
||
@media (max-width: 520px) {
|
||
.qc-mission-bottom { grid-template-columns: 1fr; }
|
||
}
|
||
.qc-mission-section-h {
|
||
margin: 0 0 8px;
|
||
font-size: clamp(0.68rem, 1.9vw, 0.82rem);
|
||
font-weight: 700;
|
||
letter-spacing: 0.06em;
|
||
color: #f1f5f9;
|
||
text-align: center;
|
||
}
|
||
.qc-mission-grade-block,
|
||
.qc-mission-bonus-block {
|
||
text-align: center;
|
||
min-width: 0;
|
||
}
|
||
.qc-mission-grade {
|
||
font-size: clamp(2.4rem, 11vw, 4rem);
|
||
font-weight: 900;
|
||
line-height: 1;
|
||
letter-spacing: 0.02em;
|
||
color: #f8fafc;
|
||
text-shadow: 0 0 28px rgba(255, 255, 255, 0.35);
|
||
}
|
||
.qc-mission-grade--a { color: #9ece6a; text-shadow: 0 0 24px rgba(158, 206, 106, 0.55); }
|
||
.qc-mission-grade--b { color: #7aa2f7; text-shadow: 0 0 24px rgba(122, 162, 247, 0.5); }
|
||
.qc-mission-grade--c { color: #e0af68; text-shadow: 0 0 22px rgba(224, 175, 104, 0.45); }
|
||
.qc-mission-grade--d { color: #bb9af7; text-shadow: 0 0 20px rgba(187, 154, 247, 0.4); }
|
||
.qc-mission-grade--e { color: #7dcfff; text-shadow: 0 0 20px rgba(125, 207, 255, 0.35); }
|
||
.qc-mission-grade--f { color: #f7768e; text-shadow: 0 0 22px rgba(247, 118, 140, 0.45); }
|
||
.qc-mission-bonus-row {
|
||
display: flex;
|
||
flex-direction: row;
|
||
flex-wrap: wrap;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: clamp(10px, 2.5vw, 18px);
|
||
min-height: 0;
|
||
}
|
||
.qc-mission-bonus-inline {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
gap: 8px;
|
||
flex-wrap: nowrap;
|
||
flex: 0 0 auto;
|
||
}
|
||
.qc-mission-reward-plaque {
|
||
flex: 0 1 auto;
|
||
min-width: 100px;
|
||
max-width: 160px;
|
||
padding: 8px 10px 10px;
|
||
border-radius: 10px;
|
||
border: 1px solid rgba(0, 255, 240, 0.55);
|
||
box-shadow: 0 0 14px rgba(0, 255, 240, 0.15), inset 0 0 20px rgba(0, 40, 48, 0.35);
|
||
background: linear-gradient(165deg, rgba(14, 18, 36, 0.98), rgba(8, 10, 22, 0.99));
|
||
text-align: center;
|
||
}
|
||
.qc-mission-reward-plaque--muted {
|
||
border-color: rgba(148, 153, 168, 0.4);
|
||
box-shadow: none;
|
||
opacity: 0.92;
|
||
}
|
||
.qc-mission-reward-plaque-title {
|
||
font-size: clamp(0.68rem, 1.8vw, 0.8rem);
|
||
font-weight: 800;
|
||
color: #f1f5f9;
|
||
line-height: 1.25;
|
||
}
|
||
.qc-mission-reward-plaque-sub {
|
||
margin-top: 4px;
|
||
font-size: clamp(0.58rem, 1.45vw, 0.68rem);
|
||
font-weight: 600;
|
||
color: #7af8ff;
|
||
opacity: 0.9;
|
||
}
|
||
.qc-mission-check {
|
||
width: clamp(22px, 6vw, 32px);
|
||
height: auto;
|
||
flex-shrink: 0;
|
||
}
|
||
.qc-mission-success-txt {
|
||
font-size: clamp(0.72rem, 2.1vw, 0.88rem);
|
||
font-weight: 700;
|
||
color: #9ece6a;
|
||
}
|
||
.qc-mission-card-text {
|
||
flex: 0 1 auto;
|
||
text-align: center;
|
||
font-size: clamp(0.68rem, 1.9vw, 0.82rem);
|
||
color: #c0caf5;
|
||
line-height: 1.45;
|
||
min-width: 0;
|
||
max-width: min(200px, 42vw);
|
||
}
|
||
.qc-mission-reward-sub {
|
||
font-size: 0.78em;
|
||
opacity: 0.85;
|
||
font-weight: 600;
|
||
}
|
||
.qc-mission-panel-inner #btn-quiz-carry-mission-done {
|
||
flex: 0 0 auto;
|
||
align-self: center;
|
||
}
|
||
#btn-quiz-carry-mission-done {
|
||
margin: clamp(10px, 2.5vw, 16px) auto 0;
|
||
display: block;
|
||
width: min(92%, 320px);
|
||
height: clamp(44px, 11vw, 56px);
|
||
border: none;
|
||
padding: 0;
|
||
cursor: pointer;
|
||
background: url('/Game/img/quiz-carry/btn-done.png') center / contain no-repeat;
|
||
background-color: transparent;
|
||
}
|
||
#btn-quiz-carry-mission-done:focus-visible {
|
||
outline: 2px solid rgba(0, 255, 240, 0.7);
|
||
outline-offset: 3px;
|
||
}
|
||
.qc-mission-sr {
|
||
position: absolute !important;
|
||
width: 1px !important;
|
||
height: 1px !important;
|
||
padding: 0 !important;
|
||
margin: -1px !important;
|
||
overflow: hidden !important;
|
||
clip: rect(0, 0, 0, 0) !important;
|
||
clip-path: inset(50%) !important;
|
||
border: 0 !important;
|
||
white-space: nowrap !important;
|
||
}
|
||
|
||
/* —— Gauntlet crown heist (mno9kb07) — mock overlays — assets /Game/img/gauntlet-assets —— */
|
||
/* สูงกว่า #quiz-carry-pregame-overlay (10078) และ embed strip — กัน mock ถูกบังใน editor preview */
|
||
#gauntlet-crown-howto-overlay,
|
||
#gauntlet-crown-mission-overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
|
||
box-sizing: border-box;
|
||
z-index: 10140;
|
||
}
|
||
#gauntlet-crown-countdown {
|
||
position: fixed;
|
||
inset: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
|
||
box-sizing: border-box;
|
||
z-index: 10142;
|
||
pointer-events: auto;
|
||
background: rgba(6, 8, 18, 0.55);
|
||
backdrop-filter: blur(3px);
|
||
}
|
||
#gauntlet-crown-mission-overlay { z-index: 10150; }
|
||
/* Stack Tower (mnn93hpi) — แฟลชผลจบ 5 วิ ก่อน GCM */
|
||
#stack-tower-result-flash {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 10160;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
|
||
box-sizing: border-box;
|
||
pointer-events: none;
|
||
}
|
||
#stack-tower-result-flash.is-hidden {
|
||
display: none !important;
|
||
}
|
||
.stack-tower-result-flash-backdrop {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(4, 8, 22, 0.58);
|
||
backdrop-filter: blur(4px);
|
||
}
|
||
#stack-tower-result-flash-img {
|
||
position: relative;
|
||
z-index: 1;
|
||
max-width: min(94vw, 980px);
|
||
max-height: min(82vh, 640px);
|
||
width: auto;
|
||
height: auto;
|
||
object-fit: contain;
|
||
filter: drop-shadow(0 0 28px rgba(0, 0, 0, 0.55));
|
||
}
|
||
#gauntlet-crown-howto-overlay.is-hidden,
|
||
#gauntlet-crown-mission-overlay.is-hidden,
|
||
#gauntlet-crown-countdown.is-hidden,
|
||
#stack-tower-result-flash.is-hidden { display: none !important; }
|
||
.gcc-panel {
|
||
text-align: center;
|
||
padding: 0;
|
||
border-radius: 0;
|
||
border: none;
|
||
box-shadow: none;
|
||
background: transparent;
|
||
}
|
||
.gcc-num {
|
||
display: block;
|
||
width: min(42vw, 280px);
|
||
max-width: min(88vw, 360px);
|
||
height: auto;
|
||
margin: 0 auto;
|
||
object-fit: contain;
|
||
filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 14px rgba(0, 255, 240, 0.35));
|
||
}
|
||
.gch-backdrop,
|
||
.gcm-backdrop {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(6, 8, 18, 0.78);
|
||
backdrop-filter: blur(5px);
|
||
}
|
||
.gch-shell,
|
||
.gcm-shell {
|
||
position: relative;
|
||
width: min(96vw, 920px);
|
||
max-height: min(92vh, 640px);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: clamp(4px, 1.2vw, 10px);
|
||
border-radius: 14px;
|
||
/* border: 2px solid rgba(0, 255, 240, 0.75); */
|
||
/* box-shadow: 0 0 0 1px rgba(255, 0, 200, 0.55), 0 0 28px rgba(0, 255, 240, 0.22), 0 0 40px rgba(255, 0, 200, 0.12); */
|
||
/* background: rgba(6, 8, 18, 0.35); */
|
||
pointer-events: auto;
|
||
}
|
||
.gch-bg,
|
||
.gcm-bg {
|
||
width: 100%;
|
||
height: auto;
|
||
max-height: min(88vh, 600px);
|
||
object-fit: contain;
|
||
display: block;
|
||
pointer-events: none;
|
||
filter: drop-shadow(0 0 18px rgba(0, 255, 240, 0.25)) drop-shadow(0 0 22px rgba(255, 0, 200, 0.2));
|
||
}
|
||
.gch-inner,
|
||
.gcm-inner {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 50%;
|
||
transform: translate(-50%, -50%);
|
||
width: min(88%, 780px);
|
||
max-height: 82%;
|
||
overflow: auto;
|
||
padding: clamp(10px, 2.2vw, 18px);
|
||
box-sizing: border-box;
|
||
color: #e2e8f0;
|
||
font-family: ui-sans-serif, system-ui, 'Segoe UI', 'Kanit', sans-serif;
|
||
/* background: rgba(8, 10, 22, 0.72); */
|
||
border-radius: 12px;
|
||
/* border: 1px solid rgba(0, 255, 240, 0.35); */
|
||
/* box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.35); */
|
||
}
|
||
.gch-inner.gch-inner--art {
|
||
left: 0;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
transform: none;
|
||
width: 100%;
|
||
max-height: none;
|
||
overflow: visible;
|
||
padding: 0;
|
||
background: transparent;
|
||
border: none;
|
||
box-shadow: none;
|
||
display: block;
|
||
pointer-events: none;
|
||
}
|
||
/* Ready สถานะ + ปุ่ม — ยึดชายล่างการ์ด ไม่ทับภาพ/ข้อความกลาง */
|
||
.gch-inner.gch-inner--art .gch-art-footer {
|
||
position: absolute;
|
||
left: 50%;
|
||
bottom: clamp(6px, 1.6vmin, 14px);
|
||
transform: translateX(-50%);
|
||
width: min(92%, 280px);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 4px;
|
||
pointer-events: none;
|
||
}
|
||
.gch-inner.gch-inner--art .gch-status {
|
||
pointer-events: none;
|
||
margin: 0;
|
||
max-width: 100%;
|
||
text-align: center;
|
||
font: 800 clamp(0.75rem, 2vw, 0.9rem) / 1.35 ui-sans-serif, system-ui, 'Segoe UI', 'Kanit', sans-serif;
|
||
color: #f8fafc;
|
||
letter-spacing: 0.02em;
|
||
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 0 14px rgba(0, 0, 0, 0.55), 0 0 10px rgba(122, 248, 255, 0.18);
|
||
}
|
||
.gch-inner.gch-inner--art .btn-gch-ready {
|
||
pointer-events: auto;
|
||
flex-shrink: 0;
|
||
margin: 0;
|
||
}
|
||
.gch-title {
|
||
margin: 0 0 4px;
|
||
font-size: clamp(1rem, 3.2vw, 1.35rem);
|
||
font-weight: 900;
|
||
letter-spacing: 0.06em;
|
||
color: #fff;
|
||
text-align: center;
|
||
text-shadow: 0 0 12px rgba(0, 255, 240, 0.45);
|
||
}
|
||
.gch-sub {
|
||
margin: 0 0 10px;
|
||
text-align: center;
|
||
font-size: clamp(0.78rem, 2.1vw, 0.95rem);
|
||
color: #7af8ff;
|
||
font-weight: 700;
|
||
}
|
||
.gch-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||
gap: clamp(6px, 1.5vw, 12px);
|
||
margin-bottom: 10px;
|
||
}
|
||
@media (max-width: 640px) {
|
||
.gch-grid { grid-template-columns: 1fr; }
|
||
}
|
||
.gch-col {
|
||
background: rgba(10, 14, 28, 0.72);
|
||
border: 1px solid rgba(0, 255, 240, 0.35);
|
||
border-radius: 10px;
|
||
padding: 8px 10px;
|
||
font-size: clamp(0.65rem, 1.65vw, 0.78rem);
|
||
line-height: 1.45;
|
||
}
|
||
.gch-col h3 {
|
||
margin: 0 0 6px;
|
||
font-size: clamp(0.72rem, 1.9vw, 0.85rem);
|
||
color: #f6e08a;
|
||
}
|
||
.gch-col p { margin: 0 0 6px; color: #c0caf5; }
|
||
.gch-col .warn { color: #f6e08a; font-weight: 600; }
|
||
.gch-foot {
|
||
text-align: center;
|
||
font-size: clamp(0.68rem, 1.8vw, 0.8rem);
|
||
color: #f7768e;
|
||
margin: 0 0 10px;
|
||
}
|
||
.btn-gch-ready {
|
||
display: block;
|
||
margin: 0 auto;
|
||
width: min(240px, 70%);
|
||
height: clamp(44px, 12vw, 56px);
|
||
border: none;
|
||
cursor: pointer;
|
||
background: url('/Game/img/gauntlet-assets/btn-ready.png') center / contain no-repeat;
|
||
background-color: transparent;
|
||
}
|
||
.btn-gch-ready.is-start-phase {
|
||
background-image: url('/Game/img/quiz-carry/btn-start.png');
|
||
}
|
||
.btn-gch-ready:disabled {
|
||
opacity: 0.55;
|
||
cursor: not-allowed;
|
||
}
|
||
.btn-gch-ready:focus-visible { outline: 2px solid #7af8ff; outline-offset: 3px; }
|
||
.gch-status {
|
||
margin: 0;
|
||
text-align: center;
|
||
font-size: clamp(0.72rem, 1.9vw, 0.88rem);
|
||
font-weight: 700;
|
||
color: #c0caf5;
|
||
}
|
||
.gch-status.is-hidden { display: none !important; }
|
||
.gcm-header-tab {
|
||
text-align: center;
|
||
font-weight: 800;
|
||
font-size: clamp(0.85rem, 2.4vw, 1rem);
|
||
color: #7af8ff;
|
||
margin-bottom: 8px;
|
||
letter-spacing: 0.04em;
|
||
}
|
||
.gcm-rank-row {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
justify-content: center;
|
||
align-items: stretch;
|
||
gap: clamp(6px, 1.5vw, 10px);
|
||
margin-bottom: 8px;
|
||
}
|
||
.gcm-cell {
|
||
flex: 0 0 auto;
|
||
width: clamp(72px, 18vw, 100px);
|
||
text-align: center;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: stretch;
|
||
}
|
||
.gcm-rank-tag {
|
||
flex: 0 0 auto;
|
||
min-height: 1.15em;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: clamp(0.55rem, 1.4vw, 0.65rem);
|
||
font-weight: 800;
|
||
color: #f6e08a;
|
||
margin-bottom: 4px;
|
||
}
|
||
.gcm-frame {
|
||
position: relative;
|
||
flex: 0 0 auto;
|
||
width: 100%;
|
||
aspect-ratio: 1;
|
||
border-radius: 8px;
|
||
border: 2px solid rgba(0, 255, 240, 0.5);
|
||
box-shadow: 0 0 12px rgba(0, 255, 240, 0.2);
|
||
overflow: hidden;
|
||
background: rgba(8, 10, 20, 0.9);
|
||
}
|
||
.gcm-frame img.gcm-av {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
object-position: center 22%;
|
||
transform: scale(1.32);
|
||
transform-origin: 50% 26%;
|
||
image-rendering: pixelated;
|
||
}
|
||
.gcm-frame img.gcm-stamp {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: contain;
|
||
pointer-events: none;
|
||
}
|
||
.gcm-nick {
|
||
flex: 1 1 auto;
|
||
min-height: 2.55em;
|
||
display: flex;
|
||
align-items: flex-end;
|
||
justify-content: center;
|
||
font-size: clamp(0.52rem, 1.35vw, 0.65rem);
|
||
font-weight: 700;
|
||
color: #e2e8f0;
|
||
margin-top: 4px;
|
||
word-break: break-word;
|
||
line-height: 1.15;
|
||
}
|
||
.gcm-sc {
|
||
flex: 0 0 auto;
|
||
width: 100%;
|
||
text-align: center;
|
||
font-variant-numeric: tabular-nums;
|
||
font-size: clamp(0.58rem, 1.5vw, 0.72rem);
|
||
font-weight: 800;
|
||
color: #f6e08a;
|
||
margin-top: auto;
|
||
padding-top: 3px;
|
||
}
|
||
.gcm-total {
|
||
text-align: center;
|
||
font-size: clamp(0.65rem, 1.8vw, 0.8rem);
|
||
font-weight: 700;
|
||
color: #f1f5f9;
|
||
margin: 0 0 8px;
|
||
}
|
||
.gcm-total-nums { color: #f6e08a; }
|
||
.gcm-bottom {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1.2fr;
|
||
gap: 10px;
|
||
align-items: start;
|
||
margin-bottom: 8px;
|
||
}
|
||
@media (max-width: 520px) { .gcm-bottom { grid-template-columns: 1fr; } }
|
||
.gcm-h {
|
||
font-size: clamp(0.62rem, 1.7vw, 0.75rem);
|
||
font-weight: 700;
|
||
color: #cbd5e1;
|
||
text-align: center;
|
||
margin-bottom: 4px;
|
||
}
|
||
.gcm-grade {
|
||
text-align: center;
|
||
font-size: clamp(2rem, 9vw, 3.2rem);
|
||
font-weight: 900;
|
||
line-height: 1;
|
||
color: #f8fafc;
|
||
text-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
|
||
}
|
||
.gcm-grade--a { color: #9ece6a; text-shadow: 0 0 20px rgba(158, 206, 106, 0.5); }
|
||
.gcm-grade--b { color: #7aa2f7; }
|
||
.gcm-grade--c { color: #e0af68; }
|
||
.gcm-grade--d { color: #bb9af7; text-shadow: 0 0 16px rgba(187, 154, 247, 0.4); }
|
||
.gcm-grade--e { color: #7dcfff; text-shadow: 0 0 16px rgba(125, 207, 255, 0.35); }
|
||
.gcm-grade--f { color: #f7768e; text-shadow: 0 0 18px rgba(247, 118, 140, 0.45); }
|
||
.gcm-bonus {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 6px;
|
||
font-size: clamp(0.65rem, 1.7vw, 0.78rem);
|
||
color: #c0caf5;
|
||
}
|
||
.gcm-plaque {
|
||
border: 1px solid rgba(0, 255, 240, 0.55);
|
||
border-radius: 10px;
|
||
padding: 8px 10px;
|
||
background: linear-gradient(165deg, rgba(14, 18, 36, 0.96), rgba(8, 10, 22, 0.98));
|
||
text-align: center;
|
||
max-width: 200px;
|
||
}
|
||
.gcm-plaque strong { color: #f1f5f9; display: block; }
|
||
.gcm-plaque span { color: #7af8ff; font-size: 0.92em; }
|
||
.btn-gcm-done {
|
||
display: block;
|
||
margin: 4px auto 0;
|
||
width: min(92%, 300px);
|
||
height: clamp(44px, 11vw, 54px);
|
||
border: none;
|
||
cursor: pointer;
|
||
background: url('/Game/img/gauntlet-assets/btn-done.png') center / contain no-repeat;
|
||
background-color: transparent;
|
||
}
|
||
|
||
#gauntlet-ended-overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 10080;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
|
||
box-sizing: border-box;
|
||
}
|
||
#gauntlet-ended-overlay.is-hidden { display: none !important; }
|
||
.gauntlet-ended-backdrop {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(8, 10, 18, 0.82);
|
||
backdrop-filter: blur(6px);
|
||
}
|
||
.gauntlet-ended-card {
|
||
position: relative;
|
||
max-width: min(92vw, 400px);
|
||
width: 100%;
|
||
background: rgba(18, 20, 32, 0.96);
|
||
border: 1px solid rgba(247, 118, 140, 0.45);
|
||
border-radius: 16px;
|
||
padding: 1.25rem 1.35rem 1.1rem;
|
||
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
|
||
}
|
||
.gauntlet-ended-card h2 {
|
||
margin: 0 0 0.5rem;
|
||
font-size: 1.15rem;
|
||
color: #f7768e;
|
||
font-weight: 800;
|
||
}
|
||
#gauntlet-ended-message {
|
||
margin: 0 0 0.75rem;
|
||
font-size: 0.95rem;
|
||
color: #c0caf5;
|
||
line-height: 1.45;
|
||
}
|
||
#gauntlet-ended-rankings {
|
||
margin: 0 0 1rem;
|
||
padding-left: 1.2rem;
|
||
color: #a9b1d6;
|
||
font-size: 0.88rem;
|
||
line-height: 1.5;
|
||
}
|
||
#gauntlet-ended-rankings .gauntlet-ended-me {
|
||
color: #9ece6a;
|
||
font-weight: 700;
|
||
}
|
||
#btn-gauntlet-ended-lobby {
|
||
width: 100%;
|
||
padding: 0.55rem 1rem;
|
||
border-radius: 10px;
|
||
border: none;
|
||
font-weight: 700;
|
||
cursor: pointer;
|
||
background: linear-gradient(180deg, #7aa2f7, #5a7fd4);
|
||
color: #1a1b26;
|
||
}
|
||
|
||
/* —— Cyber / server-room play HUD (Jump survive · Gauntlet) —— */
|
||
.play-cyber-hud {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 55;
|
||
pointer-events: none;
|
||
font-family: 'Share Tech Mono', ui-monospace, monospace;
|
||
}
|
||
/* embed: HUD อยู่ใน .game-wrap — absolute ยึดกรอบเกม ไม่ใช่ viewport ทั้งจอ (แก้ TIME/SCORE หลุดคนละกรอบกับแคนวาสกลาง) */
|
||
html.play-preview-editor-embed #play-cyber-hud.play-cyber-hud {
|
||
position: absolute;
|
||
inset: 0;
|
||
}
|
||
.play-cyber-hud.is-hidden { display: none !important; }
|
||
/* Jumper ภารกิจ mnptfts2 — ซ่อนแผง SCORE เท่านั้น (TIME + โปรไฟล์ยังใช้งาน) */
|
||
#play-cyber-hud.play-cyber-hud--jump-mission-hide-score .play-cyber-scoreboard {
|
||
display: none !important;
|
||
}
|
||
/* mng8a80o — แผง SCORE: มุมคม, หัว SCORE ใหญ่, แถวแนวนอน = [อวาตาร์เล็ก + ชื่อไทย] ซ้าย | คะแนนใหญ่ขวา */
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-scoreboard {
|
||
width: min(252px, 64vw);
|
||
max-width: min(252px, 64vw);
|
||
box-sizing: border-box;
|
||
padding: 0.48rem 0.62rem 0.52rem;
|
||
background: linear-gradient(
|
||
165deg,
|
||
rgba(10, 26, 48, 0.92) 0%,
|
||
rgba(5, 14, 32, 0.94) 42%,
|
||
rgba(8, 20, 40, 0.9) 100%
|
||
);
|
||
border: 1px solid rgba(0, 255, 240, 0.38);
|
||
border-radius: 2px;
|
||
box-shadow:
|
||
0 0 0 1px rgba(0, 0, 0, 0.45),
|
||
0 0 24px rgba(0, 200, 255, 0.16),
|
||
inset 0 1px 0 rgba(255, 255, 255, 0.08);
|
||
overflow: visible;
|
||
min-height: unset;
|
||
}
|
||
/* mng8a80o — virtual joystick (Roblox-style) มุมซ้ายล่าง */
|
||
.quiz-q-mission-joystick {
|
||
position: fixed;
|
||
z-index: 56;
|
||
left: max(10px, env(safe-area-inset-left, 0px));
|
||
bottom: max(12px, env(safe-area-inset-bottom, 0px));
|
||
width: min(132px, 28vw);
|
||
height: min(132px, 28vw);
|
||
touch-action: none;
|
||
user-select: none;
|
||
-webkit-user-select: none;
|
||
pointer-events: auto;
|
||
box-sizing: border-box;
|
||
}
|
||
html.play-preview-editor-embed .quiz-q-mission-joystick {
|
||
position: absolute;
|
||
bottom: max(12px, env(safe-area-inset-bottom, 0px));
|
||
}
|
||
.quiz-q-mission-joystick.is-hidden {
|
||
display: none !important;
|
||
}
|
||
.quiz-q-mission-joystick-base {
|
||
position: relative;
|
||
width: 100%;
|
||
height: 100%;
|
||
cursor: grab;
|
||
}
|
||
.quiz-q-mission-joystick-base:active {
|
||
cursor: grabbing;
|
||
}
|
||
.quiz-q-mission-joystick-bg {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: contain;
|
||
pointer-events: none;
|
||
image-rendering: pixelated;
|
||
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
|
||
}
|
||
.quiz-q-mission-joystick-knob {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 50%;
|
||
width: 42%;
|
||
height: 42%;
|
||
transform: translate(-50%, -50%);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
pointer-events: none;
|
||
transition: transform 0.04s linear;
|
||
}
|
||
.quiz-q-mission-joystick-knob-img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: contain;
|
||
image-rendering: pixelated;
|
||
filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
|
||
}
|
||
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-score-list {
|
||
box-sizing: border-box;
|
||
width: 100%;
|
||
max-width: 100%;
|
||
max-height: 48vh;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-panel-title {
|
||
display: block;
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-weight: 800;
|
||
font-size: clamp(0.82rem, 2.4vmin, 0.95rem);
|
||
letter-spacing: 0.22em;
|
||
text-transform: uppercase;
|
||
color: #8afeff;
|
||
text-shadow:
|
||
0 0 16px rgba(0, 240, 255, 0.62),
|
||
0 0 32px rgba(0, 160, 255, 0.32);
|
||
margin: 0 0 0.34rem;
|
||
padding: 0 0 0.38rem;
|
||
border-bottom: 1px solid rgba(0, 255, 240, 0.48);
|
||
text-align: left;
|
||
line-height: 1.15;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-score-row {
|
||
border-bottom: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-score-row--qm-mock {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 0.42rem;
|
||
width: 100%;
|
||
min-width: 0;
|
||
box-sizing: border-box;
|
||
padding: 0.3rem 0;
|
||
border-bottom: 1px solid rgba(0, 255, 240, 0.32);
|
||
grid-template-columns: unset;
|
||
grid-template: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-score-row--qm-mock:last-child {
|
||
border-bottom: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-qm-left {
|
||
display: flex;
|
||
flex-direction: row;
|
||
flex-wrap: nowrap;
|
||
align-items: center;
|
||
justify-content: flex-start;
|
||
gap: 0.4rem;
|
||
flex: 1 1 auto;
|
||
min-width: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-qm-name {
|
||
font-family: 'Share Tech Mono', ui-monospace, monospace;
|
||
font-size: 0.58rem;
|
||
font-weight: 600;
|
||
letter-spacing: 0.04em;
|
||
text-transform: none;
|
||
color: rgba(248, 252, 255, 0.95);
|
||
text-shadow: 0 1px 5px rgba(0, 0, 0, 0.92);
|
||
flex: 1 1 auto;
|
||
min-width: 0;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-score-row--qm-mock.is-me .play-cyber-qm-name {
|
||
color: #e8fcff;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-qm-score {
|
||
flex: 0 0 auto;
|
||
align-self: center;
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-size: clamp(1.02rem, 3.5vmin, 1.38rem);
|
||
font-weight: 800;
|
||
color: #7af8ff;
|
||
text-align: right;
|
||
line-height: 1;
|
||
text-shadow:
|
||
0 0 14px rgba(0, 255, 240, 0.48),
|
||
0 0 26px rgba(0, 160, 255, 0.22);
|
||
min-width: 2.1rem;
|
||
justify-self: unset;
|
||
white-space: nowrap;
|
||
}
|
||
/* อวาตาร์แถบ SCORE: คอขึ้นไป (crop) — wrap ตัดขอบหลัง scale */
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-qm-av-wrap {
|
||
display: block;
|
||
width: 34px;
|
||
height: 34px;
|
||
flex-shrink: 0;
|
||
overflow: hidden;
|
||
border-radius: 2px;
|
||
border: 1px solid rgba(0, 255, 240, 0.4);
|
||
background: rgba(0, 16, 28, 0.95);
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-score-row--qm-mock .play-cyber-score-av--qm {
|
||
display: block;
|
||
width: 34px;
|
||
height: 34px;
|
||
border: none;
|
||
object-fit: cover;
|
||
object-position: center 4%;
|
||
transform: scale(1.38);
|
||
transform-origin: center 8%;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-self-frame {
|
||
overflow: hidden;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-self-frame img {
|
||
object-fit: cover;
|
||
object-position: center 6%;
|
||
transform: scale(1.36);
|
||
transform-origin: center 10%;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-sub {
|
||
margin-top: 0.32rem;
|
||
opacity: 0.52;
|
||
font-size: 0.52rem;
|
||
max-width: min(88vw, 420px);
|
||
}
|
||
/* โหมดคำถาม: ไม่แสดงกล่องคำแนะ (ให้พื้นที่ซ้ายกับแถบ SCORE) */
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-hint {
|
||
display: none !important;
|
||
}
|
||
/* โหมดคำถาม: ซ่อนแถบ glitch แดง (RAM ERROR…) และบรรทัด SIM พรีวิวด้านล่าง */
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-corruption {
|
||
display: none !important;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-preview-line {
|
||
display: none !important;
|
||
}
|
||
/* Space Shooter mnpz6rkp — แผงขวา: life-bar + life-full/hit เหมือน drawStackTowerLifeIntegrityBarPlay */
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-self-status {
|
||
max-width: min(230px, 48vw);
|
||
text-align: left;
|
||
letter-spacing: 0.05em;
|
||
line-height: 1.38;
|
||
font-size: 0.52rem;
|
||
color: rgba(232, 248, 255, 0.94);
|
||
}
|
||
/* Space Shooter integrity — canvas วาดด้วย drawStackTowerLifeIntegrityBarPlay (เส้นทางเดียวกับ Stack) */
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-ss-integrity-canvas {
|
||
display: block;
|
||
width: 220px;
|
||
max-width: 100%;
|
||
image-rendering: pixelated;
|
||
margin-bottom: 0.28rem;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-ss-meta {
|
||
font-size: 0.5rem;
|
||
letter-spacing: 0.06em;
|
||
color: rgba(232, 248, 255, 0.88);
|
||
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
|
||
}
|
||
/* Space Shooter live: แถบ integrity + meta อยู่ซ้ายของกรอบอวตาร */
|
||
#play-cyber-hud.play-cyber-hud--ss-self-integrity-left .play-cyber-self {
|
||
flex-direction: row;
|
||
flex-wrap: wrap;
|
||
align-items: center;
|
||
justify-content: flex-end;
|
||
gap: 0.42rem;
|
||
max-width: min(96vw, 380px);
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--ss-self-integrity-left .play-cyber-self-status {
|
||
order: 1;
|
||
flex: 1 1 auto;
|
||
min-width: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--ss-self-integrity-left .play-cyber-self-frame {
|
||
order: 2;
|
||
flex-shrink: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--ss-self-integrity-left .play-cyber-op-widgets {
|
||
order: 3;
|
||
flex-basis: 100%;
|
||
align-items: flex-end;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--ss-self-integrity-left .play-cyber-ss-integrity-canvas {
|
||
width: min(220px, 48vw);
|
||
}
|
||
/* Stack Tower: แผงโปรไฟล์วาดบน canvas — ซ่อนกล่อง portrait DOM ขวา ไม่ให้ซ้ำกับอวตารในแผง SYSTEM INTEGRITY */
|
||
#play-cyber-hud.play-cyber-hud--stack-tower-canvas-hud .play-cyber-self {
|
||
display: none !important;
|
||
}
|
||
/* Last Light (mno9kb07): แถบคะแนนแนวนอน — score.png แล้วตามด้วยสูงสุด 6 ช่อง (อวาตาร์ | ชื่อบน / คะแนนล่าง) */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-hint {
|
||
display: none !important;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-corruption,
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-preview-line {
|
||
display: none !important;
|
||
}
|
||
/* Last Light: แถวบน = SCORE ยืดซ้าย | OPERATOR ขวา — แถวล่าง = TIME ใต้ SCORE */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip {
|
||
display: grid;
|
||
grid-template-columns: minmax(0, 1fr) auto;
|
||
grid-template-rows: auto auto;
|
||
grid-template-areas:
|
||
'crownScore crownOp'
|
||
'crownTime crownOp';
|
||
align-items: start;
|
||
column-gap: clamp(10px, 2vw, 20px);
|
||
row-gap: 0.35rem;
|
||
box-sizing: border-box;
|
||
padding-top: max(50px, calc(env(safe-area-inset-top) + 38px));
|
||
padding-left: max(6px, env(safe-area-inset-left));
|
||
padding-right: max(8px, env(safe-area-inset-right));
|
||
padding-bottom: max(6px, env(safe-area-inset-bottom));
|
||
}
|
||
/* Last Light (ไม่ใช่ quiz_carry flush): จอให้ญ — ระยะ SCORE กับโปรไฟล์ + แถบคะแนนห่อได้ ไม่ชนมุมขวา */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip:not(.play-cyber-hud--score-flush-left) {
|
||
column-gap: clamp(12px, 2.8vw, 44px);
|
||
padding-right: max(12px, env(safe-area-inset-right));
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip:not(.play-cyber-hud--score-flush-left) .play-cyber-score-list.play-cyber-score-list--crown-strip {
|
||
flex-wrap: wrap;
|
||
overflow-x: visible;
|
||
overflow-y: visible;
|
||
align-content: flex-start;
|
||
row-gap: clamp(4px, 0.8vw, 10px);
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip:not(.play-cyber-hud--score-flush-left) .play-cyber-score-list.play-cyber-score-list--crown-strip::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0;
|
||
height: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-scoreboard.play-cyber-scoreboard--crown-strip {
|
||
padding-left: 0;
|
||
}
|
||
/* quiz_carry: แสดงผู้เล่นครบ — ไม่ scroll / ไม่ clip แนวนอน (ห่อหลายแถวได้) */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-score-list.play-cyber-score-list--crown-strip {
|
||
padding-left: 0;
|
||
overflow-x: visible;
|
||
overflow-y: visible;
|
||
flex-wrap: wrap;
|
||
max-height: none;
|
||
align-content: flex-start;
|
||
row-gap: clamp(4px, 0.8vw, 10px);
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-score-list.play-cyber-score-list--crown-strip::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0;
|
||
height: 0;
|
||
}
|
||
/* quiz_carry: TIME ชิดซ้ายกลางแนวตั้ง — แถวบน: SCORE + โปรไฟล์ (แผง SCORE อย่ายืด 1fr แล้วชิดซ้าย = ช่องว่างยาวถึงโปรไฟล์) */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left {
|
||
padding-left: env(safe-area-inset-left, 0px);
|
||
display: grid;
|
||
grid-template-columns: minmax(4.5rem, 17vw) minmax(0, 1fr) auto;
|
||
grid-template-rows: auto 1fr;
|
||
column-gap: clamp(2px, 0.55vw, 8px);
|
||
row-gap: 0.35rem;
|
||
align-items: start;
|
||
box-sizing: border-box;
|
||
min-height: 100%;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-center-stack {
|
||
grid-area: unset;
|
||
grid-column: 1;
|
||
grid-row: 1 / -1;
|
||
width: 100%;
|
||
max-width: none;
|
||
align-self: center;
|
||
justify-self: start;
|
||
display: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-scoreboard.play-cyber-scoreboard--crown-strip {
|
||
grid-area: unset;
|
||
grid-column: 2;
|
||
grid-row: 1;
|
||
justify-self: end;
|
||
align-self: start;
|
||
width: max-content;
|
||
max-width: 100%;
|
||
min-width: 0;
|
||
margin-left: 0;
|
||
margin-right: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-self {
|
||
grid-area: unset;
|
||
grid-column: 3;
|
||
grid-row: 1;
|
||
justify-self: start;
|
||
align-self: start;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-time-block {
|
||
text-align: left;
|
||
max-width: 100%;
|
||
min-width: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-time-head {
|
||
align-items: flex-start;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip.play-cyber-hud--score-flush-left .play-cyber-time-sub {
|
||
text-align: left;
|
||
max-width: 100%;
|
||
margin-left: 0;
|
||
margin-right: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-center-stack {
|
||
grid-area: crownTime;
|
||
position: static;
|
||
left: auto;
|
||
top: auto;
|
||
transform: none;
|
||
width: 100%;
|
||
min-width: 0;
|
||
max-width: none;
|
||
padding: 0;
|
||
align-items: flex-start;
|
||
justify-self: stretch;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-time-block {
|
||
min-width: 0;
|
||
text-align: left;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-time-head {
|
||
align-items: flex-start;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-time-sub {
|
||
max-width: min(100%, 320px);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
text-align: left;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-self {
|
||
grid-area: crownOp;
|
||
grid-row: 1 / -1;
|
||
justify-self: end;
|
||
align-self: start;
|
||
position: static;
|
||
top: auto;
|
||
right: auto;
|
||
margin-left: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
gap: 0.32rem;
|
||
}
|
||
/* Last Light / quiz_carry crown: บังคับแผง SCORE เข้า grid แนวนอน แม้คลาส --crown-strip ยังไม่ติด — กันแผงเก่า position:absolute ซ้อนแนวตั้งทับ TIME ซ้าย */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip > .play-cyber-scoreboard {
|
||
position: static;
|
||
top: auto;
|
||
left: auto;
|
||
right: auto;
|
||
grid-area: crownScore;
|
||
width: 100%;
|
||
min-width: 0;
|
||
max-width: none;
|
||
display: flex;
|
||
flex-direction: row;
|
||
flex-wrap: nowrap;
|
||
align-items: center;
|
||
gap: 0.55rem;
|
||
box-sizing: border-box;
|
||
background: transparent;
|
||
border: none;
|
||
box-shadow: none;
|
||
padding: 0.28rem 0.2rem 0.32rem 0;
|
||
}
|
||
/* รายการคะแนน crown: ห่อหลายแถวได้เสมอ — อย่าใช้ overflow-x:auto ตรงนี้ (คลาส --crown-strip อาจยังไม่ติดรอบแรก = เลื่อนแนวนอนกลับมา) */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip > .play-cyber-scoreboard .play-cyber-score-list {
|
||
display: flex;
|
||
flex-direction: row;
|
||
flex-wrap: wrap;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
gap: clamp(6px, 1vw, 12px);
|
||
row-gap: clamp(4px, 0.8vw, 10px);
|
||
flex: 1 1 auto;
|
||
min-width: 0;
|
||
max-height: none;
|
||
overflow-x: visible;
|
||
overflow-y: visible;
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip > .play-cyber-scoreboard .play-cyber-score-list::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0;
|
||
height: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-scoreboard.play-cyber-scoreboard--crown-strip {
|
||
grid-area: crownScore;
|
||
width: 100%;
|
||
min-width: 0;
|
||
max-width: none;
|
||
position: static;
|
||
left: auto;
|
||
right: auto;
|
||
top: auto;
|
||
padding: 0.28rem 0.2rem 0.32rem 0;
|
||
display: flex;
|
||
flex-direction: row;
|
||
flex-wrap: nowrap;
|
||
align-items: center;
|
||
gap: 0.55rem;
|
||
box-sizing: border-box;
|
||
background: transparent;
|
||
border: none;
|
||
box-shadow: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-panel-title {
|
||
flex: 0 0 auto;
|
||
align-self: center;
|
||
margin: 0 0.15rem 0 0;
|
||
padding: 0;
|
||
border-bottom: none;
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-weight: 800;
|
||
font-size: clamp(0.68rem, 1.9vmin, 0.86rem);
|
||
letter-spacing: 0.14em;
|
||
text-transform: uppercase;
|
||
color: #8afeff;
|
||
text-shadow:
|
||
0 0 14px rgba(0, 240, 255, 0.55),
|
||
0 0 28px rgba(0, 160, 255, 0.28),
|
||
0 1px 10px rgba(0, 0, 0, 0.75);
|
||
white-space: nowrap;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-crown-score-head {
|
||
flex: 0 0 auto;
|
||
align-self: center;
|
||
margin: 0;
|
||
line-height: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-crown-score-head img {
|
||
display: block;
|
||
height: clamp(16px, 3.2vmin, 26px);
|
||
width: auto;
|
||
max-width: min(42vw, 200px);
|
||
object-fit: contain;
|
||
object-position: left center;
|
||
image-rendering: auto;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-crown-score-head.is-hidden {
|
||
display: none !important;
|
||
margin: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-score-list.play-cyber-score-list--crown-strip {
|
||
display: flex;
|
||
flex-direction: row;
|
||
flex-wrap: wrap;
|
||
align-items: stretch;
|
||
align-content: flex-start;
|
||
gap: clamp(6px, 1vw, 12px);
|
||
row-gap: clamp(4px, 0.8vw, 10px);
|
||
flex: 1 1 auto;
|
||
min-width: 0;
|
||
max-height: none;
|
||
overflow-x: visible;
|
||
overflow-y: visible;
|
||
width: 100%;
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
padding: 0 0.2rem 0.2rem 0;
|
||
box-sizing: border-box;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-score-list.play-cyber-score-list--crown-strip::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0;
|
||
height: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-score-row--crown-strip {
|
||
display: flex;
|
||
flex: 0 0 auto;
|
||
flex-shrink: 0;
|
||
min-width: 7.1rem;
|
||
padding: 0.12rem 0.12rem 0.12rem 0;
|
||
box-sizing: border-box;
|
||
margin: 0;
|
||
border-bottom: none;
|
||
grid-template-columns: unset;
|
||
grid-template: none;
|
||
border-right: none;
|
||
background: transparent;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-crown-strip-cell {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
gap: 0.36rem;
|
||
width: auto;
|
||
min-width: 0;
|
||
max-width: none;
|
||
flex-shrink: 0;
|
||
box-sizing: border-box;
|
||
background: transparent;
|
||
}
|
||
/* คอขึ้นไป — โฟกัสใบหน้า+ไหล่ (ไม่ซูมจนเหลือแต่หน้าผาก) */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-crown-strip-av-wrap {
|
||
flex: 0 0 auto;
|
||
width: 36px;
|
||
height: 36px;
|
||
overflow: hidden;
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
box-sizing: border-box;
|
||
border-radius: 8px;
|
||
border: 1px solid rgba(0, 255, 240, 0.42);
|
||
background: rgba(0, 6, 12, 0.92);
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-score-av--crown-strip {
|
||
display: block;
|
||
position: relative;
|
||
left: auto;
|
||
top: auto;
|
||
width: 40px;
|
||
height: 40px;
|
||
max-width: none;
|
||
margin: 0;
|
||
border: none;
|
||
flex-shrink: 0;
|
||
object-fit: cover;
|
||
object-position: 50% 28%;
|
||
transform: scale(1.12);
|
||
transform-origin: 50% 42%;
|
||
image-rendering: pixelated;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-crown-strip-meta {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
justify-content: center;
|
||
gap: 0.12rem;
|
||
flex: 0 1 auto;
|
||
min-width: 3.75rem;
|
||
max-width: 9.5rem;
|
||
background: transparent;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-crown-strip-name {
|
||
font-family: 'Share Tech Mono', ui-monospace, monospace;
|
||
font-size: 0.46rem;
|
||
font-weight: 600;
|
||
letter-spacing: 0.06em;
|
||
text-transform: uppercase;
|
||
color: rgba(255, 255, 255, 0.9);
|
||
text-shadow: 0 1px 5px rgba(0, 0, 0, 0.75);
|
||
max-width: 100%;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-score-row--crown-strip.is-me .play-cyber-crown-strip-name {
|
||
color: #f2ffff;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-crown-strip-val {
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-size: clamp(0.72rem, 2.2vmin, 0.9rem);
|
||
font-weight: 800;
|
||
color: #7af8ff;
|
||
text-shadow:
|
||
0 0 14px rgba(122, 248, 255, 0.55),
|
||
0 0 26px rgba(0, 200, 255, 0.28),
|
||
0 1px 8px rgba(0, 0, 0, 0.88);
|
||
line-height: 1;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-time-val {
|
||
color: #7fffab;
|
||
text-shadow:
|
||
0 0 20px rgba(100, 255, 180, 0.55),
|
||
0 0 40px rgba(0, 255, 140, 0.25),
|
||
0 2px 12px rgba(0, 0, 0, 0.88);
|
||
}
|
||
/* Last Light: OPERATOR + ไมค์ / สถานะ */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-self-frame {
|
||
padding: 3px;
|
||
border-radius: 12px;
|
||
background: rgba(0, 12, 22, 0.55);
|
||
border: 1px solid rgba(0, 255, 240, 0.55);
|
||
box-shadow:
|
||
0 0 0 1px rgba(0, 0, 0, 0.45),
|
||
0 0 22px rgba(0, 230, 255, 0.42),
|
||
inset 0 0 18px rgba(0, 255, 240, 0.07);
|
||
overflow: hidden;
|
||
width: 58px;
|
||
height: 58px;
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
align-items: flex-start;
|
||
justify-content: center;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-self-frame img {
|
||
width: 64px;
|
||
height: 64px;
|
||
max-width: none;
|
||
margin: 0;
|
||
border-radius: 9px;
|
||
object-fit: cover;
|
||
object-position: 50% 0%;
|
||
transform: scale(1.38);
|
||
transform-origin: 50% 14%;
|
||
background: rgba(0, 6, 14, 0.75);
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-self-status {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
gap: 0.1rem;
|
||
max-width: min(200px, 42vw);
|
||
width: max-content;
|
||
font-size: 0;
|
||
letter-spacing: 0.08em;
|
||
line-height: 1.22;
|
||
text-align: left;
|
||
}
|
||
/* โทนเดียวกับแผง user embed คำถาม (editor mng8a80o): QUIZ LINK · + ประลองความรู้ */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-self-tagline {
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-size: clamp(0.44rem, 1.35vmin, 0.56rem);
|
||
font-weight: 700;
|
||
letter-spacing: 0.14em;
|
||
text-transform: uppercase;
|
||
color: #7af8ff;
|
||
text-shadow:
|
||
0 0 12px rgba(122, 248, 255, 0.55),
|
||
0 0 22px rgba(0, 200, 255, 0.28),
|
||
0 1px 8px rgba(0, 0, 0, 0.85);
|
||
white-space: nowrap;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-self-subtag {
|
||
font-family: 'Sarabun', 'Noto Sans Thai', system-ui, sans-serif;
|
||
font-size: clamp(0.48rem, 1.5vmin, 0.62rem);
|
||
font-weight: 600;
|
||
letter-spacing: 0.04em;
|
||
color: rgba(122, 248, 255, 0.92);
|
||
text-shadow:
|
||
0 0 10px rgba(0, 240, 255, 0.35),
|
||
0 1px 6px rgba(0, 0, 0, 0.82);
|
||
white-space: nowrap;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-self-nick-line {
|
||
font-family: 'Sarabun', 'Noto Sans Thai', 'Share Tech Mono', ui-monospace, monospace;
|
||
font-size: clamp(0.42rem, 1.35vmin, 0.52rem);
|
||
font-weight: 600;
|
||
letter-spacing: 0.06em;
|
||
text-transform: none;
|
||
color: rgba(232, 250, 255, 0.9);
|
||
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.82);
|
||
margin-top: 0.06rem;
|
||
max-width: 100%;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
.play-cyber-op-widgets {
|
||
display: none;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: flex-start;
|
||
gap: 0.25rem;
|
||
}
|
||
/* ไมค์ + กล่อง LINK (O) เป็นของตกแต่ง mock — ซ่อนไม่ให้ซ้ำ/สับสนกับคะแนนจริง (ผู้ใช้เห็นเป็นกล่อง 0 + สี่เหลี่ยม) */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-op-widgets {
|
||
display: none !important;
|
||
}
|
||
.play-cyber-link-status {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 30px;
|
||
height: 30px;
|
||
border-radius: 8px;
|
||
box-sizing: border-box;
|
||
border: 1px solid rgba(0, 255, 240, 0.48);
|
||
background: linear-gradient(180deg, rgba(0, 48, 58, 0.75), rgba(0, 12, 22, 0.92));
|
||
box-shadow:
|
||
0 0 14px rgba(0, 220, 255, 0.28),
|
||
inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-size: 0.58rem;
|
||
font-weight: 800;
|
||
letter-spacing: 0.04em;
|
||
color: rgba(255, 255, 255, 0.92);
|
||
line-height: 1;
|
||
}
|
||
.play-cyber-voice-chip {
|
||
display: none;
|
||
width: 30px;
|
||
height: 30px;
|
||
border-radius: 8px;
|
||
box-sizing: border-box;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border: 1px solid rgba(0, 255, 240, 0.48);
|
||
background: linear-gradient(180deg, rgba(0, 48, 58, 0.75), rgba(0, 12, 22, 0.92));
|
||
box-shadow:
|
||
0 0 14px rgba(0, 220, 255, 0.32),
|
||
inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
||
}
|
||
/* ไมค์/LINK อยู่ใน op-widgets ที่ซ่อนแล้ว — กันค่า display:flex เก่าทำให้เห็นเป็นเส้น/ชิปหลุด */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-voice-chip {
|
||
display: none !important;
|
||
}
|
||
/* Last Light เท่านั้น (ไม่มี score-flush-left เหมือน quiz_carry): ไม่แสดงกล่องข้อความ mock ข้างโปรไฟล์ */
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip:not(.play-cyber-hud--score-flush-left) .play-cyber-self-status {
|
||
display: none !important;
|
||
}
|
||
.play-cyber-voice-chip::after {
|
||
content: '';
|
||
display: block;
|
||
width: 9px;
|
||
height: 12px;
|
||
border: 2px solid rgba(255, 255, 255, 0.88);
|
||
border-radius: 4px 4px 5px 5px;
|
||
box-shadow: 0 4px 0 -2px rgba(255, 255, 255, 0.35);
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-head {
|
||
display: flex;
|
||
flex-direction: row;
|
||
flex-wrap: wrap;
|
||
align-items: baseline;
|
||
justify-content: center;
|
||
column-gap: 0.08rem;
|
||
row-gap: 0.12rem;
|
||
}
|
||
/* time.png = กราฟิกคำว่า TIME : ด้านซ้ายของตัวเลข */
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-head--qm-plaque .play-cyber-time-plaque-img {
|
||
display: block;
|
||
height: clamp(1rem, 3.4vmin, 1.55rem);
|
||
width: auto;
|
||
max-width: min(48vw, 200px);
|
||
object-fit: contain;
|
||
object-position: left center;
|
||
flex-shrink: 0;
|
||
margin-right: 0.12rem;
|
||
align-self: center;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-head--qm-plaque {
|
||
align-items: center;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-head--qm-plaque .play-cyber-time-label,
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-head--qm-plaque .play-cyber-time-colon {
|
||
display: none !important;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-colon {
|
||
display: inline;
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-size: clamp(0.88rem, 2.6vw, 1.15rem);
|
||
font-weight: 700;
|
||
color: rgba(232, 248, 255, 0.96);
|
||
text-shadow: 0 0 14px rgba(0, 255, 220, 0.42), 0 1px 10px rgba(0, 0, 0, 0.88);
|
||
margin: 0 0.1rem 0 0.06rem;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-label {
|
||
margin-bottom: 0;
|
||
font-size: clamp(0.88rem, 2.6vw, 1.12rem);
|
||
letter-spacing: 0.12em;
|
||
color: rgba(232, 248, 255, 0.96);
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-val {
|
||
filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85));
|
||
color: #7af8ff;
|
||
text-shadow:
|
||
0 0 18px rgba(122, 248, 255, 0.55),
|
||
0 0 36px rgba(0, 200, 255, 0.28),
|
||
0 2px 12px rgba(0, 0, 0, 0.9);
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-label,
|
||
#play-cyber-hud.play-cyber-hud--question-mission .play-cyber-time-sub {
|
||
text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.65);
|
||
}
|
||
.game-wrap.play-cyber-active .game-header {
|
||
background: linear-gradient(180deg, rgba(6, 10, 22, 0.94), rgba(12, 18, 36, 0.88));
|
||
border-bottom: 1px solid rgba(0, 255, 240, 0.22);
|
||
box-shadow: 0 0 24px rgba(0, 240, 255, 0.08);
|
||
}
|
||
.game-wrap.play-cyber-active .game-header span {
|
||
color: #7af8ff;
|
||
text-shadow: 0 0 12px rgba(0, 255, 240, 0.35);
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-weight: 600;
|
||
font-size: 0.82rem;
|
||
letter-spacing: 0.04em;
|
||
}
|
||
.game-wrap.play-cyber-active #btn-leave {
|
||
background: rgba(0, 40, 48, 0.85);
|
||
color: #7af8ff;
|
||
border: 1px solid rgba(0, 255, 240, 0.35);
|
||
font-family: 'Share Tech Mono', monospace;
|
||
font-size: 0.72rem;
|
||
letter-spacing: 0.06em;
|
||
}
|
||
.play-cyber-scoreboard {
|
||
position: absolute;
|
||
top: max(52px, calc(env(safe-area-inset-top) + 42px));
|
||
left: max(10px, env(safe-area-inset-left));
|
||
width: min(240px, 42vw);
|
||
padding: 0.5rem 0.55rem 0.6rem;
|
||
background: rgba(4, 8, 18, 0.08);
|
||
border: 1px solid rgba(0, 255, 240, 0.28);
|
||
border-radius: 4px;
|
||
box-shadow:
|
||
0 0 0 1px rgba(0, 0, 0, 0.5),
|
||
0 0 28px rgba(0, 200, 255, 0.12),
|
||
inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
||
}
|
||
.play-cyber-panel-title {
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-weight: 800;
|
||
font-size: 0.72rem;
|
||
letter-spacing: 0.2em;
|
||
color: #5cf0ff;
|
||
text-shadow: 0 0 14px rgba(92, 240, 255, 0.45);
|
||
margin-bottom: 0.35rem;
|
||
padding-bottom: 0.25rem;
|
||
border-bottom: 1px solid rgba(0, 255, 240, 0.2);
|
||
}
|
||
.play-cyber-panel-title.is-hidden {
|
||
display: none !important;
|
||
}
|
||
/* กล่องหัว score.png (Last Light) — บนแมปอื่นมี is-hidden แต่เดิมไม่มี display:none จึงเห็นกรอบว่างเหนือ SCORE */
|
||
#play-cyber-crown-score-head.is-hidden {
|
||
display: none !important;
|
||
margin: 0 !important;
|
||
padding: 0 !important;
|
||
height: 0 !important;
|
||
min-height: 0 !important;
|
||
overflow: hidden !important;
|
||
border: none !important;
|
||
}
|
||
.play-cyber-score-list {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 0;
|
||
max-height: 42vh;
|
||
overflow: auto;
|
||
}
|
||
.play-cyber-score-row {
|
||
display: grid;
|
||
grid-template-columns: 36px minmax(0, 1fr) minmax(2.75rem, auto);
|
||
align-items: center;
|
||
gap: 0.35rem;
|
||
padding: 0.28rem 0;
|
||
border-bottom: 1px solid rgba(0, 255, 240, 0.08);
|
||
}
|
||
.play-cyber-score-row:last-child { border-bottom: none; }
|
||
.play-cyber-score-row.is-me .play-cyber-score-name { color: #9efcff; }
|
||
.play-cyber-score-row.is-out { opacity: 0.45; }
|
||
.play-cyber-score-av {
|
||
width: 34px;
|
||
height: 34px;
|
||
object-fit: contain;
|
||
image-rendering: pixelated;
|
||
border: 1px solid rgba(0, 255, 240, 0.35);
|
||
border-radius: 2px;
|
||
background: rgba(0, 20, 30, 0.9);
|
||
}
|
||
.play-cyber-score-mid {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0.1rem;
|
||
min-width: 0;
|
||
}
|
||
.play-cyber-score-name {
|
||
font-size: 0.68rem;
|
||
font-weight: 700;
|
||
color: #c8f4ff;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.play-cyber-score-state {
|
||
font-size: 0.58rem;
|
||
letter-spacing: 0.08em;
|
||
color: rgba(0, 255, 200, 0.55);
|
||
}
|
||
.play-cyber-score-row.is-out .play-cyber-score-state { color: #f7768e; }
|
||
.play-cyber-score-val {
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-weight: 800;
|
||
font-size: 0.78rem;
|
||
color: #7af8ff;
|
||
text-shadow: 0 0 10px rgba(0, 255, 240, 0.35);
|
||
font-variant-numeric: tabular-nums;
|
||
text-align: right;
|
||
justify-self: end;
|
||
min-width: 2.5rem;
|
||
}
|
||
.play-cyber-lead-crown {
|
||
display: inline-block;
|
||
margin-right: 0.15rem;
|
||
filter: drop-shadow(0 0 6px rgba(255, 220, 120, 0.7));
|
||
}
|
||
/* กลางบน: TIME + (เฉพาะแมป quiz mng8a80o) แถบคำถาม */
|
||
.play-cyber-center-stack {
|
||
position: absolute;
|
||
top: max(52px, calc(env(safe-area-inset-top) + 38px));
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: clamp(4px, 1vmin, 12px);
|
||
z-index: 4;
|
||
max-width: min(94vw, 760px);
|
||
pointer-events: none;
|
||
}
|
||
.play-cyber-time-block {
|
||
position: relative;
|
||
left: auto;
|
||
top: auto;
|
||
transform: none;
|
||
text-align: center;
|
||
min-width: 120px;
|
||
}
|
||
.play-cyber-time-head {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
.play-cyber-time-plaque-img {
|
||
display: none;
|
||
}
|
||
.play-cyber-time-colon {
|
||
display: none;
|
||
line-height: 1;
|
||
}
|
||
.play-cyber-quiz-mission-q-band {
|
||
position: relative;
|
||
width: min(92vw, 680px);
|
||
max-width: 100%;
|
||
padding: clamp(10px, 2vmin, 18px) clamp(12px, 2.5vmin, 22px);
|
||
box-sizing: border-box;
|
||
text-align: center;
|
||
}
|
||
/* is-hidden ใช้ทั่วโปรเจกต์แต่หลายจุดไม่มีกฎ display:none — แถบนี้ซ่อนแล้วต้องไม่กินที่และไม่เห็นกรอบว่าง */
|
||
#play-cyber-quiz-mission-q-band.is-hidden {
|
||
display: none !important;
|
||
}
|
||
.play-cyber-quiz-mission-q-plaque {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: fill;
|
||
object-position: center;
|
||
z-index: 0;
|
||
pointer-events: none;
|
||
opacity: 0.95;
|
||
}
|
||
.play-cyber-quiz-mission-q-text {
|
||
position: relative;
|
||
z-index: 1;
|
||
margin: 0;
|
||
font-family: 'Sarabun', 'Noto Sans Thai', system-ui, sans-serif;
|
||
font-size: clamp(0.78rem, 2.1vw, 1.05rem);
|
||
font-weight: 700;
|
||
line-height: 1.45;
|
||
color: #ffe066;
|
||
text-shadow:
|
||
0 0 12px rgba(255, 200, 80, 0.55),
|
||
0 2px 14px rgba(0, 0, 0, 0.85);
|
||
white-space: pre-line;
|
||
overflow-wrap: anywhere;
|
||
word-break: break-word;
|
||
}
|
||
.play-cyber-time-label {
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-size: 0.62rem;
|
||
font-weight: 700;
|
||
letter-spacing: 0.28em;
|
||
color: rgba(0, 255, 200, 0.55);
|
||
margin-bottom: 0.15rem;
|
||
}
|
||
.play-cyber-time-val {
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-weight: 800;
|
||
font-size: clamp(1.5rem, 4.5vw, 2rem);
|
||
line-height: 1;
|
||
color: #7fffab;
|
||
text-shadow:
|
||
0 0 20px rgba(100, 255, 180, 0.55),
|
||
0 0 40px rgba(0, 255, 140, 0.25);
|
||
}
|
||
.play-cyber-time-sub {
|
||
margin-top: 0.25rem;
|
||
font-size: 0.58rem;
|
||
letter-spacing: 0.12em;
|
||
color: rgba(122, 248, 255, 0.5);
|
||
max-width: 70vw;
|
||
}
|
||
/* พรีวิวใน iframe เอดิเตอร์: แสดงค่าซูม (×) ใต้บรรทัดคำอธิบายใต้เวลา — เช่น Last Light mno9kb07 */
|
||
.play-cyber-embed-zoom-hint {
|
||
margin-top: 0.12rem;
|
||
font-size: 0.62rem;
|
||
font-weight: 700;
|
||
letter-spacing: 0.06em;
|
||
color: rgba(160, 255, 220, 0.72);
|
||
text-shadow: 0 0 10px rgba(0, 255, 180, 0.35);
|
||
line-height: 1.2;
|
||
}
|
||
#play-cyber-embed-zoom-hint.is-hidden {
|
||
display: none !important;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--gauntlet-crown-strip .play-cyber-embed-zoom-hint {
|
||
text-align: left;
|
||
max-width: min(100%, 320px);
|
||
}
|
||
/* Last Light mno9kb07: ซ่อนกล่องเวลา + ตัวเลข TIME + ซูม embed (ไม่ใช้เวลาในโหมดนี้) */
|
||
#play-cyber-hud.play-cyber-hud--last-light-no-time .play-cyber-time-block {
|
||
display: none !important;
|
||
}
|
||
.play-cyber-self {
|
||
position: absolute;
|
||
top: max(52px, calc(env(safe-area-inset-top) + 38px));
|
||
right: max(10px, env(safe-area-inset-right));
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 0.35rem;
|
||
}
|
||
.play-cyber-self-frame {
|
||
padding: 4px;
|
||
background: linear-gradient(145deg, rgba(0, 60, 70, 0.9), rgba(0, 20, 35, 0.95));
|
||
border: 1px solid rgba(0, 255, 240, 0.45);
|
||
border-radius: 6px;
|
||
box-shadow:
|
||
0 0 24px rgba(0, 200, 255, 0.2),
|
||
inset 0 0 20px rgba(0, 255, 240, 0.06);
|
||
}
|
||
/* wrapper โปร่ง (display:contents) — เกมอื่นไม่เปลี่ยน; เฉพาะ quiz-tf-mock จะใช้เป็นกล่อง clip หน้า */
|
||
.play-cyber-portrait-clip {
|
||
display: contents;
|
||
}
|
||
.play-cyber-self-frame img {
|
||
display: block;
|
||
width: 72px;
|
||
height: 72px;
|
||
object-fit: contain;
|
||
image-rendering: pixelated;
|
||
background: rgba(0, 8, 16, 0.9);
|
||
}
|
||
.play-cyber-self-status {
|
||
font-size: 0.58rem;
|
||
letter-spacing: 0.14em;
|
||
color: #5cf0ff;
|
||
text-shadow: 0 0 8px rgba(92, 240, 255, 0.4);
|
||
max-width: 100px;
|
||
text-align: center;
|
||
line-height: 1.3;
|
||
}
|
||
.play-cyber-hint {
|
||
position: absolute;
|
||
top: max(200px, calc(env(safe-area-inset-top) + 168px));
|
||
left: max(10px, env(safe-area-inset-left));
|
||
width: min(280px, 48vw);
|
||
font-size: 0.62rem;
|
||
line-height: 1.45;
|
||
color: rgba(180, 230, 255, 0.72);
|
||
text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
|
||
}
|
||
.play-cyber-preview-line {
|
||
position: absolute;
|
||
bottom: max(88px, calc(env(safe-area-inset-bottom) + 72px));
|
||
left: max(10px, env(safe-area-inset-left));
|
||
right: max(56px, env(safe-area-inset-right));
|
||
font-size: 0.6rem;
|
||
letter-spacing: 0.06em;
|
||
color: rgba(255, 200, 120, 0.85);
|
||
text-shadow: 0 0 10px rgba(255, 180, 80, 0.35);
|
||
}
|
||
.play-cyber-preview-line.is-hidden { display: none !important; }
|
||
.play-cyber-corruption {
|
||
position: absolute;
|
||
bottom: 0;
|
||
left: 0;
|
||
right: 0;
|
||
height: clamp(56px, 14vh, 100px);
|
||
background: linear-gradient(0deg, rgba(120, 0, 20, 0.55), rgba(180, 20, 40, 0.22) 40%, transparent);
|
||
overflow: hidden;
|
||
pointer-events: none;
|
||
}
|
||
.play-cyber-corruption-scanlines {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: repeating-linear-gradient(
|
||
0deg,
|
||
transparent,
|
||
transparent 2px,
|
||
rgba(0, 0, 0, 0.12) 2px,
|
||
rgba(0, 0, 0, 0.12) 3px
|
||
);
|
||
opacity: 0.85;
|
||
animation: play-cyber-scan 6s linear infinite;
|
||
}
|
||
@keyframes play-cyber-scan {
|
||
from { transform: translateY(0); }
|
||
to { transform: translateY(6px); }
|
||
}
|
||
.play-cyber-corruption-text {
|
||
position: absolute;
|
||
bottom: 0.45rem;
|
||
left: 0.75rem;
|
||
right: 0.75rem;
|
||
font-size: 0.58rem;
|
||
letter-spacing: 0.1em;
|
||
color: rgba(255, 160, 170, 0.9);
|
||
text-shadow: 0 0 12px rgba(255, 80, 100, 0.5);
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
animation: play-cyber-glitch 4.5s steps(2) infinite;
|
||
}
|
||
@keyframes play-cyber-glitch {
|
||
0%, 100% { opacity: 1; }
|
||
50% { opacity: 0.82; }
|
||
}
|
||
.play-canvas-stack.play-cyber-vignette::after {
|
||
content: '';
|
||
position: absolute;
|
||
inset: 0;
|
||
pointer-events: none;
|
||
box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
|
||
border-radius: inherit;
|
||
}
|
||
|
||
/* =========================================================
|
||
mng8a80o เท่านั้น — HUD สไตล์ mockup Minigame-1 "จริงหรือไม่"
|
||
scope: #play-cyber-hud.play-cyber-hud--quiz-tf-mock
|
||
+ #gauntlet-crown-howto-overlay.gch-quiz-tf-mock
|
||
responsive-faithful: สัดส่วนเหมือน mockup บนจอ 16:9 แต่ยังเล่นมือถือได้
|
||
(ไม่กระทบ Stack/Jumper/Space ที่ใช้ --question-mission ร่วมกัน)
|
||
========================================================= */
|
||
/* ====== fix layout 1920×1080 แล้ว scale ทั้งก้อน (เทียบ scale.js ของ mockup) ======
|
||
--qtf-scale ตั้งจาก JS = min(W/1920, H/1080) → ทุกชิ้นเป็น px คงที่ ตรง mockup เป๊ะบนจอ 16:9
|
||
selector มี html + .play-cyber-hud ซ้ำ เพื่อชนะ rule editor-embed (position:absolute; inset:0) */
|
||
html #play-cyber-hud.play-cyber-hud.play-cyber-hud--quiz-tf-mock {
|
||
width: 1920px;
|
||
height: 1080px;
|
||
inset: auto;
|
||
left: 50%;
|
||
top: 50%;
|
||
transform: translate(-50%, -50%) scale(var(--qtf-scale, 1));
|
||
transform-origin: center center;
|
||
}
|
||
/* ---- SCORE panel: score-bar.png 156×433 @ (2,16) (เหมือน mockup) ---- */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-scoreboard {
|
||
position: absolute;
|
||
left: 2px;
|
||
top: 16px;
|
||
width: 156px;
|
||
height: 433px;
|
||
aspect-ratio: auto;
|
||
padding: 0;
|
||
background: url('/Game/img/QUESTION/score-bar.png') no-repeat left top / 156px 433px;
|
||
border: none;
|
||
border-radius: 0;
|
||
box-shadow: none;
|
||
overflow: hidden;
|
||
}
|
||
/* หัว SCORE อยู่ในภาพ score-bar.png แล้ว — ซ่อน title text กันซ้ำ */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-panel-title {
|
||
display: none !important;
|
||
}
|
||
/* list @ (16,60) width136 — rows แบ่งพื้นที่เท่ากัน (5 คน ≈ 70px ตาม mockup, 6 คนหดพอดี ไม่ล้น) */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-score-list {
|
||
position: absolute;
|
||
left: 16px;
|
||
top: 60px;
|
||
width: 136px;
|
||
height: 357px;
|
||
max-height: none;
|
||
padding: 0;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: flex-start;
|
||
gap: 5px;
|
||
overflow: hidden;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-score-row--qm-mock {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
padding: 0;
|
||
border-bottom: none;
|
||
flex: 1 1 0;
|
||
min-height: 0;
|
||
max-height: 70px;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-qm-left {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
gap: 10px;
|
||
flex: 1 1 auto;
|
||
min-width: 0;
|
||
height: 100%;
|
||
}
|
||
/* avatar (≈70px) : กรอบ score-avartar.png กลางทึบ navy → ใช้เป็น "พื้นหลัง", หน้าตัวละครวาง "ทับบน" + clip ในขอบ
|
||
(มองไม่เห็นถ้าวางหน้าใต้กรอบ เพราะกลางกรอบทึบ — ต่างจาก mockup ที่ <img> ว่าง) */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-qm-av-wrap {
|
||
position: relative;
|
||
height: 100%;
|
||
aspect-ratio: 1 / 1;
|
||
width: auto;
|
||
flex: 0 0 auto;
|
||
border: none;
|
||
border-radius: 0;
|
||
overflow: visible;
|
||
background: url('/Game/img/QUESTION/score-avartar.png') no-repeat center / 100% 100%;
|
||
}
|
||
/* clip = ช่อง navy ในกรอบ (เว้นขอบ cyan ~4px/70≈6%) — หน้าตัวละครถูก crop ในนี้ วางทับ navy */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-qm-av-clip {
|
||
position: absolute;
|
||
inset: 7%;
|
||
overflow: hidden;
|
||
border-radius: 12%;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-score-row--qm-mock .play-cyber-score-av--qm {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
object-position: center center;
|
||
border: none;
|
||
border-radius: 0;
|
||
transform: none;
|
||
background: transparent;
|
||
}
|
||
/* meta: ชื่อบน / คะแนนล่าง (ตาม mockup .meta) */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-qm-meta {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
gap: 1px;
|
||
min-width: 0;
|
||
flex: 1 1 auto;
|
||
line-height: 1.05;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-qm-name {
|
||
font-family: 'NotoSansThai', 'Kanit', sans-serif;
|
||
font-weight: 700;
|
||
font-size: 11px;
|
||
letter-spacing: 0.2px;
|
||
text-transform: uppercase;
|
||
color: #e8f4ff;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
max-width: 100%;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-qm-score {
|
||
font-family: 'NotoSansThai', 'Orbitron', sans-serif;
|
||
font-weight: 900;
|
||
font-size: 22px;
|
||
line-height: 1;
|
||
color: #ffffff;
|
||
text-align: left;
|
||
min-width: 0;
|
||
text-shadow: 0 0 8px rgba(120, 220, 255, 0.6);
|
||
}
|
||
|
||
/* ---- TIME @ center top:23 — time.png 131×71 + เลข 42px (mockup .mg-time) ---- */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-center-stack {
|
||
top: 23px;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
gap: 0;
|
||
max-width: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-time-head--qm-plaque {
|
||
flex-direction: row;
|
||
align-items: center;
|
||
gap: 10px;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-time-head--qm-plaque .play-cyber-time-plaque-img {
|
||
height: 71px;
|
||
width: auto;
|
||
max-width: none;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-time-val {
|
||
font-family: 'NotoSansThai', sans-serif;
|
||
font-weight: 900;
|
||
font-size: 42px;
|
||
height: 71px;
|
||
line-height: 71px;
|
||
letter-spacing: 1px;
|
||
color: #e6f6ff;
|
||
text-shadow:
|
||
0 0 10px rgba(120, 220, 255, 0.85),
|
||
0 0 22px rgba(80, 180, 240, 0.55);
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-time-sub {
|
||
display: none !important;
|
||
}
|
||
|
||
/* ---- Host @ (1729,21) 201×201 + face window 104×104@(49,49) + mic 121@(1796,205) (mockup) ---- */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-self {
|
||
position: absolute;
|
||
left: 1729px;
|
||
top: 21px;
|
||
right: auto;
|
||
width: 201px;
|
||
height: 201px;
|
||
display: block;
|
||
gap: 0;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-self-frame {
|
||
position: absolute;
|
||
inset: 0;
|
||
padding: 0;
|
||
border: none;
|
||
border-radius: 0;
|
||
box-shadow: none;
|
||
background: url('/Game/img/QUESTION/Avartar.png') no-repeat center / 201px 201px;
|
||
width: 201px;
|
||
height: 201px;
|
||
overflow: visible;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-portrait-clip {
|
||
display: block;
|
||
position: absolute;
|
||
left: 49px;
|
||
top: 49px;
|
||
width: 104px;
|
||
height: 104px;
|
||
overflow: hidden;
|
||
border-radius: 8px;
|
||
}
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-self-frame img {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
object-position: center 26%;
|
||
transform: scale(1.32);
|
||
transform-origin: center 32%;
|
||
border-radius: 0;
|
||
background: transparent;
|
||
}
|
||
/* mockup มุมขวาบนมีแค่กรอบ + mic — ซ่อน status/op widgets ให้สะอาด */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-self-status,
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-op-widgets {
|
||
display: none !important;
|
||
}
|
||
/* mic 121px @ (1796,205) → relative to host (1729,21) = (67,184) */
|
||
#play-cyber-hud.play-cyber-hud--quiz-tf-mock .play-cyber-self::after {
|
||
content: '';
|
||
position: absolute;
|
||
left: 67px;
|
||
top: 184px;
|
||
width: 121px;
|
||
height: 121px;
|
||
background: url('/Game/img/QUESTION/btn-mic_on.png') no-repeat center / contain;
|
||
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
|
||
pointer-events: none;
|
||
}
|
||
|
||
/* ====== Popup HOW TO PLAY (mng8a80o) — fix stage 1920×1080 แล้ว scale ทั้งก้อนตาม mockup 01-howto ======
|
||
scope: #gauntlet-crown-howto-overlay.gch-quiz-tf-mock · --gch-tf-scale = min(W/1920,H/1080) */
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-shell {
|
||
width: 1920px !important;
|
||
height: 1080px !important;
|
||
min-width: 1920px !important;
|
||
max-width: none !important;
|
||
min-height: 1080px !important;
|
||
max-height: none !important;
|
||
flex: none !important;
|
||
padding: 0 !important;
|
||
border-radius: 0;
|
||
display: block;
|
||
transform: scale(var(--gch-tf-scale, 0.62));
|
||
transform-origin: center center;
|
||
}
|
||
/* popup-Howto.png 1451×851 → mockup โชว์ 1500×880 @ (50%, 50px) */
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-bg {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 50px;
|
||
transform: translateX(-50%);
|
||
width: 1500px;
|
||
height: 880px;
|
||
max-height: none;
|
||
object-fit: fill;
|
||
filter: none;
|
||
}
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-inner.gch-inner--art {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 1920px;
|
||
height: 1080px;
|
||
transform: none;
|
||
padding: 0;
|
||
}
|
||
/* footer คลุมเต็ม stage — วาง status/ปุ่ม ด้วยพิกัด mockup */
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-inner.gch-inner--art .gch-art-footer {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
right: auto;
|
||
bottom: auto;
|
||
width: 1920px;
|
||
height: 1080px;
|
||
transform: none;
|
||
display: block;
|
||
gap: 0;
|
||
}
|
||
/* status "Ready Status : x/y" @ (50%, 808px) สีชมพู 22px (mockup .howto-status) */
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-inner.gch-inner--art .gch-status {
|
||
position: absolute;
|
||
left: 0;
|
||
right: 0;
|
||
top: 808px;
|
||
transform: none;
|
||
width: -moz-fit-content;
|
||
width: fit-content;
|
||
max-width: 100%;
|
||
margin: 0 auto;
|
||
text-align: center;
|
||
white-space: nowrap;
|
||
font-family: 'NotoSansThai', sans-serif;
|
||
font-weight: 700;
|
||
font-size: 22px;
|
||
letter-spacing: 0.5px;
|
||
color: #f067e8;
|
||
text-shadow:
|
||
0 0 10px rgba(240, 103, 232, 0.6),
|
||
0 0 22px rgba(237, 86, 224, 0.35);
|
||
}
|
||
/* ปุ่ม READY/START — btn 299×120 (height 120, aspect 2.49) center @ (957, 885) */
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-inner.gch-inner--art .btn-gch-ready {
|
||
position: absolute;
|
||
left: 0;
|
||
right: 0;
|
||
top: 825px;
|
||
transform: none;
|
||
width: 299px;
|
||
height: 120px;
|
||
margin: 0 auto;
|
||
background-image: url('/Game/img/QUESTION/btn-ready.png');
|
||
background-repeat: no-repeat;
|
||
background-position: center;
|
||
background-size: contain;
|
||
filter: drop-shadow(0 0 18px rgba(120, 220, 255, 0.65));
|
||
font-size: 0;
|
||
color: transparent;
|
||
text-indent: -9999px;
|
||
overflow: hidden;
|
||
border: none;
|
||
}
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-inner.gch-inner--art .btn-gch-ready.is-start-phase {
|
||
background-image: url('/Game/img/QUESTION/btn-start.png');
|
||
}
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-inner.gch-inner--art .btn-gch-ready:hover {
|
||
transform: translateY(-3px);
|
||
filter: drop-shadow(0 0 28px rgba(120, 220, 255, 0.95));
|
||
}
|
||
#gauntlet-crown-howto-overlay.gch-quiz-tf-mock .gch-inner.gch-inner--art .btn-gch-ready:active {
|
||
transform: translateY(2px);
|
||
}
|
||
|
||
/* ====== หน้าสรุปผลภารกิจ (mng8a80o) — fix popup 1451×851 แล้ว scale ทั้งก้อนตาม mockup 06-summary ======
|
||
scope: #gauntlet-crown-mission-overlay.gcm-quiz-tf-mock
|
||
พิกัด px = sm-content ของ mockup (อิง popup origin) · --gcm-tf-scale ตั้งจาก JS = min(W/1920,H/1080) */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-shell {
|
||
width: 1451px;
|
||
height: 851px;
|
||
max-width: none;
|
||
max-height: none;
|
||
padding: 0;
|
||
border-radius: 0;
|
||
transform: scale(var(--gcm-tf-scale, 0.62));
|
||
transform-origin: center center;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bg {
|
||
width: 1451px;
|
||
height: 851px;
|
||
max-height: none;
|
||
object-fit: fill;
|
||
filter: none;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-inner {
|
||
left: 0;
|
||
top: 0;
|
||
transform: none;
|
||
width: 1451px;
|
||
height: 851px;
|
||
max-height: none;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
border-radius: 0;
|
||
}
|
||
/* heading "สรุปผลภารกิจ" อยู่ในภาพ popup-result.png แล้ว (play.js ใส่ sr-only) — กันเผื่อ */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-header-tab {
|
||
display: none !important;
|
||
}
|
||
/* ranks: 5 ช่อง ×137 gap30 @ (323,168) width805 (mockup .sm-ranks) */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-rank-row {
|
||
position: absolute;
|
||
left: 323px;
|
||
top: 168px;
|
||
width: 805px;
|
||
margin: 0;
|
||
padding: 0;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: flex-start;
|
||
justify-content: center;
|
||
gap: 30px;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-cell {
|
||
flex: 0 0 137px;
|
||
width: 137px;
|
||
min-width: 137px;
|
||
text-align: center;
|
||
position: relative;
|
||
margin: 0;
|
||
padding: 0;
|
||
display: block;
|
||
}
|
||
/* badge อันดับ (result-1st/2nd/3rd / txt-1/2) — .pos 41×21 */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-rank-tag {
|
||
color: transparent;
|
||
margin: 0 auto 6px;
|
||
min-height: 0;
|
||
height: 21px;
|
||
display: block;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-rank-tag img {
|
||
display: block;
|
||
width: 41px;
|
||
height: 21px;
|
||
margin: 0 auto;
|
||
object-fit: contain;
|
||
}
|
||
/* กรอบ avatar — mockup: portrait z2 ใต้ frame img z3 (137×137) */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-frame {
|
||
position: relative;
|
||
width: 137px;
|
||
height: 137px;
|
||
margin: 0 auto 4px;
|
||
border: none;
|
||
box-shadow: none;
|
||
border-radius: 0;
|
||
background: transparent;
|
||
overflow: visible;
|
||
flex: none;
|
||
aspect-ratio: auto;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-av-clip {
|
||
position: absolute;
|
||
inset: 10px;
|
||
z-index: 4;
|
||
overflow: hidden;
|
||
border-radius: 14%;
|
||
background: transparent;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-frame img.gcm-av {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
max-height: 100%;
|
||
object-fit: cover;
|
||
object-position: center 34%;
|
||
transform: translateY(-11px);
|
||
border-radius: 0;
|
||
image-rendering: auto;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-frame img.gcm-frame-img {
|
||
position: absolute;
|
||
inset: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: 3;
|
||
pointer-events: none;
|
||
object-fit: contain;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-cell--out .gcm-av-clip,
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-cell--out .gcm-frame img.gcm-av,
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-cell--out .gcm-frame img.gcm-frame-img {
|
||
filter: opacity(0.5);
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-frame img.gcm-stamp {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 50%;
|
||
transform: translate(-50%, -50%) rotate(-8deg);
|
||
width: 114px;
|
||
height: auto;
|
||
z-index: 5;
|
||
pointer-events: none;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-nick {
|
||
display: block;
|
||
flex: none;
|
||
min-height: 0;
|
||
width: 100%;
|
||
font-family: 'NotoSansThai', 'Kanit', sans-serif;
|
||
font-weight: 900;
|
||
font-size: 15px;
|
||
color: #fff;
|
||
letter-spacing: 0.3px;
|
||
line-height: 1.2;
|
||
height: 19px;
|
||
margin: 0 0 2px;
|
||
padding: 0 2px;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-sc {
|
||
display: block;
|
||
flex: none;
|
||
width: 100%;
|
||
margin: 0;
|
||
padding: 0;
|
||
text-align: center;
|
||
font-family: 'NotoSansThai', sans-serif;
|
||
font-weight: 900;
|
||
font-size: 26px;
|
||
color: #fff;
|
||
line-height: 1;
|
||
font-variant-numeric: normal;
|
||
text-shadow: 0 0 10px rgba(120, 220, 255, 0.4);
|
||
}
|
||
/* คะแนนรวม @ top394 กว้าง 938 กลาง + เส้น Line1 บน/ล่าง (mockup .sm-total + .sm-line) */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-total {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 394px;
|
||
width: 938px;
|
||
transform: translateX(-50%);
|
||
margin: 0;
|
||
padding: 6px 0;
|
||
text-align: center;
|
||
font-family: 'NotoSansThai', sans-serif;
|
||
font-weight: 700;
|
||
font-size: 24px;
|
||
color: #ffd047;
|
||
letter-spacing: 0.3px;
|
||
line-height: 1.2;
|
||
border-width: 3px 0;
|
||
border-style: solid;
|
||
border-image: url('/Game/img/QUESTION/popup-result-Line1.png') 3 stretch;
|
||
text-shadow: 0 0 10px rgba(255, 200, 80, 0.45), 0 2px 4px rgba(0, 0, 0, 0.6);
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-total-nums {
|
||
font-weight: 900;
|
||
font-size: 40px;
|
||
color: #fff;
|
||
margin-left: 6px;
|
||
text-shadow: 0 0 14px rgba(120, 220, 255, 0.55);
|
||
}
|
||
/* โซนล่าง @ (72,460) สูง 270: เกรด | เส้น Line2 | โบนัส (mockup .sm-bottom) */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bottom {
|
||
position: absolute;
|
||
left: 72px;
|
||
right: 72px;
|
||
top: 460px;
|
||
height: 270px;
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
column-gap: 0;
|
||
align-items: start;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bottom > div:first-child {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: flex-start;
|
||
margin-top: 41px;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bottom > div:last-child {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
justify-content: flex-start;
|
||
padding-left: 40px;
|
||
padding-top: 42px;
|
||
border-left: 4px solid;
|
||
border-image: url('/Game/img/QUESTION/popup-result-Line2.png') 4 stretch;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bottom > div:last-child .gcm-h {
|
||
width: 100%;
|
||
text-align: left;
|
||
padding-left: 23px;
|
||
margin-bottom: 8px;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-h {
|
||
font-family: 'NotoSansThai', sans-serif;
|
||
font-weight: 700;
|
||
font-size: 40px;
|
||
color: #fff;
|
||
margin: 0 0 12px;
|
||
line-height: 1.2;
|
||
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-grade {
|
||
color: #fff !important;
|
||
font-family: 'NotoSansThai', sans-serif;
|
||
font-weight: 900;
|
||
font-size: 96px;
|
||
line-height: 0.95;
|
||
text-shadow:
|
||
0 0 16px rgba(120, 220, 255, 0.65),
|
||
0 0 32px rgba(80, 180, 240, 0.4) !important;
|
||
}
|
||
/* โบนัส: mission-complete-select.png (271×90) แทน check+ข้อความ + ซ่อน plaque (ตรง mockup) */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bonus {
|
||
display: block;
|
||
width: 271px;
|
||
padding-left: 23px;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bonus .gcm-bonus-okrow {
|
||
display: block !important;
|
||
gap: 0 !important;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bonus .gcm-bonus-okrow span {
|
||
display: none !important;
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-bonus img {
|
||
width: 271px !important;
|
||
height: 90px !important;
|
||
max-width: none;
|
||
max-height: none;
|
||
object-fit: contain;
|
||
filter: drop-shadow(0 0 10px rgba(91, 255, 141, 0.45));
|
||
}
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .gcm-plaque {
|
||
display: none !important;
|
||
}
|
||
/* ปุ่มรับหลักฐาน @ (550,704) 351×141 (mockup .sm-btn-done) */
|
||
#gauntlet-crown-mission-overlay.gcm-quiz-tf-mock .btn-gcm-done {
|
||
position: absolute;
|
||
left: 550px;
|
||
top: 704px;
|
||
width: 351px;
|
||
height: 141px;
|
||
margin: 0;
|
||
background-image: url('/Game/img/QUESTION/btn-done.png');
|
||
background-repeat: no-repeat;
|
||
background-position: center;
|
||
background-size: contain;
|
||
}
|
||
|
||
/* Quiz Battle — MCQ โดม (กด E) */
|
||
#quiz-battle-mcq-overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 10076;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
|
||
box-sizing: border-box;
|
||
}
|
||
#quiz-battle-mcq-overlay.is-hidden { display: none !important; }
|
||
.quiz-battle-mcq-backdrop {
|
||
position: absolute;
|
||
inset: 0;
|
||
background: rgba(6, 8, 20, 0.82);
|
||
backdrop-filter: blur(8px);
|
||
}
|
||
.quiz-battle-mcq-card {
|
||
position: relative;
|
||
max-width: min(92vw, 440px);
|
||
width: 100%;
|
||
background: linear-gradient(165deg, rgba(14, 18, 36, 0.97), rgba(8, 12, 28, 0.98));
|
||
border: 1px solid rgba(0, 255, 240, 0.28);
|
||
border-radius: 14px;
|
||
padding: 1.1rem 1.15rem 1rem;
|
||
box-shadow:
|
||
0 0 0 1px rgba(0, 0, 0, 0.5),
|
||
0 0 40px rgba(0, 200, 255, 0.12);
|
||
font-family: 'Share Tech Mono', ui-monospace, monospace;
|
||
}
|
||
.quiz-battle-mcq-title {
|
||
margin: 0 0 0.6rem;
|
||
font-family: 'Orbitron', sans-serif;
|
||
font-size: 0.78rem;
|
||
font-weight: 800;
|
||
letter-spacing: 0.16em;
|
||
color: #5cf0ff;
|
||
text-shadow: 0 0 12px rgba(92, 240, 255, 0.4);
|
||
}
|
||
.quiz-battle-mcq-text {
|
||
margin: 0 0 1rem;
|
||
font-size: clamp(0.9rem, 2.8vw, 1.05rem);
|
||
line-height: 1.5;
|
||
color: #e2e8f0;
|
||
font-weight: 600;
|
||
}
|
||
.quiz-battle-mcq-actions {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0.45rem;
|
||
margin-bottom: 0.65rem;
|
||
}
|
||
.quiz-battle-choice {
|
||
width: 100%;
|
||
text-align: left;
|
||
padding: 0.55rem 0.75rem;
|
||
border-radius: 8px;
|
||
border: 1px solid rgba(122, 162, 247, 0.45);
|
||
background: rgba(20, 28, 48, 0.95);
|
||
color: #c0caf5;
|
||
font-size: 0.82rem;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: border-color 0.15s, box-shadow 0.15s;
|
||
}
|
||
.quiz-battle-choice:hover {
|
||
border-color: rgba(0, 255, 240, 0.55);
|
||
box-shadow: 0 0 16px rgba(0, 200, 255, 0.15);
|
||
}
|
||
#quiz-battle-mcq-close {
|
||
width: 100%;
|
||
margin-top: 0.15rem;
|
||
padding: 0.45rem;
|
||
border: none;
|
||
border-radius: 8px;
|
||
background: rgba(60, 70, 100, 0.6);
|
||
color: #a9b1d6;
|
||
font-weight: 700;
|
||
cursor: pointer;
|
||
font-size: 0.78rem;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="game-wrap">
|
||
<div class="game-header">
|
||
<span id="room-id"></span>
|
||
<button id="btn-leave">ออกจากห้อง</button>
|
||
</div>
|
||
<div class="play-canvas-stack" id="play-canvas-stack">
|
||
<div id="play-canvas-stage" class="play-canvas-stage">
|
||
<canvas id="game-canvas"></canvas>
|
||
</div>
|
||
<button type="button" id="quiz-carry-grab-btn" class="is-hidden" aria-label="หยิบหรือส่งคำตอบ (Grab)" title="หยิบ / ส่งคำตอบ — เหมือนกด F">
|
||
<img src="/Game/img/quiz-carry/btn-grab.png" alt="" width="256" height="256" decoding="async" />
|
||
</button>
|
||
<button type="button" id="gauntlet-crown-jump-btn" class="is-hidden" aria-label="กระโดด (Jump)" title="กระโดด — เหมือน Space / W / ↑" aria-hidden="true">
|
||
<img src="/Game/img/gauntlet-assets/btn-jump.png" alt="" width="256" height="256" decoding="async" />
|
||
</button>
|
||
<button type="button" id="stack-tower-drop-btn" class="is-hidden" aria-label="ปล่อยบล็อก (Drop)" title="ปล่อยบล็อก — เหมือน Space / Enter" aria-hidden="true">
|
||
<img src="/Game/img/TowerBlock/btn-drop.png" alt="" width="256" height="256" decoding="async" />
|
||
</button>
|
||
<div id="quiz-map-question-panel" class="is-hidden" aria-hidden="true">
|
||
<img id="quiz-map-q-feedback-icon" class="quiz-map-q-feedback-icon is-hidden" alt="" width="64" height="64" decoding="async" />
|
||
<div id="quiz-map-question-kicker" class="quiz-map-question-kicker is-hidden" aria-hidden="true"></div>
|
||
<p id="quiz-map-question-text"></p>
|
||
<div id="quiz-map-q-feedback-score-wrap" class="is-hidden" aria-hidden="true">
|
||
<img id="quiz-map-q-feedback-score" alt="" width="120" height="48" decoding="async" />
|
||
</div>
|
||
</div>
|
||
<div id="quiz-carry-timeup-desk-layer" class="is-hidden" aria-hidden="true">
|
||
<div class="qc-timeup-dim" aria-hidden="true"></div>
|
||
<div class="qc-timeup-desk-anchor">
|
||
<img id="quiz-carry-timeup-txt-img" class="qc-timeup-txt-img" src="/Game/img/quiz-carry/timeup-txt.png" alt="" width="480" height="120" decoding="async" />
|
||
</div>
|
||
</div>
|
||
<div id="quiz-carry-result-end-layer" class="is-hidden" aria-hidden="true" role="img" aria-label="ผลจบภารกิจ">
|
||
<div class="qc-result-end-dim" aria-hidden="true"></div>
|
||
<img id="quiz-carry-result-end-img" class="qc-result-end-img" src="" alt="" width="900" height="520" decoding="async" />
|
||
</div>
|
||
</div>
|
||
<div id="play-cyber-hud" class="play-cyber-hud is-hidden" aria-hidden="true">
|
||
<aside class="play-cyber-scoreboard" aria-label="SCORE">
|
||
<div id="play-cyber-crown-score-head" class="play-cyber-crown-score-head is-hidden" aria-hidden="true">
|
||
<img id="play-cyber-crown-score-img" alt="" width="120" height="32" decoding="async" />
|
||
</div>
|
||
<div class="play-cyber-panel-title">SCORE</div>
|
||
<ul id="play-cyber-score-list" class="play-cyber-score-list"></ul>
|
||
</aside>
|
||
<div class="play-cyber-center-stack">
|
||
<div class="play-cyber-time-block">
|
||
<div class="play-cyber-time-head">
|
||
<img id="play-cyber-time-plaque-img" class="play-cyber-time-plaque-img is-hidden" alt="TIME" decoding="async" aria-hidden="true" />
|
||
<div class="play-cyber-time-label">TIME</div>
|
||
<span class="play-cyber-time-colon" aria-hidden="true">:</span>
|
||
<div id="play-cyber-time-val" class="play-cyber-time-val">0</div>
|
||
</div>
|
||
<div id="play-cyber-time-sub" class="play-cyber-time-sub"></div>
|
||
<div id="play-cyber-embed-zoom-hint" class="play-cyber-embed-zoom-hint is-hidden" aria-hidden="true"></div>
|
||
</div>
|
||
<div id="play-cyber-quiz-mission-q-band" class="play-cyber-quiz-mission-q-band is-hidden" aria-hidden="true">
|
||
<img id="play-cyber-quiz-mission-q-plaque" class="play-cyber-quiz-mission-q-plaque is-hidden" alt="" decoding="async" />
|
||
<p id="play-cyber-quiz-mission-q-text" class="play-cyber-quiz-mission-q-text"></p>
|
||
</div>
|
||
</div>
|
||
<div class="play-cyber-self">
|
||
<div class="play-cyber-self-frame">
|
||
<span class="play-cyber-portrait-clip">
|
||
<img id="play-cyber-portrait-img" alt="" width="72" height="72" />
|
||
</span>
|
||
</div>
|
||
<div id="play-cyber-self-status" class="play-cyber-self-status"></div>
|
||
<div id="play-cyber-op-widgets" class="play-cyber-op-widgets" aria-hidden="true">
|
||
<div id="play-cyber-voice-chip" class="play-cyber-voice-chip"></div>
|
||
<div class="play-cyber-link-status" title="LINK">O</div>
|
||
</div>
|
||
</div>
|
||
<p id="play-cyber-hint" class="play-cyber-hint"></p>
|
||
<p id="play-cyber-preview-line" class="play-cyber-preview-line is-hidden"></p>
|
||
<div class="play-cyber-corruption" aria-hidden="true">
|
||
<div class="play-cyber-corruption-scanlines"></div>
|
||
<div class="play-cyber-corruption-text">RAM ERROR · CORRUPTING · DELETE INITIATED · 01001101 01110011 01100101 01100011</div>
|
||
</div>
|
||
</div>
|
||
<!-- ภารกิจคำถาม mng8a80o ช่วง live: virtual joystick (QUESTION/btn-joystick-*.png) -->
|
||
<div id="quiz-question-mission-joystick" class="quiz-q-mission-joystick is-hidden" aria-hidden="true">
|
||
<div class="quiz-q-mission-joystick-base" id="quiz-q-mission-joystick-base">
|
||
<img id="quiz-q-mission-joystick-bg" class="quiz-q-mission-joystick-bg" src="" alt="" decoding="async" />
|
||
<div class="quiz-q-mission-joystick-knob" id="quiz-q-mission-joystick-knob">
|
||
<img id="quiz-q-mission-joystick-knob-img" class="quiz-q-mission-joystick-knob-img" src="" alt="" decoding="async" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div id="play-quiz-scoreboard" class="is-hidden" aria-live="polite">
|
||
<div class="play-quiz-scoreboard-title">คะแนน</div>
|
||
<ul id="play-quiz-scoreboard-list" class="play-quiz-scoreboard-list"></ul>
|
||
</div>
|
||
<div id="play-quiz-feedback" class="is-hidden play-quiz-feedback" role="status" aria-atomic="true"></div>
|
||
<div id="quiz-carry-pregame-overlay" class="is-hidden" role="dialog" aria-modal="true" aria-labelledby="quiz-carry-pregame-sr-title" aria-hidden="true">
|
||
<div class="quiz-carry-pregame-backdrop" aria-hidden="true"></div>
|
||
<div class="quiz-carry-pregame-card">
|
||
<h2 id="quiz-carry-pregame-sr-title" class="quiz-carry-pregame-sr-only">ประลองความรู้ คำศัพท์ในกระบวนการยุติธรรม — How to play</h2>
|
||
<div class="quiz-carry-pregame-art">
|
||
<img id="quiz-carry-pregame-howto-img" class="quiz-carry-pregame-howto-img" src="/Game/img/quiz-carry/howto.png" width="900" height="520" alt="HOW TO PLAY — ประลองความรู้ คำศัพท์ในกระบวนการยุติธรรม" loading="lazy" decoding="async" />
|
||
</div>
|
||
<div class="quiz-carry-pregame-footer">
|
||
<p id="quiz-carry-pregame-status" class="quiz-carry-pregame-status" aria-live="polite"></p>
|
||
<div class="quiz-carry-pregame-actions">
|
||
<button type="button" id="quiz-carry-pregame-primary" class="quiz-carry-pregame-primary-btn" aria-pressed="false" title="READY">
|
||
<img id="quiz-carry-pregame-primary-img" src="/Game/img/quiz-carry/btn-ready.png" width="220" height="56" alt="READY" decoding="async" />
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div id="quiz-carry-embed-countdown" class="is-hidden" role="alert" aria-live="assertive" aria-atomic="true" aria-hidden="true">
|
||
<div id="quiz-carry-embed-countdown-inner">
|
||
<p id="quiz-carry-embed-countdown-kicker" class="quiz-carry-embed-countdown-kicker">คำถาม · Question</p>
|
||
<p id="quiz-carry-embed-countdown-q" class="quiz-carry-embed-countdown-q"></p>
|
||
<img id="quiz-carry-embed-countdown-num" src="/Game/img/QUESTION/3.png" width="200" height="200" alt="3" decoding="async" />
|
||
</div>
|
||
</div>
|
||
<div id="quiz-carry-embed-q-strip" class="is-hidden" role="status" aria-live="polite" aria-atomic="true" aria-hidden="true">
|
||
<span class="quiz-carry-embed-q-strip-kicker">คำถาม · Question</span>
|
||
<p id="quiz-carry-embed-q-strip-text"></p>
|
||
</div>
|
||
<div id="quiz-game-overlay" class="is-hidden" role="status" aria-live="polite" aria-atomic="true">
|
||
<div class="quiz-game-inner">
|
||
<div class="quiz-game-phase" id="quiz-game-phase-label"></div>
|
||
<p class="quiz-game-q" id="quiz-game-question"></p>
|
||
<div class="quiz-game-timer" id="quiz-game-timer" aria-hidden="true"></div>
|
||
<p class="quiz-play-legend" id="quiz-play-legend"></p>
|
||
</div>
|
||
</div>
|
||
<div id="quiz-battle-mcq-overlay" class="is-hidden" role="dialog" aria-modal="true" aria-labelledby="quiz-battle-mcq-title">
|
||
<div class="quiz-battle-mcq-backdrop" aria-hidden="true"></div>
|
||
<div class="quiz-battle-mcq-card">
|
||
<h2 id="quiz-battle-mcq-title" class="quiz-battle-mcq-title">QUIZ BATTLE</h2>
|
||
<p id="quiz-battle-mcq-text" class="quiz-battle-mcq-text"></p>
|
||
<div class="quiz-battle-mcq-actions">
|
||
<button type="button" class="quiz-battle-choice" data-idx="0">A</button>
|
||
<button type="button" class="quiz-battle-choice" data-idx="1">B</button>
|
||
<button type="button" class="quiz-battle-choice" data-idx="2">C</button>
|
||
</div>
|
||
<button type="button" id="quiz-battle-mcq-close">ปิด · Close</button>
|
||
</div>
|
||
</div>
|
||
<div id="gauntlet-crown-howto-overlay" class="is-hidden" role="dialog" aria-modal="true" aria-label="HOW TO PLAY — Last Light">
|
||
<div class="gch-backdrop" aria-hidden="true"></div>
|
||
<div class="gch-shell">
|
||
<img class="gch-bg" src="/Game/img/gauntlet-assets/popup-Howto.png" alt="" width="920" height="520" decoding="async" />
|
||
<div class="gch-inner gch-inner--art">
|
||
<div class="gch-art-footer">
|
||
<p id="gauntlet-crown-howto-status" class="gch-status is-hidden" aria-live="polite"></p>
|
||
<button type="button" class="btn-gch-ready" id="btn-gch-ready" title="READY"><span class="sr-only">READY</span></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div id="gauntlet-crown-countdown" class="is-hidden" role="alert" aria-live="assertive" aria-atomic="true">
|
||
<div class="gcc-panel">
|
||
<img id="gauntlet-crown-countdown-num" class="gcc-num" src="/Game/img/QUESTION/3.png" width="240" height="240" alt="" decoding="async" />
|
||
</div>
|
||
</div>
|
||
<div id="stack-tower-result-flash" class="is-hidden" role="dialog" aria-modal="true" aria-hidden="true" aria-label="ผลภารกิจ Tower">
|
||
<div class="stack-tower-result-flash-backdrop" aria-hidden="true"></div>
|
||
<img id="stack-tower-result-flash-img" src="" alt="" width="920" height="520" decoding="async" />
|
||
</div>
|
||
<div id="gauntlet-crown-mission-overlay" class="is-hidden" role="dialog" aria-modal="true" aria-labelledby="gcm-heading">
|
||
<div class="gcm-backdrop" aria-hidden="true"></div>
|
||
<div class="gcm-shell">
|
||
<img class="gcm-bg" src="/Game/img/gauntlet-assets/popup-result.png" alt="" width="920" height="560" decoding="async" />
|
||
<div class="gcm-inner">
|
||
<div id="gcm-heading" class="gcm-header-tab">สรุปผลภารกิจ · Mission summary</div>
|
||
<div id="gcm-rank-row" class="gcm-rank-row"></div>
|
||
<p id="gcm-total" class="gcm-total"></p>
|
||
<div class="gcm-bottom">
|
||
<div>
|
||
<div class="gcm-h">ระดับความสำเร็จ</div>
|
||
<div id="gcm-grade" class="gcm-grade" aria-live="polite">A</div>
|
||
</div>
|
||
<div>
|
||
<div class="gcm-h">โบนัสพิเศษ</div>
|
||
<div id="gcm-bonus" class="gcm-bonus"></div>
|
||
</div>
|
||
</div>
|
||
<button type="button" class="btn-gcm-done" id="btn-gcm-done" title="รับหลักฐาน"><span class="sr-only">รับหลักฐาน · Receive evidence</span></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div id="gauntlet-ended-overlay" class="is-hidden" role="dialog" aria-modal="true" aria-labelledby="gauntlet-ended-title">
|
||
<div class="gauntlet-ended-backdrop" aria-hidden="true"></div>
|
||
<div class="gauntlet-ended-card">
|
||
<h2 id="gauntlet-ended-title">เกมจบ</h2>
|
||
<p id="gauntlet-ended-message"></p>
|
||
<ol id="gauntlet-ended-rankings"></ol>
|
||
<button type="button" id="btn-gauntlet-ended-lobby">กลับห้อง (ล็อบบี้) · Back to room lobby</button>
|
||
</div>
|
||
</div>
|
||
<div id="quiz-carry-mission-overlay" class="is-hidden" role="dialog" aria-modal="true" aria-labelledby="qc-mission-title">
|
||
<div class="qc-mission-backdrop" aria-hidden="true"></div>
|
||
<div class="qc-mission-panel">
|
||
<div class="qc-mission-panel-bg" aria-hidden="true"></div>
|
||
<div class="qc-mission-panel-inner">
|
||
<h2 id="qc-mission-title" class="qc-mission-sr">สรุปผลภารกิจ</h2>
|
||
<div id="qc-mission-rank-row" class="qc-mission-rank-row"></div>
|
||
<p id="qc-mission-total-line" class="qc-mission-total"></p>
|
||
<div class="qc-mission-bottom">
|
||
<div class="qc-mission-grade-block">
|
||
<div class="qc-mission-section-h">ระดับความสำเร็จ</div>
|
||
<div id="qc-mission-grade" class="qc-mission-grade" aria-live="polite">A</div>
|
||
</div>
|
||
<div class="qc-mission-bonus-block">
|
||
<div class="qc-mission-section-h">โบนัสพิเศษ</div>
|
||
<div id="qc-mission-bonus-row" class="qc-mission-bonus-row">
|
||
<div class="qc-mission-bonus-inline">
|
||
<img id="qc-mission-check" class="qc-mission-check" src="/Game/img/quiz-carry/result-check.png" alt="" width="28" height="28" loading="lazy" decoding="async" />
|
||
<span id="qc-mission-success-txt" class="qc-mission-success-txt">ภารกิจสำเร็จ</span>
|
||
</div>
|
||
<div id="qc-mission-card-text" class="qc-mission-card-text"></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<button type="button" id="btn-quiz-carry-mission-done"><span class="qc-mission-sr">รับหลักฐาน · Done</span></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<script src="/app-base.js?v=2"></script>
|
||
<script src="/Game/socket.io/socket.io.js"></script>
|
||
<script src="js/version.js?v=0.0306"></script>
|
||
<script src="js/play.js?v=0.0499"></script>
|
||
<div class="version-tag">v —</div>
|
||
</body>
|
||
</html>
|