html {
	height: 100%;
}

body {
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #fff;
	background-color: #000;
}

.camp-menu-toggle {
	width: 46px;
	height: 46px;
	display: grid;
	place-content: center;
	gap: 5px;
	border: 0;
	border-radius: 999px;
	background: rgba(3, 18, 12, 0.78);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(12px);
	cursor: pointer;
}

.camp-menu-toggle span {
	width: 22px;
	height: 2px;
	display: block;
	border-radius: 999px;
	background: #fff;
}

.camp-menu-toggle:hover,
.camp-menu-toggle:focus-visible {
	background: rgba(15, 36, 25, 0.96);
	outline: none;
}

.camp-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: none;
	background: rgba(0, 0, 0, 0.28);
	pointer-events: auto;
}

.camp-side-menu {
	position: fixed;
	top: max(18px, env(safe-area-inset-top));
	left: max(18px, env(safe-area-inset-left));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 61;
	width: min(340px, calc(100vw - 36px));
	display: flex;
	flex-direction: column;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(10, 27, 20, 0.93), rgba(7, 18, 13, 0.83));
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(14px);
	transition: width 0.22s ease, transform 0.22s ease;
	pointer-events: auto;
	overflow: hidden;
}

body.is-menu-open .camp-menu-overlay {
	display: none;
}

body.is-menu-open .camp-side-menu {
	width: min(340px, calc(100vw - 36px));
}

body:not(.is-menu-open) .camp-side-menu {
	width: 54px;
}

.camp-side-menu__header {
	display: grid;
	grid-template-columns: 46px 52px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 8px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.is-menu-open) .camp-side-menu__header {
	display: flex;
	justify-content: center;
	padding: 8px 0;
}

body:not(.is-menu-open) .camp-menu-logo,
body:not(.is-menu-open) .camp-menu-title-button,
body:not(.is-menu-open) .camp-menu-panel {
	display: none;
}

.camp-menu-rail {
	display: none;
	min-height: 0;
	padding: 10px 0 12px;
	flex: 1 1 auto;
	grid-auto-rows: 42px;
	align-content: start;
	justify-items: center;
	gap: 10px;
}

body:not(.is-menu-open) .camp-menu-rail {
	display: grid;
}

.camp-menu-rail__button {
	position: relative;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
	font: inherit;
	cursor: pointer;
}

.camp-menu-rail__button:hover,
.camp-menu-rail__button:focus-visible {
	border-color: rgba(217, 247, 162, 0.78);
	background: rgba(157, 204, 98, 0.18);
	outline: none;
}

