/* ============================================
   PROFESSIONAL THEME - Satit Samphan 16
   ============================================ */

/* === Global Typography === */
body {
	font-family: 'IBM Plex Sans Thai', 'Prompt', 'Sarabun', sans-serif !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.2px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Prompt', 'IBM Plex Sans Thai', sans-serif !important;
	font-weight: 600;
}
p, span, a, li, label, input, button {
	font-family: 'IBM Plex Sans Thai', 'Prompt', sans-serif !important;
}

/* === Particle Canvas Background === */
#particles-canvas {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: -1;
	pointer-events: none;
	opacity: 0.7;
}

/* === Professional Navbar === */
.navbar-default {
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: rgba(12, 12, 20, 0.88) !important;
	border-bottom: 1px solid rgba(253, 148, 38, 0.08);
}
.navbar-default.scrolled {
	box-shadow: 0 1px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(253, 148, 38, 0.12);
	background: rgba(12, 12, 20, 0.96) !important;
}
.navbar-default .navbar-brand {
	background: linear-gradient(135deg, #fd9426, #ffb347);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s ease infinite;
	font-weight: 700 !important;
	letter-spacing: 1px;
}
.navbar-default .navbar-nav > li > a {
	position: relative;
	transition: color 0.3s ease;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.3px;
}
.navbar-default .navbar-nav > li > a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 50%;
	width: 0; height: 2px;
	background: linear-gradient(90deg, #fd9426, #ffb347);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(-50%);
	border-radius: 1px;
}
.navbar-default .navbar-nav > li > a:hover::after {
	width: 70%;
}
.navbar-default .navbar-nav > li > a:hover {
	color: #ffb347 !important;
}

/* === Selection Cards === */
.round-card {
	border-radius: 20px;
	padding: 35px 20px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.1);
	border: 1px solid rgba(255,255,255,0.06);
}
.round-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 50%);
	pointer-events: none;
}
.round-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(253,148,38,0.2);
}
.round-card .fa {
	transition: all 0.35s ease;
}
.round-card:hover .fa {
	transform: scale(1.15);
}

/* === Countdown Section === */
ul.countdown li {
	border-radius: 14px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
ul.countdown li::after {
	content: '';
	position: absolute;
	top: 0; left: -100%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(253,148,38,0.08), transparent);
	animation: shimmer 3.5s infinite;
}
ul.countdown li:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(253, 148, 38, 0.15);
}
ul.countdown li h3 {
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 13px;
	opacity: 0.85;
}

/* === Hero Section === */
#home {
	position: relative;
	overflow: hidden;
}
#home::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 100%; height: 150px;
	background: linear-gradient(to top, #101010, transparent);
	pointer-events: none;
}
#home h1, #home h2 {
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	font-weight: 600;
}
#home h1 {
	font-size: 48px;
	letter-spacing: 2px;
	border-radius: 20px;
}
#home h2 {
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.5px;
}

/* === Images === */
.countdown-des img {
	border-radius: 16px;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}
.countdown-des img:hover {
	transform: scale(1.015);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* === Contact Section === */
#contact .fa {
	transition: color 0.3s ease;
	width: 20px;
	text-align: center;
}
#contact p:hover .fa {
	color: #fd9426;
}

