/** Danganronpa v1 – styles.css **/
:root {
	--pink: #ff4fa3;
	--pink-soft: #ff91c7;
	--hot-pink: #ff2c9b;
	--shadow: rgba(0, 0, 0, 0.35);
	--bg: #0b0b0f;
	--fg: #f2f2f5;
	--gray: #8b8b95;
	--accent: #d9043d;
}
html,
body {
	height: 100%;
}
body {
	margin: 0;
	background: radial-gradient(1200px 600px at 80% 20%, rgba(255, 76, 160, 0.16), transparent 60%),
		radial-gradient(800px 500px at 10% 80%, rgba(255, 76, 160, 0.12), transparent 60%), var(--bg);
	color: var(--fg);
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Noto Sans', 'Apple Color Emoji',
		'Segoe UI Emoji';
	overflow-x: hidden;
}
a {
	color: var(--pink);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background: url('danganrompav1/images/hopes-peak-logo.png') center/600px auto no-repeat;
	opacity: 0.05;
	pointer-events: none;
	filter: contrast(120%) grayscale(100%);
}
.loader {
	position: fixed;
	inset: 0;
	background: #000;
	display: grid;
	place-items: center;
	z-index: 9999;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden {
	opacity: 0;
	visibility: hidden;
}
.loadbox {
	width: min(520px, 90vw);
	text-align: center;
}
.loadtitle {
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0.2rem 0 1rem;
}
.bar {
	height: 10px;
	background: #16161a;
	border: 1px solid #2a2a2f;
	border-radius: 999px;
	overflow: hidden;
	box-shadow: 0 0 0 1px #000 inset;
}
.bar > i {
	display: block;
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg, var(--pink), #fff);
	box-shadow: 0 0 16px var(--pink-soft);
	transition: width 0.2s ease;
}
.loadhint {
	color: #cfcfd6;
	margin: 0.75rem 0 0.25rem;
	font-size: 0.9rem;
}
.monokuma {
	display: inline-block;
	margin-top: 14px;
	filter: drop-shadow(0 4px 16px var(--shadow));
	animation: wobble 1.2s ease-in-out infinite;
}
@keyframes wobble {
	0%,
	100% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-6px) rotate(-2deg);
	}
}
.wheel {
	position: fixed;
	left: 50px;
	bottom: 20px;
	width: 420px;
	height: 240px;
	z-index: 10001;
	pointer-events: none;
	transform: scale(1.5);
	transform-origin: left bottom;
}

.wheel::before {
	content: '';
	position: absolute;
	left: -15px;
	bottom: 0;
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(11, 11, 15, 0.98));
	border: 2px solid var(--pink);
	border-radius: 0 100% 0 0;
	box-shadow: 
		0 6px 16px var(--shadow),
		0 0 16px rgba(255, 76, 160, 0.5);
}

.wheel ul {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
	height: 100%;
	pointer-events: auto;
}

.wheel li {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 130px;
	height: 38px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(11, 11, 15, 0.98));
	color: var(--pink);
	font-weight: 900;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	box-shadow: 0 4px 12px var(--shadow);
	border: 2px solid transparent;
	user-select: none;
	transform-origin: 0 50%;
	text-shadow: 0 0 8px rgba(255, 76, 160, 0.5);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Tab angles - upward-opening fan pointing right and up */
/* Order: Home (top), Gameplay, SNS, About (back) */
.b-about {
	transform: rotate(0deg) translateX(30px);
	z-index: 1;
}

.b-sns {
	transform: rotate(-30deg) translateX(30px);
	z-index: 2;
}

.b-gameplay {
	transform: rotate(-60deg) translateX(30px);
	z-index: 3;
}

.b-home {
	transform: rotate(-90deg) translateX(30px);
	z-index: 4;
}

/* Hover states - extend outward and scale up */
.b-about:hover {
	transform: rotate(0deg) translateX(50px) scale(1.15);
	z-index: 10;
}

.b-sns:hover {
	transform: rotate(-30deg) translateX(50px) scale(1.15);
	z-index: 10;
}

.b-gameplay:hover {
	transform: rotate(-60deg) translateX(50px) scale(1.15);
	z-index: 10;
}

.b-home:hover {
	transform: rotate(-90deg) translateX(50px) scale(1.15);
	z-index: 10;
}

.wheel li.active {
	box-shadow: 
		0 7px 18px var(--shadow),
		0 0 20px rgba(255, 76, 160, 0.6);
	border-color: var(--pink-soft);
	text-shadow: 0 0 12px rgba(255, 76, 160, 0.8);
}

