/* ==========================================================================
   CSS CHO TOUR PANORAMA 360 - CẤU HÌNH CƠ BẢN (BASE STYLES)
   ========================================================================== */

/* 1. THIẾT LẬP TOÀN CỤC - TỐI ƯU HÓA PHẦN CỨNG CHO IPHONE SAFARI */
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden; /* Vô hiệu hóa thanh cuộn và thanh giật của iOS */
	background: #000000;
	color: #ffffff;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	touch-action: manipulation;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 2. KHUNG CHỨA TOÀN CẢNH (CONTAINER) - TĂNG TỐC ĐỒ HỌA GPU */
#container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #000000;
	display: block;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	touch-action: none;
}

/* 3. TÙY CHỈNH THANH CUỘN */
::-webkit-scrollbar {
	background-color: rgba(0, 0, 0, 0.5);
	width: 0.75em;
	height: 0.75em;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.5);
}

/* 4. PHẦN TỬ NOSCRIPT VÀ MULTIMEDIA */
noscript {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.85);
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	z-index: 99999;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