/* === Buttons === */
.btn-primary, .btn-info, .btn-success {
	border-radius: 10px !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	position: relative;
	overflow: hidden;
	font-weight: 500 !important;
	letter-spacing: 0.3px;
	border: none !important;
}
.btn-primary {
	background: linear-gradient(135deg, #fd9426, #e8850f) !important;
}
.btn-primary:hover, .btn-primary:focus {
	background: linear-gradient(135deg, #ffb347, #fd9426) !important;
	box-shadow: 0 6px 25px rgba(253, 148, 38, 0.35);
	transform: translateY(-2px);
}
.btn-info {
	background: linear-gradient(135deg, #4a9eff, #2d7dd2) !important;
}
.btn-info:hover, .btn-info:focus {
	background: linear-gradient(135deg, #6db3ff, #4a9eff) !important;
	box-shadow: 0 6px 25px rgba(74, 158, 255, 0.35);
	transform: translateY(-2px);
}
.btn-success {
	background: linear-gradient(135deg, #34c759, #2aa048) !important;
}
.btn-success:hover, .btn-success:focus {
	background: linear-gradient(135deg, #4dd86a, #34c759) !important;
	box-shadow: 0 6px 25px rgba(52, 199, 89, 0.35);
	transform: translateY(-2px);
}

/* === Back to Top === */
#backToTop {
	position: fixed;
	bottom: 30px; right: 30px;
	width: 48px; height: 48px;
	background: rgba(253, 148, 38, 0.9);
	color: white;
	border: none; border-radius: 14px;
	font-size: 18px;
	cursor: pointer;
	opacity: 0; visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 9999;
	box-shadow: 0 4px 15px rgba(253, 148, 38, 0.3);
	backdrop-filter: blur(10px);
}
#backToTop.visible {
	opacity: 1; visibility: visible;
}
#backToTop:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(253, 148, 38, 0.45);
	background: rgba(253, 148, 38, 1);
}

/* === Keyframes === */
@keyframes gradientShift {
	0% { background-position: 0% center; }
	50% { background-position: 200% center; }
	100% { background-position: 0% center; }
}
@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
@keyframes fadeInSmooth {
	from { opacity: 0; transform: translateY(15px); }
	to { opacity: 1; transform: translateY(0); }
}

/* === Section Layout === */
#countdown, #about, #contact, .copyright {
	position: relative;
}
#countdown .countdown-des {
	border-radius: 16px;
}

/* === Modal === */
.modal-content {
	border-radius: 18px !important;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0,0,0,0.6) !important;
	border: none !important;
}
.modal-styled {
	background: linear-gradient(160deg, #161625, #1a1a30);
	border: 1px solid rgba(253, 148, 38, 0.12);
}
.modal-header-styled {
	background: rgba(253,148,38,0.06);
	border-bottom: 1px solid rgba(253,148,38,0.1);
	padding: 18px 24px;
}
.modal-header-styled .modal-title {
	color: #ffb347;
	font-weight: 500;
	font-size: 18px;
}
.modal-footer {
	border-top: 1px solid rgba(253,148,38,0.08) !important;
}
.modal-body {
	padding: 24px !important;
}

/* === Inputs === */
.input-styled {
	background: rgba(255,255,255,0.04) !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	border-radius: 12px !important;
	color: #fff !important;
	padding: 13px 18px !important;
	height: auto !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	font-size: 15px !important;
}
.input-styled:focus {
	border-color: rgba(253,148,38,0.5) !important;
	box-shadow: 0 0 0 3px rgba(253,148,38,0.1) !important;
	background: rgba(255,255,255,0.06) !important;
}
.input-styled::placeholder {
	color: rgba(255,255,255,0.3) !important;
}

/* === Action Buttons === */
.btn-action {
	padding: 12px 28px !important;
	border-radius: 12px !important;
	font-weight: 500 !important;
	margin: 5px !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	letter-spacing: 0.3px;
	font-size: 15px !important;
}
.btn-action:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* === Guest Actions === */
.guest-actions {
	text-align: center;
	padding: 50px 30px;
	background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(253,148,38,0.02));
	border-radius: 24px;
	border: 1px solid rgba(255,255,255,0.06);
	margin: 30px auto;
	max-width: 600px;
	backdrop-filter: blur(10px);
}
.guest-actions p {
	font-size: 15px;
	color: rgba(255,255,255,0.5);
}

/* === Section Title === */
.section-title-glow {
	color: #ffb347;
	text-shadow: none;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 24px;
}
.section-title-glow .fa {
	font-size: 16px;
	vertical-align: middle;
	opacity: 0.7;
	animation: float 3s ease-in-out infinite;
}

/* === Poster === */
.poster-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	margin: 10px auto;
	box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}
.poster-img {
	width: 100%;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.poster-wrapper:hover .poster-img {
	transform: scale(1.02);
}

/* === Divider === */
.section-divider {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(253,148,38,0.5), transparent);
	margin: 30px auto;
	border-radius: 1px;
}

