:root {
	--camp-panel: rgba(7, 20, 15, 0.84);
	--camp-panel-strong: rgba(7, 18, 14, 0.94);
	--camp-line: rgba(255, 255, 255, 0.13);
	--camp-text: #ffffff;
	--camp-muted: rgba(255, 255, 255, 0.67);
	--camp-green: #91c95a;
	--camp-radius: 8px;
	--camp-sidebar-width: 300px;
	--camp-rail-width: 72px;
}

.camp-ui,
.camp-ui * {
	box-sizing: border-box;
}

.camp-ui {
	position: fixed;
	inset: 0;
	z-index: 10000;
	pointer-events: none;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--camp-text);
}

.camp-sidebar {
	position: absolute;
	left: 18px;
	top: 18px;
	bottom: 18px;
	z-index: 30;
	width: var(--camp-sidebar-width);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	pointer-events: auto;
	background: linear-gradient(180deg, rgba(10, 27, 20, 0.93), rgba(7, 18, 13, 0.83));
	border: 1px solid var(--camp-line);
	border-radius: var(--camp-radius);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(14px);
	transition: width 0.22s ease, transform 0.24s ease;
}

.camp-sidebar__header {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 70px;
	padding: 12px 12px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.camp-menu-toggle,
.camp-mobile-toggle,
.camp-close {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border: 0;
	border-radius: 999px;
	color: #fff;
	background: rgba(0, 0, 0, 0.26);
	cursor: pointer;
}

.camp-menu-toggle span,
.camp-mobile-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 2px 0;
	background: currentColor;
	border-radius: 2px;
}

.camp-menu-toggle,
.camp-mobile-toggle {
	flex-direction: column;
}

.camp-close {
	display: none;
	margin-left: auto;
	font-size: 26px;
	line-height: 1;
}