.wheel li:hover {
	box-shadow: 
		0 6px 16px var(--shadow),
		0 0 16px rgba(255, 76, 160, 0.5);
	border-color: var(--pink);
}
.flash {
	position: fixed;
	inset: 0;
	background: radial-gradient(
		circle at var(--x) var(--y),
		rgba(255, 255, 255, 0.88),
		rgba(255, 76, 160, 0.35) 30%,
		transparent 55%
	);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease-out;
	z-index: 9998;
}
.flash.show {
	opacity: 1;
}
section {
	padding: 96px 6vw;
	position: relative;
}
.hero {
	min-height: 84vh;
	display: grid;
	place-items: center;
	text-align: center;
}
.title {
	font-size: clamp(28px, 4vw, 56px);
	font-weight: 900;
	letter-spacing: 0.02em;
	text-shadow: 0 2px 0 #000, 0 4px 24px rgba(255, 76, 160, 0.3);
}
.subtitle {
	color: #d8d8df;
	max-width: 900px;
	margin: 10px auto 0;
	line-height: 1;
}
.divider {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--pink), transparent);
	opacity: 0.66;
	margin: 56px auto;
	width: min(860px, 90vw);
}
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 22px;
}
.card {
	position: relative;
	background: linear-gradient(180deg, rgba(255, 76, 160, 0.08), rgba(255, 76, 160, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 34px var(--shadow);
}
.card img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
	filter: grayscale(10%);
}
.card h3 {
	margin: 10px 12px 2px;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
}
.card small {
	color: var(--gray);
	display: block;
	margin: 0 12px 10px;
}
.quote {
	position: absolute;
	inset: auto 10px 10px 10px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75));
	color: #fff;
	padding: 10px 12px;
	border-left: 3px solid var(--pink);
	border-radius: 10px;
	opacity: 0;
	transform: translateY(8px);
	transition: 0.2s ease;
	font-size: 0.9rem;
}
.card:hover .quote {
	opacity: 1;
	transform: translateY(0);
}
.sns {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
}
.sns a {
	display: block;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(255, 76, 160, 0.08), rgba(255, 76, 160, 0.02));
	box-shadow: 0 10px 24px var(--shadow);
	font-weight: 700;
}
.sns a span {
	display: block;
	color: #d0d0d7;
	font-weight: 500;
	margin-top: 6px;
}
.about {
	max-width: 900px;
	margin-inline: auto;
	line-height: 1.7;
	color: #e9e9ef;
}
.pinkblink {
	color: var(--pink);
	text-shadow: 0 0 10px rgba(255, 76, 160, 0.45);
	animation: blink 1.4s steps(2, end) infinite;
}
@keyframes blink {
	50% {
		opacity: 0.55;
	}
}
.backtop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: var(--pink);
	color: #000;
	font-weight: 900;
	border: none;
	padding: 12px 16px;
	border-radius: 999px;
	box-shadow: 0 10px 24px var(--shadow);
}
.player {
	position: fixed;
	right: 18px;
	bottom: 140px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(11, 11, 15, 0.98));
	border: 2px solid var(--pink);
	padding: 12px;
	border-radius: 14px;
	backdrop-filter: blur(2px);
	box-shadow: 0 10px 24px var(--shadow), 0 0 12px rgba(255, 76, 160, 0.3);
	z-index: 10000;
	min-width: 180px;
	user-select: none;
	display: block !important;
	visibility: visible !important;
	cursor: move;
}

.player.dragging {
	opacity: 0.9;
	box-shadow: 0 14px 32px var(--shadow), 0 0 20px rgba(255, 76, 160, 0.5);
}

.player label {
	font-size: 0.8rem;
	color: var(--pink);
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	text-shadow: 0 0 8px rgba(255, 76, 160, 0.5);
}

.player-controls {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
}

.player-controls button {
	flex: 1;
	padding: 8px 12px;
	background: linear-gradient(135deg, rgba(255, 76, 160, 0.4), rgba(255, 76, 160, 0.2));
	border: 1px solid rgba(255, 76, 160, 0.5);
	color: #fff;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	transition: 0.15s ease;
	cursor: pointer;
	user-select: none;
}

.player-controls button:hover {
	background: linear-gradient(135deg, rgba(255, 76, 160, 0.6), rgba(255, 76, 160, 0.4));
	box-shadow: 0 0 10px rgba(255, 76, 160, 0.4);
}

.player-controls button:active {
	transform: scale(0.96);
}

.player-meta {
	margin-top: 8px;
}

.player-meta #trackTitle {
	font-size: 0.75rem;
	color: #f2f2f5;
	margin-bottom: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.player-meta select {
	width: 100%;
	padding: 4px 6px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 76, 160, 0.3);
	color: #f2f2f5;
	border-radius: 4px;
	font-size: 0.7rem;
	cursor: pointer;
}

.player-meta select option {
	background: var(--bg);
	color: #f2f2f5;
}