/* === Countdown Numbers === */
.countdown-number {
	background: linear-gradient(135deg, #fd9426, #ffb347);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}

/* === Card Elements === */
.card-icon-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	backdrop-filter: blur(5px);
}
.card-time {
	font-size: 20px;
	opacity: 0.8;
	margin: 10px 0;
	font-weight: 400;
}
.card-detail {
	font-size: 20px;
	opacity: 0.6;
	margin-bottom: 15px;
	font-weight: 300;
}
.card-arrow {
	display: inline-block;
	width: 38px; height: 38px;
	line-height: 38px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 14px;
}
.round-card:hover .card-arrow {
	background: rgba(255,255,255,0.25);
	transform: translateX(4px);
}

/* === About Image === */
.about-hero-img {
	border-radius: 20px;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
	box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.about-hero-img:hover {
	transform: scale(1.01);
	box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* === Booking Cards === */
.booking-card {
	background: linear-gradient(160deg, #161625, #1a1a30);
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.06);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.booking-card:hover {
	border-color: rgba(253,148,38,0.2);
	box-shadow: 0 12px 40px rgba(0,0,0,0.3);
	transform: translateY(-3px);
}
.booking-card-header {
	background: rgba(253,148,38,0.05);
	padding: 18px 24px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.booking-card-header h3 {
	margin: 0;
	font-size: 17px;
	color: #ffb347;
	font-weight: 500;
}
.booking-card-body {
	padding: 24px;
}
.booking-card-actions {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.booking-status {
	font-size: 15px;
	margin-bottom: 8px;
	font-weight: 400;
}
.booking-price {
	font-size: 24px;
	font-weight: 700;
	color: #ffb347;
	margin-bottom: 12px;
}
.payment-deadline {
	background: rgba(253,148,38,0.06);
	padding: 10px 16px;
	border-radius: 10px;
	border-left: 3px solid rgba(253,148,38,0.5);
	margin-bottom: 12px;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}

/* === Login Box === */
.login-box {
	max-width: 420px;
	background: linear-gradient(160deg, #161625, #1a1a30);
	padding: 45px 35px;
	margin: 30px auto;
	border-radius: 24px;
	border: 1px solid rgba(255,255,255,0.06);
	box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.login-header {
	text-align: center;
	margin-bottom: 35px;
}
.login-icon {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, #fd9426, #ffb347);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	box-shadow: 0 8px 25px rgba(253,148,38,0.3);
}
.login-icon .fa {
	font-size: 32px;
	color: white;
}
.login-header h2 {
	color: #ffb347;
	margin: 0;
	font-size: 22px;
	font-weight: 600;
}
.login-box .form-group label {
	color: rgba(255,255,255,0.6);
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 6px;
}
.login-box .btn-block {
	margin-top: 18px !important;
	padding: 14px !important;
	font-size: 16px !important;
}

/* === Contact Enhancement === */
#contact {
	padding: 50px 0 !important;
}
#contact h3 {
	color: #ffb347;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 20px;
}
#contact p {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 6px 0;
	font-size: 15px;
	color: rgba(255,255,255,0.7);
}
#contact p:hover {
	padding-left: 8px;
	color: rgba(255,255,255,0.95);
}
#contact p .fa {
	margin-right: 8px;
	width: 18px;
}

/* === Announcement Box === */
.announcement-box {
	background: linear-gradient(160deg, #161625, #1a1a30);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 24px;
	padding: 0;
	margin: 30px auto;
	text-align: left;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0,0,0,0.25);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.announcement-box:hover {
	border-color: rgba(253, 148, 38, 0.15);
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
	transform: translateY(-2px);
}
.announcement-header {
	background: linear-gradient(135deg, #fd9426, #ffb347);
	color: white;
	padding: 18px 28px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.5px;
}
.announcement-header .fa {
	margin-right: 8px;
}
.announcement-body {
	padding: 28px;
	line-height: 1.9;
	font-size: 15px;
	color: rgba(255,255,255,0.8);
}
.announcement-body p {
	margin: 10px 0;
}
.announcement-highlight {
	color: #ffb347;
	font-size: 16px;
	font-weight: 600;
}

/* === Ticket Schedule === */
.ticket-schedule {
	margin: 18px 0;
}
.ticket-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: rgba(255,255,255,0.03);
	border-radius: 14px;
	padding: 16px 18px;
	margin-bottom: 10px;
	border-left: 3px solid rgba(253,148,38,0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ticket-item:hover {
	background: rgba(253, 148, 38, 0.05);
	border-left-color: #fd9426;
	padding-left: 22px;
}
.ticket-check {
	font-size: 18px;
	line-height: 1.5;
	flex-shrink: 0;
}
.ticket-detail {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255,255,255,0.75);
}
.ticket-detail strong {
	color: #ffb347;
	font-size: 15px;
	font-weight: 600;
}
.ticket-detail small {
	color: rgba(255,255,255,0.4);
	font-style: normal;
}

/* === Copyright === */
.copyright {
	border-top: 1px solid rgba(255,255,255,0.05);
}
.copyright p {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
}
.copyright a {
	color: rgba(253,148,38,0.6);
}

/* === Responsive Fine-tuning === */
@media (max-width: 768px) {
	#home h1 { font-size: 32px; letter-spacing: 1px; }
	#home h2 { font-size: 18px; }
	.announcement-box { margin: 20px 10px; }
	.announcement-header { font-size: 16px; padding: 14px 20px; }
	.announcement-body { padding: 20px; font-size: 14px; }
	.guest-actions { padding: 35px 20px; }
	.login-box { padding: 35px 25px; margin: 20px 15px; }
	.section-title-glow { font-size: 20px; }
	.round-card { padding: 28px 15px; }
	.booking-card-body { padding: 18px; }
}

/* === Scrollbar Styling === */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: #0c0c14;
}
::-webkit-scrollbar-thumb {
	background: rgba(253,148,38,0.3);
	border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(253,148,38,0.5);
}

/* === Selection Color === */
::selection {
	background: rgba(253,148,38,0.3);
	color: #fff;
}

/* ============================================
   BUY PAGE STYLES
   ============================================ */

/* === Active Card Highlight === */
.buy-active {
	box-shadow: 0 0 0 2px rgba(253,148,38,0.4), 0 8px 30px rgba(253,148,38,0.15) !important;
}

/* === Zone Buttons === */
.zone-btn {
	cursor: pointer;
	border-radius: 16px;
	padding: 20px 28px;
	text-align: center;
	min-width: 160px;
	flex: 1;
	max-width: 220px;
	border: 1px solid rgba(255,255,255,0.08);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.zone-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.35);
	border-color: rgba(255,255,255,0.15);
}
.zone-badge {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}
.zone-price {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
	font-weight: 400;
}

/* === Buy Panels (Seat / Price) === */
.buy-panel {
	background: linear-gradient(160deg, #161625, #1a1a30);
	border-radius: 16px;
	padding: 24px;
	border: 1px solid rgba(255,255,255,0.06);
	margin-bottom: 15px;
}
.buy-panel-price {
	border-color: rgba(253,148,38,0.12);
}
.buy-panel-label {
	color: #ffb347;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 12px;
}
.buy-panel-label .fa {
	margin-right: 6px;
	width: 18px;
}
.buy-display-box {
	font-size: 20px;
	background: rgba(0,0,0,0.3);
	border-radius: 12px;
	padding: 14px 16px;
	min-height: 56px;
	word-break: break-word;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.05);
}
.buy-price-value {
	color: #ffb347;
	font-weight: 700;
}

/* === Seat Legend === */
.seat-legend {
	text-align: center;
	font-size: 17px;
	background: linear-gradient(160deg, #161625, #1a1a30);
	padding: 14px 24px;
	border-radius: 14px;
	margin: 15px auto;
	max-width: 700px;
	border: 1px solid rgba(255,255,255,0.06);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
.legend-item {
	color: rgba(255,255,255,0.8);
	white-space: nowrap;
	font-size: 16px;
}
.legend-item .fa {
	margin-right: 6px;
	font-size: 16px;
}
.legend-divider {
	width: 1px;
	height: 14px;
	background: rgba(255,255,255,0.15);
	margin: 0 6px;
}

/* === Waiting Banner === */
.buy-waiting-banner {
	text-align: center;
	background: linear-gradient(160deg, #161625, #1a1a30);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 20px;
	padding: 40px 30px;
	margin: 20px auto;
	max-width: 600px;
}
.buy-waiting-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(253,148,38,0.15), rgba(255,179,71,0.1));
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 32px;
	color: #ffb347;
}
.buy-waiting-banner h3 {
	color: #ffb347;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
}
.buy-waiting-banner p {
	color: rgba(255,255,255,0.6);
	font-size: 16px;
	margin: 4px 0;
}
.buy-waiting-time {
	color: rgba(255,255,255,0.8) !important;
	font-size: 18px !important;
	font-weight: 500;
}
.buy-waiting-date {
	display: inline-block;
	background: linear-gradient(135deg, rgba(253,148,38,0.12), rgba(255,179,71,0.08));
	border: 1px solid rgba(253,148,38,0.2);
	border-radius: 12px;
	padding: 12px 24px;
	margin-top: 18px;
	color: #ffb347;
	font-size: 16px;
	font-weight: 500;
}

/* === Seat Interaction Effects === */
.seat {
	position: relative;
	overflow: hidden;
	transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
	            box-shadow 0.3s ease,
	            filter 0.3s ease;
	z-index: 1;
}
.seat:hover {
	transform: skew(0deg) scale(1.18) translateY(-3px);
	box-shadow: 0 0 14px rgba(255,179,71,0.5), 0 4px 12px rgba(0,0,0,0.4);
	filter: brightness(1.25);
	z-index: 10;
}
.seat:active {
	transform: skew(0deg) scale(0.92);
	transition-duration: 0.08s;
}

/* Ripple on click */
.seat .seat-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.45);
	transform: scale(0);
	animation: seatRipple 0.5s ease-out forwards;
	pointer-events: none;
}
@keyframes seatRipple {
	to { transform: scale(3); opacity: 0; }
}

/* Selected seat glow ring */
.seat-selected {
	animation: seatBounceIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 0 0 3px rgba(255,179,71,0.7),
	            0 0 18px rgba(253,148,38,0.5),
	            0 0 40px rgba(253,148,38,0.15) !important;
	filter: brightness(1.2);
	z-index: 5;
}
.seat-selected::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 10px;
	border: 2px solid rgba(255,179,71,0.5);
	animation: seatPulseRing 1.8s ease-in-out infinite;
	pointer-events: none;
}
@keyframes seatBounceIn {
	0% { transform: skew(0deg) scale(0.5); opacity: 0.5; }
	50% { transform: skew(0deg) scale(1.25); }
	70% { transform: skew(0deg) scale(0.95); }
	100% { transform: skew(0deg) scale(1); opacity: 1; }
}
@keyframes seatPulseRing {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 0.15; transform: scale(1.12); }
}