.camp-menu-rail__logo {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.camp-menu-rail__logo span {
	width: 38px;
	height: 32px;
	display: block;
	background: url("../skin/menu_camp_logo.svg") center / contain no-repeat;
}

.camp-menu-rail__current {
	height: 46px;
	border-color: rgba(217, 247, 162, 0.48);
	border-radius: 16px;
	background: rgba(32, 52, 33, 0.88);
	cursor: default;
}

.camp-menu-rail__current span {
	position: absolute;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #a9d86f;
	box-shadow: 0 0 0 4px rgba(169, 216, 111, 0.12);
}

.camp-menu-rail__current strong {
	max-width: 32px;
	overflow: hidden;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.05;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	transform: translateY(4px);
}

.camp-menu-rail__map span {
	width: 23px;
	height: 23px;
	display: block;
	background:
		linear-gradient(135deg, transparent 44%, #fff 45% 55%, transparent 56%) 4px 12px / 14px 7px no-repeat,
		linear-gradient(135deg, #fff 0 0) 3px 15px / 5px 5px no-repeat,
		linear-gradient(135deg, #fff 0 0) 14px 14px / 5px 5px no-repeat;
	position: relative;
}

.camp-menu-rail__map span::before {
	position: absolute;
	left: 7px;
	top: 1px;
	width: 8px;
	height: 8px;
	border: 3px solid #fff;
	border-radius: 50% 50% 50% 0;
	content: "";
	transform: rotate(-45deg);
}

.camp-menu-rail__map span::after {
	position: absolute;
	left: 10px;
	top: 4px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #fff;
	content: "";
}

.camp-menu-rail__tour span,
.camp-menu-rail__reserve span {
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
}

.camp-menu-rail__tour.is-running {
	border-color: rgba(217, 247, 162, 0.82);
	background: rgba(96, 139, 68, 0.92);
}

.camp-menu-rail__reserve {
	margin-top: auto;
	background: rgba(78, 124, 91, 0.42);
}

.camp-menu-rail__reserve span {
	font-size: 11px;
	letter-spacing: 0;
}

.camp-menu-logo {
	width: 52px;
	height: 44px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	font: inherit;
}

.camp-menu-logo:hover,
.camp-menu-logo:focus-visible {
	opacity: 0.82;
	outline: none;
}

.camp-menu-logo span {
	width: 52px;
	height: 44px;
	display: block;
	background: url("../skin/menu_camp_logo.svg") center / contain no-repeat;
}

.camp-menu-title-button {
	min-width: 0;
	padding: 0;
	border: 0;
	color: inherit;
	background: transparent;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.camp-menu-title-button:hover,
.camp-menu-title-button:focus-visible {
	opacity: 0.86;
	outline: none;
}

.camp-side-menu h2 {
	margin: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.15;
}

.camp-side-menu p {
	margin: 5px 0 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
}

.camp-menu-panel {
	display: block;
	min-height: 0;
	overflow-y: auto;
	padding: 14px 14px 16px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.camp-menu-panel::-webkit-scrollbar {
	width: 5px;
}

.camp-menu-panel::-webkit-scrollbar-track {
	background: transparent;
}

.camp-menu-panel::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
}

.camp-menu-panel h3 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
}

.camp-menu-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin: 0 0 10px;
}

.camp-menu-section-head h3 {
	margin: 0;
	flex: 0 0 auto;
}

.camp-layout-map-button {
	min-width: 0;
	min-height: 34px;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) 22px;
	align-items: center;
	gap: 7px;
	padding: 5px 6px;
	border: 1px solid rgba(214, 238, 134, 0.78);
	border-radius: 8px;
	color: #fff;
	background: rgba(28, 48, 29, 0.92);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.camp-layout-map-button:hover,
.camp-layout-map-button:focus-visible {
	border-color: rgba(230, 255, 158, 0.96);
	background: rgba(65, 91, 42, 0.92);
	outline: none;
}

.camp-layout-map-button__icon {
	width: 24px;
	height: 24px;
	display: block;
	background:
		linear-gradient(135deg, transparent 44%, #fff 45% 55%, transparent 56%) 5px 13px / 14px 7px no-repeat,
		linear-gradient(135deg, #fff 0 0) 4px 16px / 5px 5px no-repeat,
		linear-gradient(135deg, #fff 0 0) 15px 15px / 5px 5px no-repeat;
	position: relative;
}

.camp-layout-map-button__icon::before {
	position: absolute;
	left: 7px;
	top: 2px;
	width: 9px;
	height: 9px;
	border: 3px solid #fff;
	border-radius: 50% 50% 50% 0;
	content: "";
	transform: rotate(-45deg);
}

.camp-layout-map-button__icon::after {
	position: absolute;
	left: 10px;
	top: 5px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #fff;
	content: "";
}

.camp-layout-map-button__text {
	min-width: 0;
	display: grid;
	gap: 1px;
}

.camp-layout-map-button strong,
.camp-layout-map-button small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.camp-layout-map-button strong {
	font-size: 11px;
	font-weight: 900;
	line-height: 1.1;
}

.camp-layout-map-button small {
	color: rgba(255, 255, 255, 0.64);
	font-size: 8px;
	font-weight: 800;
	line-height: 1.1;
}

.camp-layout-map-button em {
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	color: #fff;
	background: rgba(117, 151, 74, 0.7);
	font-style: normal;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.camp-menu-subtitle-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 20px;
	margin-bottom: 12px;
}

.camp-menu-subtitle-row .camp-menu-subtitle {
	margin: 0 !important;
}

.camp-menu-overview-button {
	position: relative;
	flex: 0 0 auto;
	min-height: 30px;
	padding: 0 11px;
	border: 1px solid rgba(217, 247, 162, 0.28);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(17, 42, 25, 0.66);
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.camp-menu-overview-button:hover,
.camp-menu-overview-button:focus-visible,
.camp-menu-overview-button.is-current {
	border-color: rgba(217, 247, 162, 0.95);
	color: #173012;
	background: #d9f7a2;
	outline: none;
}

.camp-site-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 5px;
}

.camp-site-grid button {
	position: relative;
	min-width: 0;
	min-height: 34px;
	padding: 0 3px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: #fff;
	background: rgba(255, 255, 255, 0.07);
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.camp-site-grid .camp-site-button--front {
	background: rgba(42, 58, 45, 0.78);
}

.camp-site-grid .camp-site-button--free {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 1px;
	background: rgba(43, 61, 43, 0.84);
}

.camp-site-grid .camp-site-button--free span,
.camp-site-grid .camp-site-button--free small {
	display: block;
	line-height: 1.05;
}

.camp-site-grid .camp-site-button--free small {
	font-size: 11px;
	font-weight: 900;
}

.camp-site-grid .camp-site-button--back {
	background: rgba(34, 52, 40, 0.8);
}

.camp-site-grid__empty {
	min-height: 34px;
	display: block;
	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: 8px;
	pointer-events: none;
}

.camp-site-grid button:hover,
.camp-site-grid button:focus-visible {
	border-color: rgba(157, 204, 98, 0.7);
	background: rgba(157, 204, 98, 0.18);
	outline: none;
}

.camp-site-grid button.is-current,
.camp-facility-list button.is-current {
	border-color: rgba(217, 247, 162, 0.95);
	background: rgba(120, 164, 82, 0.88);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 0 2px rgba(217, 247, 162, 0.2);
}

.camp-site-grid button.is-current::after,
.camp-facility-list button.is-current::after {
	content: "✓";
	position: absolute;
	top: 4px;
	right: 6px;
	width: 13px;
	height: 13px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	color: #173012;
	background: #d9f7a2;
	font-size: 9px;
	font-weight: 900;
	line-height: 1;
}

.camp-site-grid button.is-disabled {
	color: rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.03);
	cursor: not-allowed;
}

.camp-facility-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px;
}

.camp-facility-list button {
	position: relative;
	min-width: 0;
	min-height: 42px;
	display: grid;
	grid-template-columns: 31px minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	padding: 5px 8px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 8px;
	color: #fff;
	background: transparent;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease;
}

.camp-facility-list button:nth-child(even) {
	background: rgba(17, 42, 25, 0.5);
}

.camp-facility-list button:hover,
.camp-facility-list button:focus-visible {
	border-color: rgba(157, 204, 98, 0.76);
	background: rgba(157, 204, 98, 0.16);
	outline: none;
}

.camp-facility-list button.is-current {
	border-color: rgba(217, 247, 162, 0.95);
	background: rgba(120, 164, 82, 0.88);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 0 2px rgba(217, 247, 162, 0.2);
}

.camp-facility-list button > span:last-child {
	display: block;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.24;
}

.camp-facility-icon {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	background: rgba(69, 83, 50, 0.7);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.camp-facility-icon--tent,
.camp-facility-icon--path {
	background: rgba(61, 82, 31, 0.78);
}

.camp-facility-icon--coffee {
	background: rgba(68, 64, 67, 0.82);
}

.camp-facility-icon--women {
	background: linear-gradient(135deg, #6d4fd8, #8e62e6);
}

.camp-facility-icon--men,
.camp-facility-icon--sink,
.camp-facility-icon--pool,
.camp-facility-icon--valley {
	background: linear-gradient(135deg, #4268bd, #6b92e9);
}

.camp-facility-icon--parking {
	background: linear-gradient(135deg, #364f75, #5b7ccf);
	font-size: 15px;
}

.camp-facility-icon--shower {
	background: rgba(31, 51, 50, 0.84);
}

.camp-facility-icon--valley {
	font-size: 16px;
}

.camp-top-actions {
	position: fixed;
	top: max(18px, env(safe-area-inset-top));
	right: max(18px, env(safe-area-inset-right));
	z-index: 20;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	pointer-events: auto;
}

.camp-quick-actions-toggle {
	display: none;
}

.camp-current-location {
	position: fixed;
	top: max(18px, env(safe-area-inset-top));
	left: 50%;
	z-index: 21;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: min(560px, calc(100vw - 420px));
	min-height: 30px;
	padding: 5px 7px 5px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #fff;
	background: rgba(8, 18, 13, 0.88);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(12px);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
	transform: translateX(-50%);
	pointer-events: auto;
}

.camp-current-location__dot {
	width: 7px;
	height: 7px;
	flex: 0 0 auto;
	border-radius: 999px;
	background: #a9d86f;
	box-shadow: 0 0 0 4px rgba(169, 216, 111, 0.14);
}

.camp-current-location strong {
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.camp-current-location em {
	color: rgba(255, 255, 255, 0.68);
	font-style: normal;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
}

.camp-current-location b {
	min-width: 0;
	overflow: hidden;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.camp-action {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	color: #fff;
	background: rgba(8, 18, 13, 0.84);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(12px);
	font: inherit;
	text-decoration: none;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
	cursor: pointer;
}

.camp-action:hover,
.camp-action:focus-visible {
	border-color: rgba(255, 255, 255, 0.46);
	background: rgba(15, 36, 25, 0.92);
	outline: none;
}

.camp-auto-tour-action {
	position: static;
	min-width: 104px;
	min-height: 32px;
	margin-left: 4px;
	padding: 4px 10px 4px 5px;
	border-color: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	backdrop-filter: none;
}

.camp-auto-tour-action.is-running {
	border-color: rgba(217, 247, 162, 0.82);
	background: rgba(96, 139, 68, 0.92);
}

.camp-auto-tour-action .camp-action__icon {
	width: 24px;
	height: 24px;
	border-radius: 999px;
	font-size: 11px;
}

.camp-auto-tour-action .camp-action__title {
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.camp-action__icon {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 17px;
	font-weight: 800;
}

.camp-action__text {
	display: grid;
	gap: 1px;
	min-width: 0;
	text-align: left;
	white-space: nowrap;
}

.camp-action__title {
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.1;
}

.camp-action__detail {
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.14;
}

.camp-weather-line {
	display: inline;
}

.camp-weather-action {
	min-width: 252px;
}

.camp-reserve-stack {
	display: grid;
	gap: 8px;
}

.camp-reserve-stack .camp-reserve-action {
	box-sizing: border-box;
	width: 100%;
}

.camp-weather-action .camp-action__icon {
	color: #f6cf49;
	background: rgba(255, 255, 255, 0.08);
	font-size: 22px;
}

.camp-weather-action.is-loading .camp-action__icon {
	animation: camp-weather-spin 0.8s linear infinite;
}

.camp-mobile-scene-slider {
	display: none;
}

.camp-intro-overlay {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
	place-items: center;
	padding: 24px;
	background: rgba(4, 12, 8, 0.42);
	backdrop-filter: blur(6px);
	pointer-events: auto;
}

body.is-intro-open .camp-intro-overlay {
	display: grid;
}

body.is-intro-open .camp-move-guide {
	display: none;
}

.camp-intro-card {
	position: relative;
	box-sizing: border-box;
	width: min(620px, calc(100vw - 48px));
	display: grid;
	justify-items: center;
	padding: 34px 36px 32px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	color: #fff;
	background: rgba(7, 18, 13, 0.82);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
	text-align: center;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.camp-intro-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	font: inherit;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.camp-intro-close:hover,
.camp-intro-close:focus-visible {
	border-color: rgba(217, 247, 162, 0.78);
	background: rgba(145, 201, 90, 0.18);
	outline: none;
}

.camp-intro-logo {
	width: 96px;
	height: 78px;
	display: block;
	margin: 0 0 18px;
	background: url("../skin/menu_camp_logo.svg") center / contain no-repeat;
}

.camp-intro-card h1 {
	margin: 0;
	font-size: 46px;
	font-weight: 950;
	line-height: 1.1;
	letter-spacing: 0;
}

.camp-intro-subtitle {
	margin: 14px 0 0;
	font-size: 31px;
	font-weight: 400;
	line-height: 1.15;
}

.camp-intro-copy {
	margin: 30px 0 0;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
}

.camp-intro-guide-box {
	width: min(480px, 100%);
	display: grid;
	gap: 8px;
	margin-top: 22px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	text-align: left;
}

.camp-intro-guide-box strong {
	font-size: 17px;
	font-weight: 950;
	line-height: 1.25;
}

.camp-intro-guide-box span {
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.55;
}

.camp-intro-start {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 230px;
	min-height: 62px;
	margin-top: 24px;
	padding: 0 34px;
	border: 4px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	color: #fff;
	background: #7da64b;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
	font: inherit;
	font-size: 21px;
	font-weight: 950;
	cursor: pointer;
}

.camp-intro-start:hover,
.camp-intro-start:focus-visible {
	background: #8db65a;
	outline: none;
}

.camp-intro-start em {
	font-style: normal;
	font-size: 16px;
	line-height: 1;
}

@keyframes camp-weather-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.camp-reserve-action {
	background: linear-gradient(135deg, rgba(78, 124, 91, 0.94), rgba(43, 83, 61, 0.9));
}

.camp-cafe-action {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	box-sizing: border-box;
	width: 260px;
	min-width: 0;
	min-height: 64px;
	padding: 9px 14px;
	border: 3px solid rgba(76, 100, 65, 0.95);
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(10, 24, 16, 0.98), rgba(3, 15, 10, 0.96));
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.camp-cafe-action:hover,
.camp-cafe-action:focus-visible {
	border-color: rgba(114, 143, 93, 0.98);
	background: linear-gradient(135deg, rgba(15, 35, 22, 0.98), rgba(7, 22, 15, 0.98));
}

.camp-cafe-action__icon {
	width: 40px;
	height: 40px;
	border-radius: 14px;
	background: linear-gradient(135deg, #647f52, #354e30);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.camp-cafe-cup {
	position: relative;
	width: 24px;
	height: 15px;
	display: block;
	border-radius: 0 0 12px 12px;
	background: #fff;
}

.camp-cafe-cup::before {
	position: absolute;
	right: -8px;
	top: 2px;
	width: 8px;
	height: 8px;
	border: 3px solid #fff;
	border-left: 0;
	border-radius: 0 8px 8px 0;
	content: "";
}

.camp-cafe-cup::after {
	position: absolute;
	left: -5px;
	right: -7px;
	bottom: -7px;
	height: 3px;
	border-radius: 999px;
	background: #fff;
	content: "";
}

.camp-cafe-action .camp-action__title {
	color: #fff;
	font-size: 16px;
	font-weight: 950;
}

.camp-cafe-action .camp-action__detail {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
}

.camp-share-action {
	background: linear-gradient(135deg, rgba(72, 103, 183, 0.94), rgba(49, 78, 147, 0.9));
}

.camp-toast {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	top: calc(max(18px, env(safe-area-inset-top)) + 62px);
	z-index: 21;
	max-width: min(360px, calc(100vw - 36px));
	padding: 11px 14px;
	border-radius: 8px;
	color: #fff;
	background: rgba(7, 18, 13, 0.92);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
	font-size: 14px;
	font-weight: 800;
	opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.camp-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.camp-share-overlay {
	position: fixed;
	inset: 0;
	z-index: 70;
	display: none;
	background: rgba(0, 0, 0, 0.42);
	pointer-events: auto;
}

.camp-share-modal {
	position: fixed;
	top: 118px;
	right: max(18px, env(safe-area-inset-right));
	z-index: 71;
	width: min(420px, calc(100vw - 36px));
	display: none;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	color: #fff;
	background: rgba(7, 18, 13, 0.94);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(14px);
	pointer-events: auto;
}

body.is-share-open .camp-share-overlay,
body.is-share-open .camp-share-modal {
	display: block;
}

.camp-share-header {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.camp-share-header h2 {
	margin: 0;
	color: #fff;
	font-size: 24px;
}

.camp-share-header p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.camp-share-close {
	width: 34px;
	height: 34px;
	border: 0;
	color: #fff;
	background: transparent;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.camp-share-list {
	display: grid;
	gap: 8px;
}

.camp-share-option {
	width: 100%;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 14px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.camp-share-option:hover,
.camp-share-option:focus-visible {
	background: rgba(145, 201, 90, 0.16);
	outline: none;
}

.camp-share-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	font-size: 16px;
	font-weight: 900;
}

.camp-share-icon--kakao {
	color: #111;
	background: #fee500;
}

.camp-share-icon--band {
	background: #5fbe46;
}

.camp-share-icon--facebook {
	background: #315ecf;
	font-size: 25px;
}

.camp-share-icon--x {
	background: #050505;
}

.camp-share-icon--sms {
	background: #64c7a0;
	font-size: 11px;
}

.camp-share-option strong {
	display: block;
	font-size: 15px;
}

.camp-share-option small {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
}

.camp-share-option em {
	color: rgba(255, 255, 255, 0.6);
	font-style: normal;
	font-size: 24px;
}

.camp-layout-map-overlay {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: none;
	background: rgba(0, 0, 0, 0.58);
	pointer-events: auto;
}

.camp-layout-map-modal {
	position: fixed;
	inset: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
	z-index: 81;
	display: none;
	grid-template-rows: auto minmax(0, 1fr);
	max-width: 1280px;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #fff;
	background: rgba(7, 18, 13, 0.95);
	box-shadow: 0 22px 62px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(14px);
	overflow: hidden;
	pointer-events: auto;
}

body.is-layout-map-open .camp-layout-map-overlay,
body.is-layout-map-open .camp-layout-map-modal {
	display: grid;
}

.camp-layout-map-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(7, 20, 13, 0.86);
}

.camp-layout-map-header > div:first-child {
	flex: 1 1 auto;
	min-width: 0;
}

.camp-layout-map-header h2 {
	margin: 0;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.2;
}

.camp-layout-map-header p {
	margin: 5px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.camp-layout-map-zoom-controls {
	display: none;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	margin-left: auto;
}

.camp-layout-map-zoom-controls button {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	font: inherit;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
}

.camp-layout-map-zoom-controls button:disabled {
	opacity: 0.38;
	cursor: default;
}

.camp-layout-map-zoom-controls button:not(:disabled):active {
	border-color: rgba(217, 247, 162, 0.95);
	color: #173012;
	background: #d9f7a2;
}

.camp-layout-map-zoom-value {
	min-width: 50px;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	letter-spacing: 0;
}

.camp-layout-map-close {
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	font: inherit;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.camp-layout-map-close:hover,
.camp-layout-map-close:focus-visible {
	background: rgba(157, 204, 98, 0.28);
	outline: none;
}

.camp-layout-map-view {
	min-height: 0;
	display: grid;
	place-items: center;
	padding: 16px;
	overflow: hidden;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.camp-layout-map-stage {
	--layout-map-zoom-width: 100%;
	position: relative;
	width: min(100%, calc(156dvh - 246px));
	min-width: 0;
	max-width: 100%;
	aspect-ratio: 1567 / 1004;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
	overflow: hidden;
}

.camp-layout-map-stage img {
	width: 100%;
	height: auto;
	display: block;
	user-select: none;
}

.camp-layout-map-spots {
	position: absolute;
	inset: 0;
}

.camp-layout-map-spot {
	position: absolute;
	min-width: 18px;
	min-height: 18px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: transparent;
	font-size: 0;
	cursor: pointer;
	transform: translate(-50%, -50%);
}

.camp-layout-map-spot:hover,
.camp-layout-map-spot:focus-visible,
.camp-layout-map-spot.is-current {
	border-color: rgba(217, 247, 162, 0.96);
	background: rgba(23, 48, 18, 0.2);
	box-shadow: 0 0 0 4px rgba(217, 247, 162, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.45);
	outline: none;
}

.camp-layout-map-spot.is-current::after {
	content: "✓";
	position: absolute;
	top: -9px;
	right: -9px;
	width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	color: #173012;
	background: #d9f7a2;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
}

.camp-layout-map-spot--facility {
	border-radius: 8px;
}

.camp-move-guide {
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 70;
	display: grid;
	justify-items: center;
	gap: 14px;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.camp-move-guide.is-hidden {
	opacity: 0;
	transform: translate(-50%, calc(-50% + 12px));
}

.camp-move-guide__ring {
	position: relative;
	width: 148px;
	height: 148px;
	border: 3px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 25%, rgba(255, 255, 255, 0.06) 26% 48%, rgba(255, 255, 255, 0.13) 49% 100%);
	box-shadow: 0 0 24px rgba(255, 255, 255, 0.18), inset 0 0 30px rgba(255, 255, 255, 0.13);
}

.camp-move-guide__ring::before {
	position: absolute;
	inset: 40px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	content: "";
}

.camp-move-guide__dot {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	transform: translate(-50%, -50%);
}

.camp-move-guide__arrow {
	position: absolute;
	width: 0;
	height: 0;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.34));
}

.camp-move-guide__arrow--up,
.camp-move-guide__arrow--down {
	left: 50%;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	transform: translateX(-50%);
}

.camp-move-guide__arrow--up {
	top: 20px;
	border-bottom: 22px solid #fff;
}

.camp-move-guide__arrow--down {
	bottom: 20px;
	border-top: 22px solid #fff;
}

.camp-move-guide__arrow--left,
.camp-move-guide__arrow--right {
	top: 50%;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	transform: translateY(-50%);
}

.camp-move-guide__arrow--left {
	left: 20px;
	border-right: 22px solid #fff;
}

.camp-move-guide__arrow--right {
	right: 20px;
	border-left: 22px solid #fff;
}

.camp-move-guide__label {
	padding: 9px 24px;
	border-radius: 999px;
	color: #fff;
	background: rgba(34, 37, 42, 0.76);
	box-shadow: 0 7px 18px rgba(0, 0, 0, 0.3);
	font-size: 20px;
	font-weight: 950;
	line-height: 1.15;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.42);
	white-space: nowrap;
}

.camp-scene-loading {
	position: fixed;
	inset: 0;
	z-index: 95;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.34);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
}

.camp-scene-loading.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.camp-scene-loading__box {
	display: grid;
	justify-items: center;
	gap: 8px;
	min-width: 210px;
	padding: 22px 26px 20px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	color: #ffffff;
	background: rgba(6, 12, 8, 0.82);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(8px);
	text-align: center;
}

.camp-scene-loading__spinner {
	width: 34px;
	height: 34px;
	margin-bottom: 4px;
	border: 3px solid rgba(255, 255, 255, 0.24);
	border-top-color: #d7f5b4;
	border-radius: 50%;
	animation: camp-scene-loading-spin 0.8s linear infinite;
}

.camp-scene-loading strong {
	font-size: 17px;
	font-weight: 900;
	line-height: 1.25;
}

.camp-scene-loading span:last-child {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

@keyframes camp-scene-loading-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 720px) {
	.camp-menu-toggle {
		width: 46px;
		height: 46px;
		gap: 4px;
	}

	.camp-menu-toggle span {
		width: 22px;
		height: 2px;
	}

	.camp-side-menu {
		inset: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom)) 10px;
		width: auto;
		padding: 0;
	}

	body.is-menu-open .camp-menu-overlay {
		display: block;
		background: rgba(0, 0, 0, 0.01);
	}

	body:not(.is-menu-open) .camp-side-menu {
		top: max(12px, env(safe-area-inset-top));
		left: max(10px, env(safe-area-inset-left));
		right: auto;
		bottom: auto;
		width: 46px;
		height: 46px;
		border: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		overflow: visible;
	}

	.camp-side-menu__header {
		grid-template-columns: 46px 56px minmax(0, 1fr);
		gap: 10px;
		min-height: 60px;
		padding: 12px;
	}

	body:not(.is-menu-open) .camp-side-menu__header {
		width: 46px;
		height: 46px;
		min-height: 46px;
		padding: 0;
	}

	body:not(.is-menu-open) .camp-menu-rail {
		display: none;
	}

	.camp-menu-logo {
		width: 56px;
		height: 48px;
	}

	.camp-menu-logo span {
		width: 56px;
		height: 48px;
	}

	.camp-side-menu h2 {
		font-size: 18px;
		line-height: 1.15;
	}

	.camp-side-menu p {
		margin-top: 4px;
		font-size: 11px;
		line-height: 1.25;
	}

	.camp-menu-panel h3 {
		margin-bottom: 12px;
		font-size: 18px;
	}

	.camp-menu-section-head {
		align-items: stretch;
		gap: 8px;
	}

	.camp-layout-map-button {
		min-height: 42px;
		grid-template-columns: 26px minmax(0, 1fr) 24px;
	}

	.camp-layout-map-button strong {
		font-size: 12px;
	}

	.camp-layout-map-button small {
		display: none;
	}

	.camp-site-grid {
		gap: 6px;
	}

	.camp-site-grid button {
		min-height: 40px;
		padding: 0 3px;
		font-size: 13px;
	}

	.camp-facility-list button {
		min-height: 42px;
		grid-template-columns: 31px minmax(0, 1fr);
		gap: 7px;
		padding: 5px 8px;
	}

	.camp-facility-icon {
		width: 28px;
		height: 28px;
		font-size: 16px;
	}

	.camp-facility-list button > span:last-child {
		font-size: 14px;
	}

	.camp-top-actions {
		top: calc(max(12px, env(safe-area-inset-top)) + 5px);
		right: max(10px, env(safe-area-inset-right));
		z-index: 20;
		width: clamp(150px, 42vw, 304px);
		flex-direction: column;
		gap: 6px;
		align-items: stretch;
		box-sizing: border-box;
		padding: 46px 10px 10px;
		border: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.camp-top-actions::before {
		position: absolute;
		inset: 36px 0 0;
		z-index: -1;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-top: 0;
		border-radius: 0 0 0 22px;
		background: rgba(8, 18, 13, 0.56);
		box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
		backdrop-filter: blur(10px);
		content: "";
	}

	.camp-top-actions::after {
		position: absolute;
		top: 0;
		right: 0;
		width: min(98px, 48%);
		height: 38px;
		z-index: -1;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-bottom: 0;
		border-radius: 16px 0 0 0;
		background: rgba(8, 18, 13, 0.56);
		backdrop-filter: blur(10px);
		content: "";
	}

	.camp-top-actions.is-collapsed {
		width: auto;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.camp-top-actions.is-collapsed::before {
		display: none;
	}

	.camp-top-actions.is-collapsed::after {
		display: none;
	}

	.camp-top-actions.is-collapsed .camp-quick-actions-toggle {
		min-height: 34px;
		padding: 0 12px;
		border: 1px solid rgba(255, 255, 255, 0.18);
		background: rgba(8, 18, 13, 0.88);
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
		backdrop-filter: blur(8px);
	}

	.camp-quick-actions-toggle {
		position: fixed;
		top: calc(max(12px, env(safe-area-inset-top)) + 9px);
		right: max(20px, calc(env(safe-area-inset-right) + 20px));
		z-index: 24;
		order: 0;
		min-height: 28px;
		display: inline-flex;
		align-items: center;
		justify-content: flex-end;
		gap: 6px;
		padding: 0 4px 1px 8px;
		border: 0;
		border-radius: 0;
		color: #fff;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		font: inherit;
		text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
		cursor: pointer;
	}

	.camp-quick-actions-toggle span {
		width: 14px;
		height: 14px;
		display: block;
		position: relative;
		border-radius: 4px;
		background: rgba(217, 247, 162, 0.18);
		font-size: 0;
	}

	.camp-quick-actions-toggle span::before,
	.camp-quick-actions-toggle span::after {
		position: absolute;
		left: 3px;
		right: 3px;
		height: 2px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.9);
		content: "";
	}

	.camp-quick-actions-toggle span::before {
		top: 4px;
	}

	.camp-quick-actions-toggle span::after {
		bottom: 4px;
	}

	.camp-quick-actions-toggle em {
		color: rgba(255, 255, 255, 0.9);
		font-style: normal;
		font-size: 14px;
		font-weight: 950;
		line-height: 1;
		letter-spacing: 0;
	}

	.camp-quick-actions-toggle:hover,
	.camp-quick-actions-toggle:focus-visible {
		color: #d9f7a2;
		background: transparent;
		outline: none;
	}

	.camp-top-actions.is-collapsed .camp-action {
		display: none;
	}

	.camp-top-actions.is-collapsed .camp-reserve-stack {
		display: none;
	}

	.camp-reserve-stack {
		display: contents;
	}

	.camp-top-actions.is-collapsed .camp-reserve-stack {
		display: none;
	}

	.camp-current-location {
		top: max(12px, env(safe-area-inset-top));
		left: 50%;
		max-width: min(56vw, 320px);
		min-height: 28px;
		padding: 4px 5px 4px 8px;
		gap: 5px;
	}

	.camp-current-location strong,
	.camp-current-location b {
		font-size: 11px;
	}

	.camp-current-location em {
		font-size: 13px;
	}

	.camp-action {
		width: 100%;
		box-sizing: border-box;
		min-height: 34px;
		justify-content: center;
		padding: 0 10px;
		border-radius: 999px;
	}

	.camp-action__icon {
		display: none;
	}

	.camp-action__title {
		font-size: 12px;
	}

	.camp-action__detail {
		font-size: 13px;
	}

	.camp-weather-action {
		order: 4;
		min-width: 0;
		width: 100%;
		align-self: stretch;
		min-height: 64px;
		padding: 7px 10px;
		border-radius: 22px;
		gap: 7px;
	}

	.camp-weather-action .camp-action__icon {
		display: grid;
		width: 20px;
		height: 20px;
		font-size: 18px;
	}

	.camp-weather-action .camp-action__title {
		display: none;
	}

	.camp-weather-action .camp-action__detail {
		display: grid;
		gap: 2px;
		white-space: normal;
		font-size: 12px;
		line-height: 1.12;
		text-align: left;
	}

	.camp-weather-line {
		display: block;
	}

	.camp-auto-tour-action {
		position: static;
		width: auto;
		min-width: 0;
		min-height: 26px;
		margin-left: 2px;
		padding: 2px 7px 2px 3px;
		gap: 6px;
		color: #fff;
		background: rgba(255, 255, 255, 0.08);
	}

	.camp-auto-tour-action .camp-action__icon {
		display: grid;
		width: 20px;
		height: 20px;
		border-radius: 999px;
		font-size: 10px;
	}

	.camp-auto-tour-action .camp-action__text {
		display: block;
	}

	.camp-auto-tour-action .camp-action__title {
		display: block;
		color: #fff;
		font-size: 11px;
		font-weight: 900;
		text-align: center;
		white-space: nowrap;
	}

	.camp-reserve-action .camp-action__detail,
	.camp-cafe-action .camp-action__detail,
	.camp-share-action .camp-action__detail {
		display: none;
	}

	.camp-reserve-action {
		order: 1;
	}

	.camp-share-action {
		order: 2;
	}

	.camp-cafe-action {
		order: 3;
		position: static;
		width: 100%;
		min-width: 0;
		min-height: 38px;
		padding: 0 9px;
		border-width: 2px;
		border-radius: 999px;
		gap: 6px;
	}

	.camp-cafe-action .camp-action__icon {
		display: grid;
		width: 22px;
		height: 22px;
		border-radius: 8px;
	}

	.camp-cafe-cup {
		width: 13px;
		height: 8px;
		border-radius: 0 0 7px 7px;
	}

	.camp-cafe-cup::before {
		right: -5px;
		top: 1px;
		width: 5px;
		height: 5px;
		border-width: 2px;
	}

	.camp-cafe-cup::after {
		left: -3px;
		right: -4px;
		bottom: -4px;
		height: 2px;
	}

	.camp-cafe-action .camp-action__title {
		font-size: 11px;
		line-height: 1.05;
		text-align: center;
		white-space: normal;
	}

	.camp-mobile-scene-slider {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: max(12px, env(safe-area-inset-bottom));
		z-index: 18;
		display: none;
		padding: 11px 12px 12px;
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 8px;
		color: #fff;
		background: rgba(8, 18, 13, 0.48);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
		backdrop-filter: blur(8px);
		pointer-events: auto;
	}

	.camp-intro-overlay {
		padding: 18px;
	}

	.camp-intro-card {
		width: min(360px, calc(100vw - 36px));
		max-width: calc(100vw - 36px);
		padding: 28px 20px 24px;
	}

	.camp-intro-close {
		top: 14px;
		right: 14px;
		width: 38px;
		height: 38px;
		font-size: 30px;
	}

	.camp-intro-logo {
		width: 78px;
		height: 64px;
		margin-bottom: 14px;
	}

	.camp-intro-card h1 {
		font-size: 31px;
	}

	.camp-intro-subtitle {
		margin-top: 10px;
		font-size: 24px;
	}

	.camp-intro-copy {
		margin-top: 22px;
		font-size: 15px;
	}

	.camp-intro-guide-box {
		margin-top: 18px;
		padding: 15px 16px;
	}

	.camp-intro-guide-box strong {
		font-size: 15px;
	}

	.camp-intro-guide-box span {
		font-size: 13px;
	}

	.camp-intro-start {
		min-width: 210px;
		min-height: 54px;
		margin-top: 20px;
		font-size: 18px;
	}

	.camp-mobile-scene-slider.is-visible {
		display: block;
	}

	body.is-menu-open .camp-mobile-scene-slider,
	body.is-share-open .camp-mobile-scene-slider,
	body.is-layout-map-open .camp-mobile-scene-slider,
	body.is-auto-tour .camp-mobile-scene-slider {
		display: none;
	}

	.camp-mobile-scene-slider__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		margin-bottom: 9px;
	}

	.camp-mobile-scene-slider__header h2 {
		margin: 0;
		color: #fff;
		font-size: 14px;
		font-weight: 900;
		line-height: 1.2;
		letter-spacing: 0;
	}

	.camp-mobile-scene-slider__header p {
		margin: 4px 0 0;
		color: rgba(255, 255, 255, 0.68);
		font-size: 10px;
		font-weight: 800;
		line-height: 1.25;
		letter-spacing: 0;
	}

	.camp-mobile-scene-slider__controls {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		flex: 0 0 auto;
	}

	.camp-mobile-scene-slider__toggle,
	.camp-mobile-scene-slider__nav {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(255, 255, 255, 0.3);
		border-radius: 999px;
		color: #fff;
		background: rgba(255, 255, 255, 0.08);
		font-family: inherit;
		font-weight: 900;
		cursor: pointer;
	}

	.camp-mobile-scene-slider__toggle {
		height: 34px;
		padding: 0 12px;
		font-size: 13px;
	}

	.camp-mobile-scene-slider__nav {
		width: 34px;
		height: 34px;
		font-size: 18px;
	}

	.camp-mobile-scene-slider__toggle:hover,
	.camp-mobile-scene-slider__toggle:focus-visible,
	.camp-mobile-scene-slider__nav:hover,
	.camp-mobile-scene-slider__nav:focus-visible {
		border-color: rgba(145, 201, 90, 0.9);
		background: rgba(145, 201, 90, 0.18);
		outline: none;
	}

	.camp-mobile-scene-slider.is-collapsed {
		padding-bottom: 11px;
	}

	.camp-mobile-scene-slider.is-collapsed .camp-mobile-scene-slider__header {
		margin-bottom: 0;
	}

	.camp-mobile-scene-slider.is-collapsed .camp-mobile-scene-slider__header p,
	.camp-mobile-scene-slider.is-collapsed .camp-mobile-scene-slider__track,
	.camp-mobile-scene-slider.is-collapsed .camp-mobile-scene-slider__nav {
		display: none;
	}

	.camp-mobile-scene-slider__track {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 112px;
		gap: 9px;
		overflow-x: auto;
		padding: 2px 2px 4px;
		scroll-behavior: smooth;
		scrollbar-width: none;
		-ms-overflow-style: none;
		cursor: grab;
		user-select: none;
		-webkit-overflow-scrolling: touch;
	}

	.camp-mobile-scene-slider__track::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}

	.camp-mobile-scene-slider__track.is-dragging {
		cursor: grabbing;
		scroll-behavior: auto;
	}

	.camp-mobile-scene-card {
		overflow: hidden;
		min-height: 96px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 8px;
		color: #fff;
		background: rgba(8, 23, 16, 0.9);
		font-family: inherit;
		cursor: pointer;
		scroll-snap-align: start;
	}

	.camp-mobile-scene-card.is-current {
		border-color: #9bd36b;
		box-shadow: 0 0 0 4px rgba(145, 201, 90, 0.5);
	}

	.camp-mobile-scene-card__image {
		display: block;
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		background: rgba(255, 255, 255, 0.08);
		pointer-events: none;
	}

	.camp-mobile-scene-card__name {
		display: block;
		padding: 8px 9px 9px;
		overflow: hidden;
		font-size: 13px;
		font-weight: 900;
		line-height: 1.1;
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.camp-toast {
		top: auto;
		left: 12px;
		right: 12px;
		bottom: max(16px, env(safe-area-inset-bottom));
		max-width: none;
	}

	.camp-share-modal {
		left: 12px;
		right: 12px;
		top: max(12px, env(safe-area-inset-top));
		width: auto;
		max-height: calc(100dvh - 24px);
		overflow-y: auto;
		padding: 18px;
	}

	.camp-layout-map-modal {
		top: 50%;
		left: 12px;
		right: 12px;
		bottom: auto;
		max-height: calc(100dvh - 32px);
		grid-template-rows: auto auto;
		transform: translateY(-50%);
	}

	.camp-layout-map-header {
		gap: 8px;
		padding: 12px;
	}

	.camp-layout-map-header h2 {
		font-size: 18px;
	}

	.camp-layout-map-header p {
		display: none;
	}

	.camp-layout-map-zoom-controls {
		display: flex;
		gap: 4px;
		margin-left: 0;
	}

	.camp-layout-map-zoom-controls button {
		width: 34px;
		height: 34px;
		font-size: 21px;
	}

	.camp-layout-map-zoom-value {
		min-width: 46px;
		font-size: 14px;
	}

	.camp-layout-map-view {
		padding: 10px;
		max-height: calc(100dvh - 102px);
		display: block;
		overflow: auto;
	}

	.camp-layout-map-stage {
		width: var(--layout-map-zoom-width);
		min-width: 100%;
		max-width: none;
	}

	.camp-move-guide {
		gap: 10px;
	}

	.camp-move-guide__ring {
		width: 118px;
		height: 118px;
	}

	.camp-move-guide__ring::before {
		inset: 32px;
	}

	.camp-move-guide__arrow--up,
	.camp-move-guide__arrow--down {
		border-left-width: 12px;
		border-right-width: 12px;
	}

	.camp-move-guide__arrow--up {
		top: 16px;
		border-bottom-width: 18px;
	}

	.camp-move-guide__arrow--down {
		bottom: 16px;
		border-top-width: 18px;
	}

	.camp-move-guide__arrow--left,
	.camp-move-guide__arrow--right {
		border-top-width: 12px;
		border-bottom-width: 12px;
	}

	.camp-move-guide__arrow--left {
		left: 16px;
		border-right-width: 18px;
	}

	.camp-move-guide__arrow--right {
		right: 16px;
		border-left-width: 18px;
	}

	.camp-move-guide__label {
		padding: 8px 18px;
		font-size: 16px;
	}
}
