:root {
	--bg-top: #fbf7ff;
	--bg-bottom: #f3e8ff;
	--card-bg: rgba(255, 255, 255, 0.85);
	--purple-primary: #9333ea;
	--purple-glow: #c084fc;
	--purple-soft: #f3e8ff;
	--purple-dark: #581c87;
	--dumpling-gold: #fde047;
	--dumpling-warm: #fef08a;
	--dumpling-crust: #ca8a04;
	--pink-blush: #f472b6;
	--pink-soft: #fdf2f8;
	--text-main: #2e1065;
	--text-muted: #7e22ce;
	--border-light: rgba(192, 132, 252, 0.3);
	--shadow-kawaii: 0 12px 35px -8px rgba(147, 51, 234, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05);
	--shadow-glow: 0 0 25px rgba(192, 132, 252, 0.45);
	--font-title: 'Fredoka', 'Outfit', sans-serif;
	--font-body: 'Outfit', -apple-system, sans-serif;
	--font-hand: 'Caveat', cursive;
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 10px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

body {
	min-height: 100vh;
	background: radial-gradient(circle at 20% 15%, #faf5ff 0%, #f3e8ff 45%, #ede9fe 100%);
	color: var(--text-main);
	font-family: var(--font-body);
	line-height: 1.5;
	overflow-x: hidden;
	position: relative;
}

/* Background floating decorative dumplings & bubbles */
.bg-decorations {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.bg-bubble {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(192, 132, 252, 0.15));
	backdrop-filter: blur(2px);
	animation: floatBubble 14s infinite ease-in-out;
}

@keyframes floatBubble {
	0%, 100% {
		transform: translateY(0) scale(1) rotate(0deg);
	}
	50% {
		transform: translateY(-40px) scale(1.08) rotate(180deg);
	}
}

/* App Shell */
.app-container {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	padding: 1.5rem 1rem 4rem;
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

/* Top Navigation / Hero Bar */
.hero-header {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 232, 255, 0.88) 100%);
	backdrop-filter: blur(12px);
	border: 2px solid rgba(216, 180, 254, 0.5);
	border-radius: var(--radius-lg);
	padding: 1.25rem 1.75rem;
	box-shadow: var(--shadow-kawaii);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-icon-badge {
	width: 52px;
	height: 52px;
	border-radius: 18px;
	background: linear-gradient(135deg, #fef08a, #c084fc);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
	animation: wiggle 3s infinite ease-in-out;
}

@keyframes wiggle {
	0%, 100% { transform: rotate(-4deg); }
	50% { transform: rotate(4deg); }
}

.title-group h1 {
	font-family: var(--font-title);
	font-size: clamp(1.4rem, 3.5vw, 2.1rem);
	font-weight: 700;
	background: linear-gradient(135deg, #6b21a8 0%, #a855f7 50%, #ec4899 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.2;
}

.title-group .subhead {
	font-size: 0.95rem;
	color: #6b21a8;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.header-controls {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: #ffffff;
	border: 1.5px solid #d8b4fe;
	color: #6b21a8;
	padding: 0.5rem 0.9rem;
	border-radius: 50px;
	font-family: var(--font-title);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 2px 8px rgba(147, 51, 234, 0.08);
}

.btn-pill:hover {
	transform: translateY(-2px) scale(1.03);
	border-color: #a855f7;
	box-shadow: 0 6px 16px rgba(168, 85, 247, 0.2);
}

.btn-pill.active {
	background: linear-gradient(135deg, #a855f7, #9333ea);
	color: #ffffff;
	border-color: transparent;
}

.vip-badge {
	background: linear-gradient(135deg, #fef08a, #fde047);
	color: #713f12;
	border: 1.5px solid #eab308;
	font-weight: 700;
	padding: 0.45rem 0.85rem;
	border-radius: 50px;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
	0%, 100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
	50% { box-shadow: 0 0 15px 4px rgba(234, 179, 8, 0.3); }
}

/* Tabs switcher for modes */
.mode-tabs {
	display: flex;
	background: rgba(233, 213, 255, 0.6);
	padding: 0.35rem;
	border-radius: 50px;
	border: 1px solid rgba(216, 180, 254, 0.6);
	gap: 0.3rem;
	max-width: fit-content;
	margin: 0 auto;
}

.tab-btn {
	padding: 0.5rem 1.1rem;
	border-radius: 50px;
	border: none;
	background: transparent;
	color: #6b21a8;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 0.92rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.tab-btn.active {
	background: #ffffff;
	color: #581c87;
	box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
}

/* MAIN STAGE: 2 Columns - Milena Dumpling vs Purple Squishy & Picture */
.main-stage {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 1.75rem;
	align-items: stretch;
}

@media (max-width: 950px) {
	.main-stage {
		grid-template-columns: 1fr;
	}
}

/* CARDS */
.kawaii-card {
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 245, 255, 0.92) 100%);
	backdrop-filter: blur(16px);
	border: 2px solid rgba(216, 180, 254, 0.5);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-kawaii);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.kawaii-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #fde047, #f472b6, #c084fc, #9333ea);
}

.card-header-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1.5px dashed rgba(216, 180, 254, 0.6);
}

.card-title-tag {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-title);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--purple-dark);
}