/* Deselect shrink-out */
.seat-deselecting {
	animation: seatShrinkOut 0.3s ease-in forwards;
}
@keyframes seatShrinkOut {
	0% { transform: skew(0deg) scale(1); filter: brightness(1.2); }
	50% { transform: skew(0deg) scale(1.1); }
	100% { transform: skew(0deg) scale(1); filter: brightness(1); box-shadow: 0 0 5px rgb(0 0 0 / 50%); }
}

/* Sparkle particles */
.seat-sparkle {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ffb347;
	pointer-events: none;
	animation: seatSparkleFly 0.65s ease-out forwards;
	z-index: 20;
}
@keyframes seatSparkleFly {
	0% { opacity: 1; transform: translate(0, 0) scale(1); }
	100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* Seat count badge animation */
.seat-count-badge {
	display: inline-block;
	background: linear-gradient(135deg, #fd9426, #ffb347);
	color: #161625;
	font-weight: 700;
	font-size: 14px;
	min-width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	border-radius: 14px;
	margin-left: 10px;
	vertical-align: middle;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.seat-count-badge.badge-pop {
	animation: badgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes badgePop {
	0% { transform: scale(0.5); }
	60% { transform: scale(1.3); }
	100% { transform: scale(1); }
}

/* Display box update flash */
.buy-display-box.flash-update {
	animation: displayFlash 0.4s ease;
}
@keyframes displayFlash {
	0% { border-color: rgba(253,148,38,0.6); box-shadow: 0 0 12px rgba(253,148,38,0.3); }
	100% { border-color: rgba(255,255,255,0.05); box-shadow: none; }
}

/* Seat tooltip */
.seat-tooltip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) scale(0.8);
	background: rgba(22,22,37,0.95);
	color: #ffb347;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 8px;
	border: 1px solid rgba(255,179,71,0.3);
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 30;
}
.seat-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: rgba(255,179,71,0.3);
}
.seat:hover .seat-tooltip {
	opacity: 1;
	transform: translateX(-50%) scale(1);
}

/* === Buy Page Responsive === */
@media (max-width: 768px) {
	.zone-btn { min-width: 140px; padding: 16px 20px; }
	.zone-badge { font-size: 17px; }
	.buy-panel { padding: 18px; }
	.buy-display-box { font-size: 17px; padding: 12px; }
	.seat-legend { padding: 12px 16px; font-size: 14px; }
	.buy-waiting-banner { padding: 30px 20px; margin: 15px 10px; }
	.seat:hover { transform: skew(0deg) scale(1.12); }
	.seat-tooltip { display: none; }
}
