908 lines
17 KiB
CSS
908 lines
17 KiB
CSS
@import '../../button-template.css';
|
|
|
|
:host {
|
|
display: block;
|
|
}
|
|
|
|
.cityscape-shell {
|
|
--sky-1: #04000f;
|
|
--sky-2: #0e0235;
|
|
--sky-3: #2d0860;
|
|
--sky-4: #5e1185;
|
|
--sky-5: #8b1270;
|
|
--horizon: #be356e;
|
|
--bldg-body: #090920;
|
|
--bldg-mid: #0e0e2a;
|
|
--bldg-lit: rgba(100, 60, 200, 0.12);
|
|
--win-off: #0a0a1e;
|
|
--win-cool: #7de8ff;
|
|
--win-warm: #ffe88a;
|
|
--win-glow-c: 0 0 6px #00d5ff, 0 0 16px rgba(0, 200, 255, 0.35);
|
|
--win-glow-w: 0 0 6px #ffcc30, 0 0 16px rgba(255, 190, 0, 0.35);
|
|
--bb-bg: rgba(8, 6, 28, 0.92);
|
|
--bb-border: #00d5ff;
|
|
--bb-glow: 0 0 18px rgba(0, 210, 255, 0.5), inset 0 0 10px rgba(0, 210, 255, 0.05);
|
|
--bb-tag: #00d5ff;
|
|
--bb-title: #d4f4ff;
|
|
--btn-bg: #00d5ff;
|
|
--btn-fg: #04000f;
|
|
--btn-glow: 0 0 14px rgba(0, 210, 255, 0.9);
|
|
--ground-top: #06060f;
|
|
--ground-bot: #020208;
|
|
--moon-vis: 1;
|
|
--sun-vis: 0;
|
|
--star-vis: 1;
|
|
--cloud-col: rgba(255, 255, 255, 0.06);
|
|
--cloud-col2: rgba(255, 255, 255, 0.04);
|
|
--bg-bldg-op: 0.65;
|
|
--haze-col: rgba(6, 6, 15, 0.7);
|
|
--dlg-bg: rgba(8, 6, 28, 0.95);
|
|
--dlg-border: #00d5ff;
|
|
|
|
min-height: 100svh;
|
|
font-family: 'Space Mono', 'Courier New', monospace;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
position: relative;
|
|
background: var(--sky-1);
|
|
}
|
|
|
|
.cityscape-shell.sunset {
|
|
--sky-1: #4d3279;
|
|
--sky-2: #5A5485;
|
|
--sky-3: #996C96;
|
|
--sky-4: #e85040;
|
|
--sky-5: #f07020;
|
|
--horizon: #ffaa30;
|
|
--bldg-body: #13072a;
|
|
--bldg-mid: #1e0e38;
|
|
--bldg-lit: rgba(255, 120, 40, 0.14);
|
|
--win-off: #18082e;
|
|
--win-cool: #ffcc55;
|
|
--win-warm: #ff7730;
|
|
--win-glow-c: 0 0 6px #ea00ff, 0 0 16px rgba(255, 180, 0, 0.4);
|
|
--win-glow-w: 0 0 6px #ff00e6, 0 0 16px rgba(255, 196, 0, 0.4);
|
|
--bb-bg: rgba(20, 5, 45, 0.93);
|
|
--bb-border: #ff40f9;
|
|
--bb-glow: 0 0 18px rgba(255, 50, 217, 0.55), inset 0 0 10px rgba(255, 120, 30, 0.06);
|
|
--bb-tag: #b640ff;
|
|
--bb-title: #ffe0c0;
|
|
--btn-bg: #f26ae2;
|
|
--btn-fg: #13072a;
|
|
--btn-glow: 0 0 14px rgba(238, 50, 255, 0.9);
|
|
--ground-top: #0a0318;
|
|
--ground-bot: #04010a;
|
|
--moon-vis: 0;
|
|
--sun-vis: 1;
|
|
--star-vis: 0;
|
|
--cloud-col: rgba(255, 160, 100, 0.22);
|
|
--cloud-col2: rgba(255, 100, 60, 0.14);
|
|
--bg-bldg-op: 0.45;
|
|
--haze-col: rgba(10, 3, 24, 0.65);
|
|
--dlg-bg: rgba(20, 5, 45, 0.96);
|
|
--dlg-border: #ff40cf;
|
|
}
|
|
|
|
.scene {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100svh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sky {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 22%, var(--sky-3) 48%, var(--sky-4) 70%, var(--sky-5) 85%, var(--horizon) 100%);
|
|
transition: background 1.6s ease;
|
|
}
|
|
|
|
.stars-layer {
|
|
position: absolute;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
opacity: var(--star-vis);
|
|
transition: opacity 1.6s ease;
|
|
}
|
|
|
|
.star {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
background: #ffffff;
|
|
animation: twinkle var(--d, 3s) ease-in-out infinite var(--dl, 0s);
|
|
}
|
|
|
|
@keyframes twinkle {
|
|
0%,
|
|
100% {
|
|
opacity: 0.15;
|
|
transform: scale(0.7);
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
transform: scale(1.3);
|
|
}
|
|
}
|
|
|
|
.moon {
|
|
position: absolute;
|
|
top: 9%;
|
|
right: 14%;
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle at 36% 34%, #fffbe8, #f5d060 60%, #c8a020);
|
|
box-shadow: 0 0 28px rgba(245, 210, 80, 0.55), 0 0 70px rgba(240, 190, 40, 0.25);
|
|
opacity: var(--moon-vis);
|
|
transition: opacity 1.6s ease;
|
|
}
|
|
|
|
.sun {
|
|
position: absolute;
|
|
bottom: 12%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 76px;
|
|
height: 76px;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle at 50% 50%, #fffce0, #ffd020 40%, #ff9000);
|
|
box-shadow: 0 0 40px rgba(255, 200, 0, 0.85), 0 0 90px rgba(255, 150, 0, 0.45), 0 0 200px rgba(255, 80, 0, 0.2);
|
|
opacity: var(--sun-vis);
|
|
transition: opacity 1.6s ease;
|
|
z-index: 4;
|
|
}
|
|
|
|
.cloud-wrap {
|
|
position: absolute;
|
|
top: 4%;
|
|
left: 0;
|
|
right: 0;
|
|
height: 18%;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.cloud {
|
|
position: absolute;
|
|
border-radius: 60px;
|
|
filter: blur(18px);
|
|
transition: background 1.6s ease;
|
|
}
|
|
|
|
.cloud-a {
|
|
width: 280px;
|
|
height: 55px;
|
|
background: var(--cloud-col);
|
|
top: 10px;
|
|
left: 4%;
|
|
animation: drift 50s ease-in-out infinite;
|
|
}
|
|
|
|
.cloud-b {
|
|
width: 200px;
|
|
height: 44px;
|
|
background: var(--cloud-col2);
|
|
top: 28px;
|
|
left: 15%;
|
|
animation: drift 38s ease-in-out infinite 8s;
|
|
}
|
|
|
|
.cloud-c {
|
|
width: 360px;
|
|
height: 65px;
|
|
background: var(--cloud-col);
|
|
top: 5px;
|
|
left: 36%;
|
|
animation: drift 62s ease-in-out infinite 3s;
|
|
}
|
|
|
|
.cloud-d {
|
|
width: 220px;
|
|
height: 50px;
|
|
background: var(--cloud-col2);
|
|
top: 20px;
|
|
left: 62%;
|
|
animation: drift 44s ease-in-out infinite 14s;
|
|
}
|
|
|
|
.cloud-e {
|
|
width: 180px;
|
|
height: 40px;
|
|
background: var(--cloud-col);
|
|
top: 35px;
|
|
left: 80%;
|
|
animation: drift 56s ease-in-out infinite 6s;
|
|
}
|
|
|
|
@keyframes drift {
|
|
0%,
|
|
100% {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
50% {
|
|
transform: translateX(-50px);
|
|
}
|
|
}
|
|
|
|
.bg-layer {
|
|
position: absolute;
|
|
bottom: 8vh;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 5;
|
|
pointer-events: none;
|
|
opacity: var(--bg-bldg-op);
|
|
transition: opacity 1.6s ease;
|
|
}
|
|
|
|
.bg-bldg {
|
|
position: absolute;
|
|
bottom: 0;
|
|
background: var(--bldg-body);
|
|
transition: background 1.6s ease;
|
|
}
|
|
|
|
.bg-bldg::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background-image: repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(120, 120, 200, 0.08) 14px, rgba(120, 120, 200, 0.08) 16px),
|
|
repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(120, 120, 200, 0.08) 12px, rgba(120, 120, 200, 0.08) 14px);
|
|
}
|
|
|
|
.main-layer {
|
|
position: absolute;
|
|
bottom: 8vh;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 10;
|
|
}
|
|
|
|
.bwrap {
|
|
position: absolute;
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.playerone-gif {
|
|
position: absolute;
|
|
top: 36px;
|
|
left: 50%;
|
|
width: 18px;
|
|
height: 18px;
|
|
transform: translateX(-50%);
|
|
object-fit: contain;
|
|
z-index: 14;
|
|
pointer-events: none;
|
|
image-rendering: auto;
|
|
}
|
|
|
|
.bpart {
|
|
position: relative;
|
|
background: var(--bldg-body);
|
|
transition: background 1.6s ease;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.bpart::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 28%;
|
|
background: linear-gradient(90deg, transparent, var(--bldg-lit));
|
|
pointer-events: none;
|
|
transition: background 1.6s ease;
|
|
}
|
|
|
|
.wins {
|
|
display: grid;
|
|
gap: 3px;
|
|
padding: 5px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.w {
|
|
height: 9px;
|
|
border-radius: 1px;
|
|
background: var(--win-off);
|
|
transition: background 0.4s ease, box-shadow 0.4s ease;
|
|
}
|
|
|
|
.w.lc {
|
|
background: var(--win-cool);
|
|
box-shadow: var(--win-glow-c);
|
|
animation: wflicker var(--wd, 5s) ease-in-out infinite var(--wdl, 0s);
|
|
}
|
|
|
|
.w.lw {
|
|
background: var(--win-warm);
|
|
box-shadow: var(--win-glow-w);
|
|
animation: wflicker var(--wd, 6s) ease-in-out infinite var(--wdl, 0s);
|
|
}
|
|
|
|
@keyframes wflicker {
|
|
0%,
|
|
88%,
|
|
92%,
|
|
97%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
90% {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
95% {
|
|
opacity: 0.85;
|
|
}
|
|
}
|
|
|
|
.bb {
|
|
margin: 0 7px 5px;
|
|
padding: 10px 12px;
|
|
background: var(--bb-bg);
|
|
border: 1.5px solid var(--bb-border);
|
|
box-shadow: var(--bb-glow);
|
|
border-radius: 3px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 6px;
|
|
text-align: center;
|
|
pointer-events: auto;
|
|
transition: border-color 1.6s ease, box-shadow 1.6s ease, background 1.6s ease;
|
|
}
|
|
|
|
.bb-tag {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 10px;
|
|
letter-spacing: 3px;
|
|
color: var(--bb-tag);
|
|
opacity: 0.75;
|
|
transition: color 1.6s ease;
|
|
}
|
|
|
|
.bb-title {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: clamp(13px, 1.4vw, 20px);
|
|
line-height: 1.1;
|
|
color: var(--bb-title);
|
|
transition: color 1.6s ease;
|
|
}
|
|
|
|
.bb-subtitle {
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: 9px;
|
|
color: var(--bb-title);
|
|
opacity: 0.55;
|
|
letter-spacing: 0.5px;
|
|
transition: color 1.6s ease;
|
|
}
|
|
|
|
.bb-btn {
|
|
background: var(--btn-bg);
|
|
color: var(--btn-fg);
|
|
border: none;
|
|
border-radius: 2px;
|
|
padding: 5px 14px;
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
cursor: pointer;
|
|
box-shadow: var(--btn-glow);
|
|
transition: transform 0.2s ease, filter 0.2s ease, background 1.6s ease, box-shadow 1.6s ease;
|
|
}
|
|
|
|
.bb-btn:hover:enabled {
|
|
transform: scale(1.08);
|
|
filter: brightness(1.15);
|
|
}
|
|
|
|
.bb-btn:disabled {
|
|
opacity: 0.65;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.neon {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 11px;
|
|
letter-spacing: 2.5px;
|
|
color: var(--bb-tag);
|
|
border: 1px solid var(--bb-border);
|
|
padding: 2px 7px;
|
|
border-radius: 2px;
|
|
text-shadow: 0 0 8px currentColor, 0 0 20px currentColor;
|
|
box-shadow: 0 0 6px currentColor;
|
|
animation: nflicker 9s ease-in-out infinite;
|
|
display: inline-block;
|
|
transition: color 1.6s ease, border-color 1.6s ease;
|
|
}
|
|
|
|
@keyframes nflicker {
|
|
0%,
|
|
94%,
|
|
96%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
|
|
95% {
|
|
opacity: 0.25;
|
|
}
|
|
|
|
98% {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.ant {
|
|
width: 3px;
|
|
background: var(--bldg-mid);
|
|
margin: 0 auto;
|
|
transition: background 1.6s ease;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.ant::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: -5px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: #ff2222;
|
|
box-shadow: 0 0 10px #ff2222, 0 0 20px rgba(255, 0, 0, 0.4);
|
|
animation: blink 1.6s step-start infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
0%,
|
|
49% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50%,
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.ground {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 10vh;
|
|
background: linear-gradient(180deg, var(--ground-top), var(--ground-bot));
|
|
z-index: 20;
|
|
transition: background 1.6s ease;
|
|
}
|
|
|
|
.haze {
|
|
position: absolute;
|
|
bottom: 8vh;
|
|
left: 0;
|
|
right: 0;
|
|
height: 12vh;
|
|
background: linear-gradient(0deg, var(--haze-col), transparent);
|
|
z-index: 15;
|
|
pointer-events: none;
|
|
transition: background 1.6s ease;
|
|
}
|
|
|
|
.tgl {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 200;
|
|
display: inline-grid;
|
|
place-items: center;
|
|
width: 56px;
|
|
height: 56px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
border-radius: 50%;
|
|
padding: 0;
|
|
color: rgba(255, 255, 255, 0.85);
|
|
cursor: pointer;
|
|
backdrop-filter: blur(12px);
|
|
transition: background 0.3s, transform 0.2s;
|
|
}
|
|
|
|
.tgl:hover {
|
|
background: rgba(255, 255, 255, 0.14);
|
|
transform: scale(1.04);
|
|
}
|
|
|
|
.tgl-icon {
|
|
font-size: 22px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.mode-badge {
|
|
position: fixed;
|
|
top: 20px;
|
|
left: 20px;
|
|
z-index: 200;
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 13px;
|
|
letter-spacing: 4px;
|
|
color: rgba(255, 255, 255, 0.45);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.dialog-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(2, 2, 10, 0.58);
|
|
display: grid;
|
|
place-items: center;
|
|
z-index: 350;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.dialog-card {
|
|
width: min(460px, 100%);
|
|
background: var(--dlg-bg);
|
|
border: 1.5px solid var(--dlg-border);
|
|
box-shadow: var(--bb-glow);
|
|
border-radius: 4px;
|
|
padding: 1rem;
|
|
display: grid;
|
|
gap: 0.7rem;
|
|
}
|
|
|
|
.dialog-title {
|
|
font-family: 'Bebas Neue', sans-serif;
|
|
font-size: 22px;
|
|
letter-spacing: 2px;
|
|
color: var(--bb-title);
|
|
text-align: center;
|
|
}
|
|
|
|
.dialog-actions {
|
|
display: flex;
|
|
gap: 0.6rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.dialog-btn {
|
|
flex: 1;
|
|
min-width: 120px;
|
|
background: var(--btn-bg);
|
|
color: var(--btn-fg);
|
|
border: none;
|
|
border-radius: 2px;
|
|
padding: 0.55rem 0.75rem;
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
cursor: pointer;
|
|
box-shadow: var(--btn-glow);
|
|
}
|
|
|
|
.dialog-btn:hover:enabled {
|
|
filter: brightness(1.12);
|
|
}
|
|
|
|
.dialog-btn:disabled {
|
|
opacity: 0.65;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.dialog-input {
|
|
width: 100%;
|
|
background: rgba(4, 4, 20, 0.62);
|
|
border: 1px solid var(--bb-border);
|
|
color: var(--bb-title);
|
|
border-radius: 2px;
|
|
padding: 0.6rem 0.7rem;
|
|
font-family: 'Space Mono', monospace;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.dialog-input:focus {
|
|
outline: none;
|
|
box-shadow: 0 0 0 2px rgba(0, 213, 255, 0.25);
|
|
}
|
|
|
|
.dialog-textarea {
|
|
min-height: 120px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.import-mode-group {
|
|
display: flex;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.import-mode-option {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
color: var(--bb-title);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.error-banner {
|
|
position: fixed;
|
|
left: 50%;
|
|
bottom: 1rem;
|
|
transform: translateX(-50%);
|
|
z-index: 360;
|
|
margin: 0;
|
|
color: #ffd0d0;
|
|
background: rgba(146, 0, 16, 0.45);
|
|
border: 1px solid rgba(255, 170, 170, 0.6);
|
|
border-radius: 9px;
|
|
padding: 0.5rem 0.7rem;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Speech Bubble Styles */
|
|
.speech-bubble-container {
|
|
position: fixed;
|
|
top: 35%;
|
|
left: 55%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 500;
|
|
cursor: pointer;
|
|
animation: slideInBubble 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
}
|
|
|
|
@keyframes slideInBubble {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translate(-50%, -50%) scale(0.5);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translate(-50%, -50%) scale(1);
|
|
}
|
|
}
|
|
|
|
.speech-bubble {
|
|
background: linear-gradient(135deg, #B9DAD1 0%, #B9C2DA 100%);
|
|
border: 2px solid #8b1270;
|
|
border-radius: 20px;
|
|
padding: 16px 24px;
|
|
font-family: 'Comic Sans MS', 'Comic Sans', cursive;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: #5A2C28;
|
|
white-space: nowrap;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
|
|
inset 0 1px 3px rgba(255, 255, 255, 0.3);
|
|
position: relative;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.speech-bubble:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
|
|
inset 0 1px 3px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.bubble-text {
|
|
margin: 0;
|
|
}
|
|
|
|
.bubble-tail {
|
|
position: absolute;
|
|
bottom: -12px;
|
|
left: 20px;
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 10px solid transparent;
|
|
border-right: 0px solid transparent;
|
|
border-top: 12px solid #B9DAD1;
|
|
}
|
|
|
|
/* Zoom Overlay and Window */
|
|
.zoom-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
z-index: 1000;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
animation: fadeIn 0.3s ease;
|
|
cursor: pointer;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.zoom-window-wrapper {
|
|
cursor: auto;
|
|
animation: zoomInWindow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
}
|
|
|
|
@keyframes zoomInWindow {
|
|
0% {
|
|
transform: scale(0.1);
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.zoom-window-frame {
|
|
background: #13072a;
|
|
border: 8px solid #f26ae2;
|
|
border-radius: 16px;
|
|
padding: 40px 20px 20px 20px;
|
|
box-shadow: 0 0 40px rgba(242, 106, 226, 0.6),
|
|
inset 0 0 20px rgba(242, 106, 226, 0.2);
|
|
max-width: 90vw;
|
|
max-height: 90vh;
|
|
position: relative;
|
|
}
|
|
|
|
.zoom-player-2 {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.player-2-gif {
|
|
max-width: 100%;
|
|
max-height: 70vh;
|
|
width: auto;
|
|
height: auto;
|
|
display: block;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
.player-2-gif:hover {
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
.second-speech-bubble {
|
|
position: absolute;
|
|
top: -60px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: linear-gradient(135deg, #C19EF5 0%, #E1EAA9 100%);
|
|
border: 2px solid #BA6D4B;
|
|
border-radius: 20px;
|
|
padding: 12px 18px;
|
|
font-family: 'Comic Sans MS', 'Comic Sans', cursive;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #5A2C28;
|
|
white-space: nowrap;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
|
|
inset 0 1px 3px rgba(255, 255, 255, 0.3);
|
|
animation: popInBubble 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
z-index: 10;
|
|
}
|
|
|
|
@keyframes popInBubble {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateX(-50%) scale(0.3);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translateX(-50%) scale(1);
|
|
}
|
|
}
|
|
|
|
.second-speech-bubble .bubble-tail {
|
|
top: 100%;
|
|
bottom: auto;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
border-top: 12px solid #C19EF5;
|
|
}
|
|
|
|
/* Happy Meow Bubble */
|
|
.happy-speech-bubble {
|
|
position: absolute;
|
|
top: -60px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: linear-gradient(135deg, #F3C8A0 0%, #BA6D4B 100%);
|
|
border: 2px solid #5A2C28;
|
|
border-radius: 20px;
|
|
padding: 12px 18px;
|
|
font-family: 'Comic Sans MS', 'Comic Sans', cursive;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
white-space: nowrap;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
|
|
inset 0 1px 3px rgba(255, 255, 255, 0.4),
|
|
0 0 20px rgba(243, 200, 160, 0.5);
|
|
animation: popInBubble 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
z-index: 10;
|
|
}
|
|
|
|
.happy-speech-bubble .bubble-tail {
|
|
top: 100%;
|
|
bottom: auto;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
border-top: 12px solid #F3C8A0;
|
|
}
|
|
|
|
/* Meat Emoji */
|
|
.meat-emoji {
|
|
position: fixed;
|
|
font-size: 48px;
|
|
cursor: grab;
|
|
user-select: none;
|
|
z-index: 1001;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 60px;
|
|
height: 60px;
|
|
animation: meatAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
|
|
transition: transform 0.1s ease;
|
|
}
|
|
|
|
.meat-emoji:active {
|
|
cursor: grabbing;
|
|
transform: scale(1.1);
|
|
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
|
|
}
|
|
|
|
@keyframes meatAppear {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.bwrap {
|
|
transform: scale(0.9);
|
|
transform-origin: bottom center;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
.scene {
|
|
transform: scale(0.8);
|
|
transform-origin: bottom center;
|
|
width: 125%;
|
|
margin-left: -12.5%;
|
|
}
|
|
|
|
.dialog-card {
|
|
width: min(380px, 100%);
|
|
}
|
|
}
|