.tag-badge {
	font-size: 0.75rem;
	padding: 0.2rem 0.6rem;
	border-radius: 50px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.tag-badge.milena {
	background: #fef08a;
	color: #854d0e;
	border: 1px solid #facc15;
}

.tag-badge.squishy {
	background: #f3e8ff;
	color: #6b21a8;
	border: 1px solid #d8b4fe;
}

/* SQUISH PLAYGROUND VIEWPORTS */
.squish-viewport {
	min-height: 270px;
	border-radius: var(--radius-md);
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9), rgba(243, 232, 255, 0.5));
	border: 1.5px solid rgba(216, 180, 254, 0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: grab;
	user-select: none;
	touch-action: none;
	overflow: hidden;
	box-shadow: inset 0 2px 10px rgba(168, 85, 247, 0.06);
	transition: background 0.3s ease;
}

.squish-viewport:active {
	cursor: grabbing;
}

.squish-hint {
	position: absolute;
	bottom: 12px;
	font-size: 0.8rem;
	color: #9333ea;
	background: rgba(255, 255, 255, 0.85);
	padding: 0.25rem 0.75rem;
	border-radius: 50px;
	border: 1px solid #e9d5ff;
	pointer-events: none;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	animation: bounceHint 2s infinite ease-in-out;
}

@keyframes bounceHint {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

/* DUMPLING SVG CONTAINER */
.dumpling-actor {
	width: 170px;
	height: 150px;
	position: relative;
	transition: transform 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	align-items: center;
	justify-content: center;
}

.dumpling-actor.jiggling {
	animation: squishJiggle 0.55s ease-out;
}

@keyframes squishJiggle {
	0% { transform: scale(1, 1); }
	20% { transform: scale(1.35, 0.65) rotate(2deg); }
	40% { transform: scale(0.75, 1.25) rotate(-3deg); }
	60% { transform: scale(1.15, 0.88) rotate(1deg); }
	80% { transform: scale(0.92, 1.08) rotate(0deg); }
	100% { transform: scale(1, 1); }
}

/* STEAM PUFFS */
.steam-puff {
	position: absolute;
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	filter: blur(1px);
	pointer-events: none;
	animation: riseSteam 1.6s forwards ease-out;
}

@keyframes riseSteam {
	0% {
		opacity: 0.8;
		transform: translate(0, 0) scale(0.8);
	}
	100% {
		opacity: 0;
		transform: translate(var(--dx, 0px), -60px) scale(2.4);
	}
}

/* FLOATING HEARTS & PARTICLES */
.floating-heart {
	position: absolute;
	pointer-events: none;
	animation: floatUpPop 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
	font-size: 1.3rem;
	z-index: 10;
}

@keyframes floatUpPop {
	0% {
		opacity: 1;
		transform: translate(0, 0) scale(0.5);
	}
	50% {
		opacity: 0.95;
		transform: translate(var(--tx, 0px), -45px) scale(1.25);
	}
	100% {
		opacity: 0;
		transform: translate(var(--tx, 0px), -90px) scale(0.8);
	}
}

/* MILENA STATS & CONTROLS */
.stat-bars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: 1rem;
}

.stat-item {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #e9d5ff;
	border-radius: var(--radius-sm);
	padding: 0.6rem 0.8rem;
}

.stat-label {
	font-size: 0.78rem;
	color: #7e22ce;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.35rem;
}

.stat-track {
	height: 8px;
	background: #f3e8ff;
	border-radius: 50px;
	overflow: hidden;
}

.stat-fill {
	height: 100%;
	border-radius: 50px;
	transition: width 0.3s ease;
}