.camp-brand {
	display: flex;
	align-items: center;
	gap: 9px;
	flex: 1 1 auto;
	min-width: 0;
	height: 46px;
	overflow: hidden;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.camp-brand:focus-visible {
	outline: 2px solid rgba(145, 201, 90, 0.85);
	outline-offset: 3px;
}

.camp-brand__logo {
	display: block;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	object-fit: cover;
	object-position: center;
}

.camp-brand__text {
	min-width: 0;
	color: #fff;
}

.camp-brand strong {
	display: block;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.15;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.camp-brand span {
	display: block;
	margin-top: 5px;
	overflow: hidden;
	color: var(--camp-muted);
	font-size: 10px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.camp-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding: 12px 14px 0;
}

.camp-tab {
	min-height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: #fff;
	background: rgba(8, 22, 16, 0.82);
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
}

.camp-tab:hover,
.camp-tab:focus-visible {
	border-color: rgba(145, 201, 90, 0.65);
	outline: none;
}

.camp-tab.is-active {
	border-color: rgba(145, 201, 90, 0.32);
	background: linear-gradient(135deg, rgba(74, 135, 62, 0.94), rgba(45, 102, 48, 0.9));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.camp-tab-panel {
	min-height: 0;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.camp-tab-panel[hidden] {
	display: none;
}

.camp-minimap {
	padding: 10px 14px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.camp-section-title {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 8px;
	padding: 0;
	border: 0;
	color: #fff;
	background: transparent;
	font-size: 14px;
	font-weight: 700;
}

.camp-tab-panel--facilities {
	overflow: auto;
	padding: 14px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.camp-facility-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px;
}

.camp-facility {
	min-height: 48px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 9px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	color: #fff;
	background: rgba(12, 31, 22, 0.9);
	text-align: left;
	cursor: pointer;
}

.camp-facility:hover,
.camp-facility:focus-visible,
.camp-facility.is-active {
	border-color: rgba(145, 201, 90, 0.65);
	background: rgba(25, 58, 35, 0.95);
	outline: none;
}

.camp-facility__icon {
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	flex: 0 0 25px;
	border-radius: 5px;
	color: #f2a900;
	background: rgba(242, 169, 0, 0.12);
	font-size: 18px;
	line-height: 1;
}

.camp-facility--pink .camp-facility__icon {
	color: #ff6d98;
	background: rgba(255, 109, 152, 0.12);
}

.camp-facility--cyan .camp-facility__icon {
	color: #13d6c9;
	background: rgba(19, 214, 201, 0.12);
}

.camp-facility--blue .camp-facility__icon {
	color: #66a7ff;
	background: rgba(102, 167, 255, 0.12);
}

.camp-facility__label {
	min-width: 0;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.22;
}

.camp-map-placeholder {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.18);
}

.camp-map-placeholder.is-linked {
	cursor: pointer;
}

.camp-map-placeholder img {
	display: block;
	width: 100%;
	height: auto;
}

.camp-map-hit {
	position: absolute;
	display: block;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 4px;
	background: transparent;
	cursor: pointer;
}

.camp-map-site-hit {
	position: absolute;
	z-index: 2;
	display: block;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 6px;
	background: transparent;
	cursor: pointer;
}

.camp-map-hit:hover,
.camp-map-hit:focus-visible,
.camp-map-site-hit:hover,
.camp-map-site-hit:focus-visible {
	border-color: rgba(255, 255, 255, 0.9);
	background: rgba(145, 201, 90, 0.18);
	outline: 0;
}

.camp-map-placeholder.is-map-v .camp-map-hit,
.camp-map-placeholder.is-map-roof .camp-map-hit,
.camp-map-placeholder.is-map-s .camp-map-hit,
.camp-map-placeholder.is-map-t .camp-map-hit,
.camp-map-placeholder.is-map-e .camp-map-hit,
.camp-map-placeholder.is-map-abcd .camp-map-hit {
    display: none;
}

.camp-map-placeholder.is-map-v .camp-map-hit--v,
.camp-map-placeholder.is-map-roof .camp-map-hit--roof,
.camp-map-placeholder.is-map-t .camp-map-hit--t {
	display: block;
}

.camp-map-hit--v {
	left: 18%;
	top: 65%;
	width: 21%;
	height: 28%;
}

.camp-map-hit--abcd {
	left: 15%;
	top: 13%;
	width: 27%;
	height: 56%;
}

.camp-map-hit--s {
	left: 35%;
	top: 17%;
	width: 21%;
	height: 39%;
}

.camp-map-hit--e {
	left: 48%;
	top: 9%;
	width: 38%;
	height: 61%;
}

.camp-map-hit--t {
	left: 80%;
	top: 33%;
	width: 13%;
	height: 29%;
}

.camp-map-hit--roof {
	left: 41%;
	top: 54%;
	width: 29%;
	height: 20%;
}

.camp-map-hit--easy {
	left: 40%;
	top: 72%;
	width: 9%;
	height: 21%;
}

.camp-nav {
	display: flex;
	min-height: 0;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 14px 10px 10px;
}

.camp-nav__title {
	padding: 0 8px 9px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.camp-nav__list {
	min-height: 0;
	overflow: auto;
	padding-right: 2px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.camp-item {
	width: 100%;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto 18px;
	align-items: center;
	gap: 12px;
	min-height: 38px;
	padding: 5px 8px;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	color: #fff;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.camp-item:hover,
.camp-item.is-active {
	background: rgba(145, 201, 90, 0.18);
}

.camp-item.is-missing {
	opacity: 0.45;
	cursor: default;
}

.camp-badge {
	width: 32px;
	height: 25px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.camp-item__name {
	overflow: hidden;
	font-size: 14px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.camp-item__range {
	color: var(--camp-muted);
	font-size: 13px;
	white-space: nowrap;
}

.camp-item__arrow {
	color: rgba(255, 255, 255, 0.5);
	font-size: 18px;
}

.camp-mobile-toggle {
	position: absolute;
	left: 16px;
	top: 16px;
	display: none;
	pointer-events: auto;
	background: rgba(7, 18, 14, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.camp-menu-backdrop {
	position: absolute;
	inset: 0;
	z-index: 24;
	display: none;
	background: rgba(0, 0, 0, 0.42);
	pointer-events: auto;
}

.camp-menu-guide {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 20;
	display: none;
	pointer-events: none;
}

.camp-menu-guide__glow {
	position: absolute;
	left: 5px;
	top: 5px;
	width: 60px;
	height: 60px;
	border: 4px solid #fff779;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(255, 247, 121, 0.9), 0 0 44px rgba(255, 247, 121, 0.62);
}

.camp-menu-guide__marks {
	position: absolute;
	left: 112px;
	top: 1px;
	width: 64px;
	height: 58px;
}

.camp-menu-guide__marks span {
	position: absolute;
	width: 9px;
	height: 36px;
	border-radius: 999px;
	background: #fff779;
	box-shadow: 0 0 10px rgba(255, 247, 121, 0.55);
}

.camp-menu-guide__marks span:nth-child(1) {
	left: 0;
	top: 0;
	transform: rotate(15deg);
}

.camp-menu-guide__marks span:nth-child(2) {
	left: 28px;
	top: 7px;
	transform: rotate(42deg);
}

.camp-menu-guide__marks span:nth-child(3) {
	left: 52px;
	top: 39px;
	height: 30px;
	transform: rotate(78deg);
}

.camp-menu-guide__arrow {
	position: absolute;
	left: 78px;
	top: 112px;
	width: 112px;
	height: 120px;
	overflow: visible;
}

.camp-menu-guide__arrow path {
	fill: none;
	stroke: #fff779;
	stroke-width: 8;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 6px rgba(255, 247, 121, 0.5));
}

.camp-menu-guide__bubble {
	position: absolute;
	left: clamp(160px, 42vw, 218px);
	top: 292px;
	width: min(202px, calc(100vw - 184px));
	padding: 22px 20px 21px;
	border: 0;
	border-radius: 24px;
	color: #111;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
	text-align: left;
	cursor: pointer;
	pointer-events: auto;
}

.camp-menu-guide__bubble::before {
	content: "";
	position: absolute;
	left: 24px;
	top: -14px;
	width: 0;
	height: 0;
	border-right: 15px solid transparent;
	border-bottom: 21px solid rgba(255, 255, 255, 0.96);
}

.camp-menu-guide__bubble strong {
	display: block;
	color: #111;
	font-size: clamp(19px, 4.8vw, 23px);
	font-weight: 950;
	line-height: 1.25;
	letter-spacing: 0;
}

.camp-menu-guide__bubble strong::first-letter {
	color: #27572a;
}

.camp-menu-guide__bubble strong span {
	display: inline-grid;
	width: 43px;
	height: 43px;
	place-items: center;
	margin: 0 4px;
	border-radius: 50%;
	color: #fff;
	background: #070707;
	font-size: 22px;
	line-height: 1;
	vertical-align: middle;
}

.camp-menu-guide__bubble small {
	display: block;
	margin-top: 12px;
	color: #666;
	font-size: clamp(14px, 3.6vw, 16px);
	font-weight: 700;
	line-height: 1.32;
}

.camp-menu-guide.is-hidden {
	display: none !important;
}

.camp-move-guide {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 7;
	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-location {
	position: absolute;
	left: 50%;
	top: 18px;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: min(46vw, 460px);
	min-height: 46px;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	color: #fff;
	background: rgba(8, 18, 13, 0.82);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
	transform: translateX(-50%);
	pointer-events: none;
}

.camp-scene-location__icon {
	color: var(--camp-green);
	font-size: 20px;
	line-height: 1;
}

.camp-scene-location__label,
.camp-scene-location__divider,
.camp-scene-location strong {
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.camp-scene-location__divider {
	color: rgba(255, 255, 255, 0.66);
}

.camp-scene-location strong {
	overflow: hidden;
	text-overflow: ellipsis;
}

.camp-tour-card {
	position: absolute;
	left: 50%;
	top: 74px;
	z-index: 6;
	width: 166px;
	justify-content: center;
	border: 3px solid rgba(145, 201, 90, 0.95);
	background: rgba(8, 18, 13, 0.9);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
	transform: translateX(-50%);
	pointer-events: auto;
}

.camp-tour-card.is-active {
	border-color: rgba(255, 211, 92, 0.95);
	background: rgba(74, 29, 21, 0.92);
}

.camp-quick-actions {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 8;
	display: flex;
	gap: 10px;
	pointer-events: auto;
}

.camp-quick-card {
	min-height: 42px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #fff;
	background: rgba(9, 24, 17, 0.82);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
	text-decoration: none;
	cursor: pointer;
}

.camp-weather-card {
	width: 282px;
	justify-content: flex-start;
	text-align: left;
	background: rgba(11, 22, 16, 0.86);
}

.camp-weather-card .camp-quick-title {
	font-size: 14px;
}

.camp-weather-card .camp-quick-text strong {
	font-size: 20px;
	line-height: 1.05;
}

.camp-weather-card .camp-quick-text strong em {
	font-size: 17px;
}

.camp-reserve-card {
	width: 166px;
	background: linear-gradient(135deg, rgba(78, 124, 91, 0.92), rgba(47, 89, 66, 0.9));
}

.camp-share-card {
	width: 166px;
	background: linear-gradient(135deg, rgba(72, 103, 183, 0.94), rgba(49, 78, 147, 0.9));
}

.camp-quick-icon {
	width: 31px;
	height: 31px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 8px;
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	font-size: 18px;
	font-weight: 800;
}

.camp-weather-icon {
	color: #f7cf43;
	background: transparent;
	font-size: 31px;
}

.camp-quick-text {
	min-width: 0;
	display: grid;
	gap: 1px;
	text-align: left;
}

.camp-quick-title {
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 800;
}

.camp-quick-text strong {
	display: block;
	color: #fff;
	font-size: 25px;
	line-height: 1.04;
	white-space: nowrap;
}

.camp-quick-text strong em {
	font-size: 18px;
	font-style: normal;
}

.camp-quick-text small {
	color: rgba(255, 255, 255, 0.74);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.1;
}

.camp-reserve-card .camp-quick-title,
.camp-share-card .camp-quick-title,
.camp-tour-card .camp-quick-title {
	font-size: 17px;
}

.camp-quick-arrow {
	margin-left: auto;
	color: rgba(255, 255, 255, 0.85);
	font-size: 24px;
}

.camp-site-info {
	position: absolute;
	right: 18px;
	top: 160px;
	z-index: 5;
	width: min(360px, calc(100vw - 36px));
	display: none;
	padding: 8px;
	border: 2px dashed rgba(145, 201, 90, 0.86);
	border-radius: 8px;
	background: rgba(7, 18, 13, 0.2);
	pointer-events: auto;
}

.camp-site-info.is-visible {
	display: block;
}

.camp-site-info.is-collapsed {
	width: auto;
	min-width: 178px;
	padding: 0;
	border-color: rgba(145, 201, 90, 0.7);
}

.camp-site-info__inner {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: rgba(8, 22, 16, 0.9);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(12px);
}

.camp-site-info__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 22px 24px 18px;
}

.camp-site-info__badge {
	min-width: 48px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	color: #fff;
	background: var(--camp-green);
	font-size: 18px;
	font-weight: 900;
}

.camp-site-info__header h2 {
	min-width: 0;
	flex: 1 1 auto;
	margin: 0;
	overflow: hidden;
	color: #fff;
	font-size: 24px;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.camp-site-info__toggle {
	min-width: 52px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.camp-site-info__summary {
	margin: 0;
	padding: 0 24px 22px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.55;
}

.camp-site-info.is-facility .camp-site-info__summary {
	white-space: pre-line;
}

.camp-site-info.is-facility .camp-site-info__summary {
	padding-bottom: 26px;
	font-size: 14px;
	line-height: 1.58;
}

.camp-site-info.is-facility .camp-site-info__list {
	display: none;
}

.camp-site-info.is-facility .camp-site-info__badge {
	background: #66a7ff;
}

.camp-site-info.is-floor-test {
	left: 50%;
	right: auto;
	top: 50%;
	z-index: 14;
	width: min(460px, calc(100vw - 380px));
	padding: 5px;
	border: 2px dashed rgba(145, 201, 90, 0.72);
	background: rgba(145, 201, 90, 0.08);
	transform: translate(-50%, -30%);
}

.camp-site-info.is-floor-test .camp-site-info__inner {
	border-color: rgba(0, 0, 0, 0.05);
	background: rgba(244, 242, 235, 0.9);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(3px);
}

.camp-site-info.is-floor-test .camp-site-info__header {
	padding: 18px 22px 14px;
}

.camp-site-info.is-floor-test .camp-site-info__header h2,
.camp-site-info.is-floor-test .camp-site-info__list dd {
	color: #101712;
}

.camp-site-info.is-floor-test .camp-site-info__summary {
	padding: 0 22px 18px;
	color: rgba(20, 24, 21, 0.74);
	font-size: 15px;
}

.camp-site-info.is-floor-test .camp-site-info__toggle {
	color: #333;
	background: rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 0, 0, 0.08);
}

.camp-site-info.is-floor-test .camp-site-info__list {
	padding: 0 22px 18px;
}

.camp-site-info.is-floor-test .camp-site-info__list div {
	padding: 13px 0;
	border-top-color: rgba(0, 0, 0, 0.1);
}

.camp-site-info.is-floor-test .camp-site-info__list dt {
	color: rgba(20, 24, 21, 0.66);
}

.camp-site-info__list {
	margin: 0;
	padding: 0 24px 18px;
}

.camp-site-info__list div {
	display: grid;
	grid-template-columns: minmax(88px, 1fr) max-content;
	gap: 14px;
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.camp-site-info__list dt,
.camp-site-info__list dd {
	margin: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	white-space: nowrap;
}

.camp-site-info__list dt {
	color: rgba(255, 255, 255, 0.78);
}

.camp-site-info__list dd {
	text-align: right;
}

.camp-site-info.is-collapsed .camp-site-info__summary,
.camp-site-info.is-collapsed .camp-site-info__list {
	display: none;
}

.camp-site-info.is-collapsed .camp-site-info__header {
	padding: 12px;
}

.camp-site-info.is-collapsed .camp-site-info__badge {
	min-width: 42px;
	height: 28px;
	font-size: 15px;
}

.camp-site-info.is-collapsed .camp-site-info__header h2 {
	font-size: 16px;
}

.camp-site-slider {
	position: absolute;
	left: calc(18px + var(--camp-sidebar-width) + 18px);
	right: auto;
	bottom: 18px;
	z-index: 20;
	width: min(35vw, 720px);
	display: none;
	padding: 12px 14px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(7, 18, 14, 0.14);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(6px);
	pointer-events: auto;
}

.camp-site-slider.is-visible {
	display: block;
}

.camp-site-slider__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 9px;
}

.camp-site-slider__header h2 {
	margin: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0;
}

.camp-site-slider__header p {
	margin: 4px 0 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
}

.camp-site-slider__controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.camp-site-slider__toggle {
	height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.camp-site-slider__nav {
	width: 34px;
	height: 34px;
	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-size: 18px;
	font-weight: 800;
	cursor: pointer;
}

.camp-site-slider__toggle:hover,
.camp-site-slider__toggle:focus-visible,
.camp-site-slider__nav:hover,
.camp-site-slider__nav:focus-visible {
	border-color: rgba(145, 201, 90, 0.9);
	background: rgba(145, 201, 90, 0.18);
	outline: none;
}

.camp-site-slider.is-collapsed {
	padding-bottom: 12px;
}

.camp-site-slider.is-collapsed .camp-site-slider__header {
	margin-bottom: 0;
}

.camp-site-slider.is-collapsed .camp-site-slider__header p,
.camp-site-slider.is-collapsed .camp-site-slider__track,
.camp-site-slider.is-collapsed .camp-site-slider__nav {
	display: none;
}

.camp-site-slider__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 124px;
	gap: 9px;
	overflow-x: auto;
	padding-bottom: 3px;
	scroll-behavior: smooth;
	scroll-snap-type: none;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
	user-select: none;
	-webkit-overflow-scrolling: touch;
}

.camp-site-slider__track::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.camp-site-slider__track.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.camp-site-card {
	min-height: 96px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	color: #fff;
	background: rgba(8, 23, 16, 0.88);
	cursor: pointer;
	scroll-snap-align: start;
}

.camp-site-card.is-active {
	border-color: var(--camp-green);
	box-shadow: 0 0 0 4px rgba(145, 201, 90, 0.5);
}

.camp-site-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	object-fit: cover;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.camp-site-card__name {
	display: block;
	padding: 8px 9px 9px;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
	white-space: nowrap;
}

.camp-ui[data-menu-state="closed"] .camp-site-slider {
	left: calc(18px + var(--camp-rail-width) + 18px);
	width: min(35vw, 720px);
}

.camp-share-overlay {
	position: absolute;
	inset: 0;
	z-index: 70;
	display: none;
	background: rgba(0, 0, 0, 0.42);
	pointer-events: auto;
}

.camp-share-modal {
	position: absolute;
	top: 118px;
	right: 18px;
	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;
	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;
}

.camp-ui.is-share-open .camp-share-overlay,
.camp-ui.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);
	text-align: left;
	cursor: pointer;
}

.camp-share-option:hover {
	background: rgba(145, 201, 90, 0.16);
}

.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-intro-overlay {
	position: absolute;
	inset: 0;
	z-index: 80;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(22, 42, 54, 0.22);
	backdrop-filter: blur(1.5px);
	pointer-events: auto;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.camp-intro-overlay.is-hidden {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.camp-intro-card {
	position: relative;
	width: min(560px, calc(100vw - 40px));
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 32px 34px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(180deg, rgba(8, 24, 18, 0.82), rgba(5, 16, 13, 0.68));
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
	text-align: center;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(6px);
}

.camp-intro-close {
	position: absolute;
	right: 14px;
	top: 14px;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	color: #fff;
	background: rgba(0, 0, 0, 0.26);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.camp-intro-close:hover,
.camp-intro-close:focus-visible {
	background: rgba(0, 0, 0, 0.42);
	outline: none;
}

.camp-intro-logo {
	width: 112px;
	height: 72px;
	object-fit: contain;
	margin-bottom: 10px;
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.34));
}

.camp-intro-card h1 {
	margin: 0;
	font-size: 48px;
	line-height: 1.08;
	font-weight: 900;
}

.camp-intro-subtitle {
	margin: 10px 0 0;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 500;
}

.camp-intro-copy {
	margin: 24px 0 0;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

.camp-intro-guide {
	width: min(430px, 100%);
	margin-top: 16px;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.32);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
	text-align: left;
	text-shadow: none;
}

.camp-intro-guide strong {
	display: block;
	font-size: 15px;
	line-height: 1.25;
	font-weight: 900;
}

.camp-intro-guide span {
	display: block;
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.45;
	font-weight: 700;
}

.camp-intro-start {
	min-width: 190px;
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
	padding: 0 28px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	color: #fff;
	background: linear-gradient(135deg, #6fa53f, #507936);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 0 4px rgba(145, 201, 90, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.24);
	font-size: 17px;
	font-weight: 900;
	cursor: pointer;
}

.camp-intro-start:hover,
.camp-intro-start:focus-visible {
	background: linear-gradient(135deg, #7fb84c, #5b8b3d);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.46), 0 0 0 5px rgba(145, 201, 90, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
	outline: none;
}

.camp-intro-start i {
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid currentColor;
}

.camp-toast {
	position: absolute;
	left: 50%;
	bottom: 28px;
	display: none;
	max-width: min(460px, calc(100vw - 32px));
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #fff;
	background: rgba(19, 45, 30, 0.94);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
	transform: translateX(-50%);
	pointer-events: auto;
}

.camp-toast.is-visible {
	display: block;
}

.camp-ui[data-menu-state="closed"] .camp-sidebar {
	width: var(--camp-rail-width);
}

.camp-ui[data-menu-state="closed"] .camp-brand,
.camp-ui[data-menu-state="closed"] .camp-tabs,
.camp-ui[data-menu-state="closed"] .camp-tab-panel--facilities,
.camp-ui[data-menu-state="closed"] .camp-minimap,
.camp-ui[data-menu-state="closed"] .camp-nav__title,
.camp-ui[data-menu-state="closed"] .camp-item__name,
.camp-ui[data-menu-state="closed"] .camp-item__range,
.camp-ui[data-menu-state="closed"] .camp-item__arrow {
	display: none;
}

.camp-ui[data-menu-state="closed"] .camp-sidebar__header {
	justify-content: center;
	padding: 14px 0 10px;
}

.camp-ui[data-menu-state="closed"] .camp-brand {
	display: none;
}

.camp-ui[data-menu-state="closed"] .camp-nav {
	padding: 8px;
}

.camp-ui[data-menu-state="closed"] .camp-item {
	grid-template-columns: 1fr;
	justify-items: center;
	padding: 7px 0;
	border-bottom: 0;
	border-radius: 999px;
}

.camp-ui[data-menu-state="closed"] .camp-badge {
	width: 46px;
	font-size: 11px;
}

@media (max-width: 768px) {
	.camp-mobile-toggle {
		display: inline-flex;
	}

	.camp-menu-guide {
		display: block;
	}

	.camp-menu-guide__bubble {
		left: 136px;
		top: 118px;
		width: min(182px, calc(100vw - 154px));
		padding: 19px 18px;
		border-radius: 22px;
	}

	.camp-menu-guide__marks {
		left: 58px;
		top: 7px;
	}

	.camp-menu-guide__arrow {
		left: 52px;
		top: 66px;
		width: 132px;
		height: 96px;
	}

	.camp-menu-guide__bubble strong span {
		width: 39px;
		height: 39px;
		font-size: 20px;
	}

	.camp-ui.is-mobile-open .camp-menu-guide {
		display: none;
	}

	.camp-move-guide__ring {
		width: 124px;
		height: 124px;
	}

	.camp-move-guide__ring::before {
		inset: 34px;
	}

	.camp-move-guide__label {
		padding: 8px 20px;
		font-size: 18px;
	}

	.camp-sidebar {
		left: 0;
		top: 0;
		bottom: 0;
		width: min(82vw, 320px);
		border-width: 0 1px 0 0;
		border-radius: 0;
		transform: translateX(-105%);
	}

	.camp-quick-actions {
		left: auto;
		right: 10px;
		top: 12px;
		z-index: 8;
		width: min(101px, 26vw);
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		overflow: visible;
		padding-bottom: 0;
	}

	.camp-quick-actions::-webkit-scrollbar {
		display: none;
	}

	.camp-scene-location {
		top: 12px;
		max-width: min(42vw, 220px);
		min-height: 40px;
		padding: 0 14px;
		gap: 6px;
	}

	.camp-scene-location__icon {
		font-size: 17px;
	}

	.camp-scene-location__label,
	.camp-scene-location__divider,
	.camp-scene-location strong {
		font-size: 14px;
	}

	.camp-tour-card {
		top: 60px;
		width: 150px;
	}

	.camp-site-info {
		left: 12px;
		right: 12px;
		top: 160px;
		width: auto;
	}

	.camp-site-info.is-floor-test {
		left: 12px;
		right: 12px;
		top: 160px;
		width: auto;
		transform: none;
	}

	.camp-site-info.is-facility .camp-site-info__summary {
		font-size: 13px;
		line-height: 1.52;
	}

	.camp-site-info__header {
		padding: 16px 16px 14px;
	}

	.camp-site-info__header h2 {
		font-size: 19px;
	}

	.camp-site-info__summary,
	.camp-site-info__list {
		padding-left: 16px;
		padding-right: 16px;
	}

	.camp-site-info__list div {
		grid-template-columns: minmax(72px, 1fr) max-content;
		gap: 10px;
	}

	.camp-site-info__list dt,
	.camp-site-info__list dd {
		font-size: 14px;
	}

	.camp-site-slider {
		left: 12px;
		right: 12px;
		width: auto;
		bottom: 12px;
		padding: 12px;
	}

	.camp-ui[data-menu-state="closed"] .camp-site-slider {
		left: 12px;
		width: auto;
	}

	.camp-site-slider__header h2 {
		font-size: 15px;
	}

	.camp-site-slider__header p {
		font-size: 11px;
	}

	.camp-site-slider__nav {
		width: 36px;
		height: 36px;
		font-size: 19px;
	}

	.camp-site-slider__track {
		grid-auto-columns: minmax(132px, 42vw);
		gap: 10px;
	}

	.camp-site-card {
		min-height: 118px;
	}

	.camp-site-card__name {
		padding: 10px 11px 12px;
		font-size: 15px;
	}

	.camp-quick-card {
		min-width: 0;
		min-height: 32px;
		padding: 0 12px;
		gap: 5px;
		border-radius: 999px;
	}

	.camp-weather-card {
		order: 3;
		width: 100%;
		min-width: 0;
		min-height: 42px;
		align-items: center;
		padding: 4px 8px;
	}

	.camp-quick-icon {
		width: 22px;
		height: 22px;
		font-size: 14px;
		border-radius: 999px;
	}

	.camp-weather-icon {
		width: 20px;
		height: 20px;
		align-self: center;
		font-size: 18px;
	}

	.camp-quick-title {
		font-size: 12px;
	}

	.camp-quick-text strong {
		font-size: 17px;
	}

	.camp-quick-text small {
		font-size: 10px;
	}

	.camp-weather-card .camp-quick-title {
		display: none;
	}

	.camp-weather-card .camp-quick-text strong {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		column-gap: 3px;
		font-size: 0;
		line-height: 1.12;
	}

	.camp-weather-card .camp-quick-text strong em,
	.camp-weather-card .camp-quick-text strong #campWeatherTemp,
	.camp-weather-card .camp-quick-text strong #campWeatherWind {
		font-size: 12px;
		font-weight: 900;
	}

	.camp-weather-card .camp-quick-text strong #campWeatherTemp::after {
		content: "°C ";
	}

	.camp-weather-card .camp-quick-text strong em {
		white-space: nowrap;
	}

	.camp-weather-card .camp-quick-text strong em::after {
		content: "";
		flex-basis: 100%;
		width: 0;
	}

	.camp-weather-card .camp-quick-text strong #campWeatherWind {
		display: block;
		flex-basis: 100%;
		white-space: nowrap;
	}

	.camp-weather-card .camp-quick-text strong #campWeatherWind::before {
		content: "바람 ";
	}

	.camp-weather-card .camp-quick-text strong #campWeatherWind::after {
		content: "ms";
	}

	.camp-reserve-card,
	.camp-share-card {
		width: 100%;
		min-width: 0;
		justify-content: center;
		padding: 0 10px;
	}

	.camp-reserve-card .camp-quick-icon,
	.camp-share-card .camp-quick-icon,
	.camp-reserve-card small,
	.camp-share-card small,
	.camp-reserve-card .camp-quick-arrow,
	.camp-share-card .camp-quick-arrow {
		display: none;
	}

	.camp-reserve-card .camp-quick-title,
	.camp-share-card .camp-quick-title {
		font-size: 0;
		line-height: 1;
	}

	.camp-reserve-card .camp-quick-title::after {
		content: "예약";
		font-size: 13px;
		font-weight: 900;
	}

	.camp-share-card .camp-quick-title::after {
		content: "공유";
		font-size: 13px;
		font-weight: 900;
	}

	.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-ui.is-mobile-open .camp-sidebar {
		z-index: 32;
		transform: translateX(0);
	}

	.camp-ui.is-mobile-open .camp-menu-backdrop {
		display: block;
	}

	.camp-menu-toggle {
		display: none;
	}

	.camp-close {
		display: inline-flex;
	}

	.camp-sidebar__header {
		min-height: 64px;
	}

	.camp-brand {
		height: 42px;
	}

	.camp-brand__logo {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.camp-item {
		min-height: 36px;
	}

	.camp-ui[data-menu-state="closed"] .camp-sidebar {
		width: min(82vw, 320px);
	}

	.camp-ui[data-menu-state="closed"] .camp-brand,
	.camp-ui[data-menu-state="closed"] .camp-tabs,
	.camp-ui[data-menu-state="closed"] .camp-tab-panel--facilities,
	.camp-ui[data-menu-state="closed"] .camp-minimap,
	.camp-ui[data-menu-state="closed"] .camp-nav__title,
	.camp-ui[data-menu-state="closed"] .camp-item__name,
	.camp-ui[data-menu-state="closed"] .camp-item__range,
	.camp-ui[data-menu-state="closed"] .camp-item__arrow {
		display: block;
	}

	.camp-ui[data-menu-state="closed"] .camp-brand {
		display: flex;
	}

	.camp-ui[data-menu-state="closed"] .camp-item {
		grid-template-columns: 28px minmax(0, 1fr) auto 18px;
		justify-items: stretch;
		padding: 5px 8px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		border-radius: 0;
	}

	.camp-intro-overlay {
		padding: 18px;
	}

	.camp-intro-card {
		width: min(420px, calc(100vw - 24px));
		padding: 22px 18px 24px;
	}

	.camp-intro-logo {
		width: 86px;
		height: 56px;
		margin-bottom: 8px;
	}

	.camp-intro-card h1 {
		font-size: 36px;
	}

	.camp-intro-subtitle {
		margin-top: 8px;
		font-size: 23px;
	}

	.camp-intro-copy {
		margin-top: 18px;
		font-size: 14px;
		line-height: 1.45;
	}

	.camp-intro-guide {
		margin-top: 12px;
		padding: 11px 13px;
	}

	.camp-intro-guide strong {
		font-size: 13px;
	}

	.camp-intro-guide span {
		font-size: 12px;
	}

	.camp-intro-start {
		min-width: 164px;
		min-height: 46px;
		margin-top: 16px;
		padding: 0 22px;
		font-size: 14px;
	}

}