.back-btn {
	display: block;
	margin-top: 12px;
	padding: 12px 16px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(11, 11, 15, 0.98));
	border: 2px solid var(--pink);
	border-radius: 14px;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 24px var(--shadow), 0 0 12px rgba(255, 76, 160, 0.3);
	text-decoration: none;
}

.back-btn:hover {
	box-shadow: 0 14px 32px var(--shadow), 0 0 20px rgba(255, 76, 160, 0.5);
	transform: translateY(-2px);
}
@media (max-width: 640px) {
	.wheel {
		transform: scale(0.92);
		transform-origin: left bottom;
	}
	.player {
		bottom: 130px;
	}
}

/* ====== CHARACTER PROFILE STYLES ====== */
body {
	padding-top: 40px;
	padding-bottom: 40px;
}

header {
	text-align: center;
	margin: 80px auto 15px;
	max-width: 900px;
	padding: 0 20px;
}

.title {
	margin: 0 0 10px 0;
	font-size: clamp(32px, 5vw, 56px);
}

.japanese {
	font-size: 0.7em;
	color: var(--pink-soft);
	opacity: 0.9;
	margin-left: 8px;
}

.ultimate {
	font-size: 1.5rem;
	color: #00d9ff;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 10px 0 15px;
}

.quote {
	font-size: 1.25rem;
	color: var(--pink);
	font-style: italic;
	margin: 0;
	text-shadow: 0 0 10px rgba(255, 76, 160, 0.3);
}

.image-switcher {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	width: 100%;
	min-height: 750px;
}

.switcher-buttons {
	text-align: center;
	margin: 40px auto;
	z-index: 5;
}

.switcher-buttons {
	display: inline-flex;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 76, 160, 0.3);
	border-radius: 8px;
	padding: 4px;
	gap: 2px;
}

.switcher-buttons-wrapper {
	text-align: center;
	margin: 0 auto 40px;
}

.switcher-btn {
	padding: 10px 20px;
	background: none;
	border: none;
	color: #c8c8d2;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.switcher-btn:hover {
	color: var(--pink);
	background: rgba(255, 76, 160, 0.1);
}

.switcher-btn.active {
	color: #fff;
	background: linear-gradient(135deg, rgba(255, 76, 160, 0.3), rgba(255, 76, 160, 0.15));
	box-shadow: 0 0 15px rgba(255, 76, 160, 0.3);
}

.switcher-image {
	max-width: 100%;
	max-block-size: 100%;
	height: auto;
	min-height: 500px;
	filter: drop-shadow(0 12px 32px var(--shadow)) brightness(0.9) contrast(1.1) saturate(1.05);
	border-radius: 12px;
	transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.switcher-image:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 20px 40px var(--shadow)) brightness(1.0) contrast(1.15) saturate(1.1);
}

.switcher-image[src*="splash_art"] {
	min-height: 700px;
	min-width: 700px;
}

.concept-image-switcher {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.concept-switcher-buttons {
	display: inline-flex;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 76, 160, 0.3);
	border-radius: 8px;
	padding: 4px;
	gap: 2px;
}

.concept-btn {
	padding: 10px 20px;
	background: none;
	border: none;
	color: #c8c8d2;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	cursor: pointer;
}

.concept-btn:hover {
	color: var(--pink);
	background: rgba(255, 76, 160, 0.1);
}

.concept-btn.active {
	color: #fff;
	background: linear-gradient(135deg, rgba(255, 76, 160, 0.3), rgba(255, 76, 160, 0.15));
	box-shadow: 0 0 15px rgba(255, 76, 160, 0.3);
}

.profile-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1100px;
	margin: 60px auto;
	padding: 0 20px;
	align-items: center;
	justify-items: center;
}

.profile-info {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	background: linear-gradient(180deg, rgba(255, 76, 160, 0.08), rgba(255, 76, 160, 0.02));
	border: 1px solid rgba(255, 76, 160, 0.2);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 12px 34px var(--shadow);
}

.info-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.info-item label {
	font-weight: 700;
	color: var(--pink);
	font-size: 1.05rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.info-item p {
	margin: 0;
	font-size: 1.15rem;
	color: #f2f2f5;
}

.preferences {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.pref-section {
	background: linear-gradient(180deg, rgba(255, 76, 160, 0.08), rgba(255, 76, 160, 0.02));
	border: 1px solid rgba(255, 76, 160, 0.2);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 12px 34px var(--shadow);
}

.pref-section h3 {
	margin: 0 0 12px 0;
	font-size: 1.1rem;
	color: var(--pink);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 700;
}

.pref-section p {
	margin: 0;
	color: #e9e9ef;
	line-height: 1.6;
	font-size: 1.05rem;
}

.quote-box {
	grid-column: 1 / -1;
	padding: 28px;
	text-align: center;
	font-style: italic;
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--pink);
	border-left: 3px solid var(--pink);
}

.character-concept {
	min-height: 100vh;
	margin: 0;
	padding: 80px 6vw;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.character-concept h2 {
	margin: 0 0 60px 0;
	font-size: 3.5rem;
	color: var(--pink);
	letter-spacing: 0.02em;
	text-shadow: 0 2px 8px rgba(255, 76, 160, 0.2);
	width: 100%;
}

.concept-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	width: 100%;
}

.concept-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.concept-text p {
	margin: 0;
	line-height: 1.8;
	color: #e9e9ef;
	font-size: 1.1rem;
}

.concept-text p + p {
	margin-top: 40px;
}

.concept-image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 12px 32px var(--shadow);
	filter: drop-shadow(0 12px 32px var(--shadow)) brightness(0.9) contrast(1.1) saturate(1.05);
	border: 1px solid rgba(255, 76, 160, 0.3);
	transition: transform 0.3s ease, filter 0.3s ease;
}