.stat-fill.love {
	background: linear-gradient(90deg, #f472b6, #ec4899);
}

.stat-fill.squish {
	background: linear-gradient(90deg, #c084fc, #9333ea);
}

/* INTERACTIVE FEEDING TRAY */
.feed-tray {
	margin-top: 1rem;
	background: rgba(243, 232, 255, 0.6);
	border: 1.5px dashed #d8b4fe;
	border-radius: var(--radius-md);
	padding: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feed-title {
	font-size: 0.82rem;
	font-weight: 700;
	color: #6b21a8;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.feed-buttons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.snack-btn {
	flex: 1;
	min-width: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	padding: 0.45rem 0.3rem;
	background: #ffffff;
	border: 1px solid #d8b4fe;
	border-radius: var(--radius-sm);
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	color: #581c87;
	transition: all 0.2s ease;
}

.snack-btn:hover {
	transform: translateY(-2px);
	background: #faf5ff;
	border-color: #a855f7;
	box-shadow: 0 4px 10px rgba(168, 85, 247, 0.15);
}

.snack-btn:active {
	transform: scale(0.95);
}

.snack-icon {
	font-size: 1.35rem;
}

/* RIGHT SECTION: SIDE-BY-SIDE PURPLE SQUISHY & THE FRAMED PICTURE */
.squishy-picture-stage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	align-items: stretch;
}

@media (max-width: 650px) {
	.squishy-picture-stage {
		grid-template-columns: 1fr;
	}
}

/* THE FRAMED PICTURE BESIDE THE SQUISHY ("OBRAZ KOŁO DUMPLINGA") */
.framed-picture-box {
	background: linear-gradient(145deg, #ffffff, #faf5ff);
	border: 2px solid #e9d5ff;
	border-radius: var(--radius-md);
	padding: 0.9rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	position: relative;
	box-shadow: 0 8px 24px rgba(147, 51, 234, 0.08);
}

/* FRAME STYLES */
.art-frame {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #ffffff;
	display: flex;
	flex-direction: column;
}

/* Gold Baroque Frame */
.art-frame.gold-baroque {
	padding: 10px;
	background: linear-gradient(135deg, #fef08a, #ca8a04, #fef08a);
	box-shadow: 0 6px 16px rgba(161, 98, 7, 0.35), inset 0 0 4px rgba(0, 0, 0, 0.2);
	border: 2px solid #a16207;
}

/* Lilac Glow Frame */
.art-frame.lilac-glow {
	padding: 10px;
	background: linear-gradient(135deg, #e9d5ff, #a855f7, #c084fc);
	box-shadow: 0 0 20px rgba(192, 132, 252, 0.5), inset 0 0 4px rgba(255, 255, 255, 0.6);
	border: 2px solid #9333ea;
}

/* Polaroid Frame */
.art-frame.polaroid {
	padding: 8px 8px 28px 8px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	transform: rotate(-1.5deg);
}

.polaroid-caption {
	position: absolute;
	bottom: 6px;
	left: 0;
	right: 0;
	text-align: center;
	font-family: var(--font-hand);
	font-size: 1.15rem;
	font-weight: 700;
	color: #6b21a8;
}

/* Canvas / Display inside frame */
.art-canvas-container {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	overflow: hidden;
	background: #faf5ff;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.interactive-canvas {
	width: 100%;
	height: 100%;
	display: block;
	cursor: crosshair;
	touch-action: none;
}

.art-badge-tag {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(0, 0, 0, 0.65);
	color: #ffffff;
	font-size: 0.68rem;
	padding: 0.2rem 0.5rem;
	border-radius: 50px;
	backdrop-filter: blur(4px);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	pointer-events: none;
}

/* Picture Controls */
.picture-controls {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.art-presets-row {
	display: flex;
	gap: 0.35rem;
	overflow-x: auto;
	padding-bottom: 0.2rem;
}

.art-preset-chip {
	flex-shrink: 0;
	padding: 0.25rem 0.6rem;
	background: #f3e8ff;
	border: 1px solid #d8b4fe;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 600;
	color: #6b21a8;
	cursor: pointer;
	transition: all 0.15s ease;
}

.art-preset-chip.active {
	background: #a855f7;
	color: #ffffff;
	border-color: #9333ea;
}

/* Drawing tool toolbar */
.draw-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.3rem;
	background: #f5f3ff;
	padding: 0.4rem;
	border-radius: var(--radius-sm);
	border: 1px solid #e9d5ff;
	flex-wrap: wrap;
}

.color-dots {
	display: flex;
	gap: 0.3rem;
}

.color-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: transform 0.15s ease;
}

.color-dot.active {
	transform: scale(1.3);
	outline: 2px solid #9333ea;
}

.draw-btn {
	padding: 0.25rem 0.5rem;
	background: #ffffff;
	border: 1px solid #d8b4fe;
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 600;
	color: #6b21a8;
	cursor: pointer;
}

.draw-btn:hover {
	background: #ede9fe;
}

/* PURPLE SQUISHY BOX (Next to the picture) */
.purple-squishy-box {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background: linear-gradient(145deg, #faf5ff, #f3e8ff);
	border: 2px solid #d8b4fe;
	border-radius: var(--radius-md);
	padding: 0.9rem;
	box-shadow: 0 8px 24px rgba(168, 85, 247, 0.12);
}

.squishy-aura {
	position: absolute;
	width: 190px;
	height: 190px;
	background: radial-gradient(circle, rgba(192, 132, 252, 0.35) 0%, rgba(192, 132, 252, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: pulseAura 3s infinite ease-in-out;
}

@keyframes pulseAura {
	0%, 100% { transform: scale(0.9); opacity: 0.6; }
	50% { transform: scale(1.2); opacity: 1; }
}

/* SQUISHY INTERACTION BAR */
.squish-power-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.85);
	padding: 0.45rem 0.75rem;
	border-radius: var(--radius-sm);
	border: 1px solid #d8b4fe;
	font-size: 0.78rem;
	font-weight: 600;
	color: #6b21a8;
}

.jelly-wiggle-btn {
	background: linear-gradient(135deg, #c084fc, #9333ea);
	color: #ffffff;
	border: none;
	padding: 0.4rem 0.75rem;
	border-radius: 50px;
	font-family: var(--font-title);
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(147, 51, 234, 0.25);
	transition: all 0.2s ease;
}

.jelly-wiggle-btn:hover {
	transform: scale(1.06);
	box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

/* BOTTOM INTERACTIVE DOCK: DEDICATION, FORTUNES, WARDROBE, SNAPSHOT */
.dock-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}

.dock-card {
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(248, 240, 255, 0.9));
	backdrop-filter: blur(12px);
	border: 1.5px solid rgba(216, 180, 254, 0.5);
	border-radius: var(--radius-md);
	padding: 1.2rem;
	box-shadow: var(--shadow-kawaii);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.dock-card h3 {
	font-family: var(--font-title);
	font-size: 1.08rem;
	color: var(--purple-dark);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* DEDICATION NOTE FOR MILENA */
.milena-love-letter {
	background: #fefce8;
	border: 1.5px dashed #facc15;
	border-radius: var(--radius-sm);
	padding: 0.9rem;
	position: relative;
	font-family: var(--font-hand);
	font-size: 1.25rem;
	color: #713f12;
	line-height: 1.4;
	box-shadow: 0 4px 10px rgba(234, 179, 8, 0.1);
}

.milena-love-letter .pin {
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.1rem;
}

.note-input {
	width: 100%;
	border: 1px solid #fde047;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 0.4rem 0.6rem;
	font-family: var(--font-hand);
	font-size: 1.15rem;
	color: #713f12;
	resize: none;
}

/* FORTUNE COOKIE / DUMPLING CRACKER */
.fortune-box {
	background: linear-gradient(135deg, #faf5ff, #f3e8ff);
	border: 1px solid #d8b4fe;
	border-radius: var(--radius-sm);
	padding: 0.85rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.fortune-text {
	font-family: var(--font-title);
	font-size: 0.95rem;
	color: #6b21a8;
	font-weight: 600;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ACCESSORIES BAR */
.acc-selector {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.acc-btn {
	padding: 0.35rem 0.65rem;
	background: #ffffff;
	border: 1.5px solid #d8b4fe;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #6b21a8;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.acc-btn.active {
	background: #9333ea;
	color: #ffffff;
	border-color: #7e22ce;
}

/* MINI-GAME MODAL / OVERLAY */
.minigame-container {
	background: linear-gradient(165deg, #ffffff, #faf5ff);
	border: 2px solid #c084fc;
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	position: relative;
	box-shadow: var(--shadow-kawaii);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.game-canvas-board {
	width: 100%;
	max-width: 500px;
	height: 280px;
	background: radial-gradient(circle at 50% 30%, #ede9fe 0%, #ddd6fe 100%);
	border: 2px solid #a855f7;
	border-radius: var(--radius-md);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	touch-action: none;
}

.game-score-bar {
	display: flex;
	gap: 1.5rem;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.1rem;
	color: #581c87;
}

/* FOOTER */
.site-footer {
	text-align: center;
	margin-top: 1rem;
	color: #7e22ce;
	font-size: 0.88rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
}

.site-footer span {
	font-weight: 600;
}