.concept-image:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 20px 40px var(--shadow)) brightness(1.0) contrast(1.15) saturate(1.1);
}

/* ====== IMAGE MODAL ====== */
.image-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	animation: fadeIn 0.3s ease;
}

.image-modal.active {
	display: flex;
}

.modal-image {
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 0 60px rgba(255, 76, 160, 0.5);
	animation: zoomIn 0.3s ease;
}

.modal-close {
	position: absolute;
	top: 30px;
	right: 40px;
	font-size: 4rem;
	color: var(--pink);
	z-index: 10000;
	transition: all 0.2s ease;
	font-weight: 300;
	line-height: 1;
}

.modal-close:hover {
	color: #ff91c7;
	transform: scale(1.2);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.character_art {
	max-width: 1000px;
	margin: 80px auto;
	padding: 0 20px;
	text-align: center;
}

.splash-container {
	position: relative;
	display: inline-block;
	perspective: 1000px;
}

.splash-container::before {
	content: '';
	position: absolute;
	inset: -20px;
	background: linear-gradient(135deg, rgba(200, 200, 210, 0.15), rgba(255, 76, 160, 0.2), rgba(0, 0, 0, 0.15));
	border-radius: 20px;
	opacity: 0;
	animation: glowPulse 3s ease-in-out infinite;
	z-index: -1;
}

.splash-container::after {
	content: '';
	position: absolute;
	inset: -20px;
	border: 3px solid;
	border-color: var(--pink);
	border-image: linear-gradient(135deg, var(--pink), #c8c8d2, rgba(0, 0, 0, 0.4), var(--pink)) 1;
	border-radius: 20px;
	animation: borderRotate 4s linear infinite;
	z-index: -1;
	box-shadow: 
		inset 0 0 20px rgba(255, 76, 160, 0.2),
		0 0 30px rgba(200, 200, 210, 0.3);
}

.splash-image {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 12px 32px var(--shadow)) brightness(0.9) contrast(1.1) saturate(1.05);
	border-radius: 12px;
	display: block;
	animation: floatImage 4s ease-in-out infinite;
	box-shadow: 0 0 30px rgba(200, 200, 210, 0.4), inset 0 0 20px rgba(255, 76, 160, 0.1);
	transition: transform 0.3s ease, filter 0.3s ease;
	padding: 8px;
	background: linear-gradient(135deg, rgba(200, 200, 210, 0.1), rgba(255, 255, 255, 0.05));
	border: 1px solid rgba(200, 200, 210, 0.3);
}

.splash-container:hover .splash-image {
	transform: scale(1.05);
	filter: drop-shadow(0 20px 40px var(--shadow)) brightness(1.0) contrast(1.15) saturate(1.1);
	box-shadow: 0 0 50px rgba(255, 76, 160, 0.5), inset 0 0 20px rgba(255, 76, 160, 0.2);
}

@keyframes glowPulse {
	0%, 100% {
		opacity: 0;
		transform: scale(1);
	}
	50% {
		opacity: 0.4;
		transform: scale(1.05);
	}
}

@keyframes borderRotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

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

.character_art img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 12px 32px var(--shadow));
	border-radius: 12px;
}

.back-link {
	display: block;
	text-align: center;
	margin: 60px auto 0;
	padding: 16px 24px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(11, 11, 15, 0.98));
	border: 2px solid var(--pink);
	border-radius: 14px;
	color: #fff;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 10px 24px var(--shadow), 0 0 12px rgba(255, 76, 160, 0.3);
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.back-link:hover {
	box-shadow: 0 14px 32px var(--shadow), 0 0 20px rgba(255, 76, 160, 0.5);
	transform: translateY(-2px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
	.profile-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

	.preferences {
		grid-template-columns: 1fr;
	}

	header {
		margin: 40px auto 40px;
	}
}

/* Force player visibility */
.player {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.back-btn {
	display: block !important;
	visibility: visible !important;
}
