@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Serif+TC:wght@500;700;900&family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

:root {
  --primary: #9b1c31;      /* Imperial Crimson */
  --primary-light: #c22d46;
  --primary-dark: #660e1c;
  --accent: #d4af37;       /* Imperial Gold */
  --accent-light: #f3e5ab;
  --accent-dark: #aa8416;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --bg-darker: #0c0c0e;    /* Rich Dark Backgrounds */
  --bg-dark: #141418;
  --bg-card: #1c1c24;
  --bg-card-hover: #262630;
  
  --border-color: rgba(212, 175, 55, 0.2);
  --border-color-glow: rgba(212, 175, 55, 0.5);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
  
  --font-serif: 'Noto Serif TC', serif;
  --font-sans: 'Noto Sans TC', 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
select,
input,
textarea {
  touch-action: manipulation;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border: 1px solid var(--accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Layout Elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

/* Badges & Titles */
.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid var(--accent);
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-light);
  box-shadow: var(--shadow-glow);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 0.02em;
}

.section-title span {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 1rem auto 0;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}

header.scrolled .nav-container {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
}

.logo-gtv {
  background: var(--primary);
  color: var(--text-light);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(155, 28, 49, 0.5);
}

.logo-text span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), 0 5px 15px rgba(155, 28, 49, 0.4);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background: radial-gradient(circle at center, rgba(102, 14, 28, 0.3) 0%, rgba(12, 12, 14, 1) 70%), 
              linear-gradient(rgba(12, 12, 14, 0.4), rgba(12, 12, 14, 0.9));
  overflow: hidden;
}

/* Animated lantern background */
.lanterns-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.lantern {
  position: absolute;
  width: 40px;
  height: 50px;
  background: radial-gradient(circle at center, #ff8c00, var(--primary-light) 70%);
  border-radius: 50% 50% 45% 45%;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  opacity: 0.3;
  animation: floatUp 15s infinite ease-in-out;
}

.lantern::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--accent);
}

.lantern:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s; width: 30px; height: 38px; }
.lantern:nth-child(2) { left: 25%; animation-duration: 22s; animation-delay: 3s; width: 45px; height: 55px; }
.lantern:nth-child(3) { left: 70%; animation-duration: 16s; animation-delay: 1s; width: 35px; height: 44px; }
.lantern:nth-child(4) { left: 85%; animation-duration: 20s; animation-delay: 5s; width: 50px; height: 62px; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-sub {
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-family: var(--font-serif);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  background: linear-gradient(to bottom, #ffffff 30%, #e2e8f0 70%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.7));
}

.hero-title span {
  display: block;
  font-size: 2.2rem;
  color: var(--accent);
  -webkit-text-fill-color: initial;
  background: none;
  margin-top: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 3rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 15px rgba(155, 28, 49, 0.4), var(--shadow-glow);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(155, 28, 49, 0.6), 0 0 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.hero-quick-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  max-width: 700px;
  margin: 0 auto;
}

.quick-stat-item {
  text-align: center;
}

.quick-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.quick-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-glow);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.12;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  word-break: normal;
}

.stat-number span {
  font-size: 1.2rem;
  color: var(--accent);
  margin-left: 2px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stats-summary {
  background: rgba(155, 28, 49, 0.1);
  border: 1px dashed var(--accent);
  padding: 2rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.stats-summary-text {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

.stats-summary-text strong {
  color: var(--accent-light);
  font-weight: 700;
}

/* Value Props / Highlights */
.value-props {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.prop-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

.prop-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.prop-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.prop-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.prop-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Media & Hype Section */
.media-section {
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.media-left {
  text-align: left;
}

.media-quote-card {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  position: relative;
}

.media-quote-card::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
}

.media-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.media-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-logo {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

.media-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--text-muted);
  transition: var(--transition);
}

.media-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hype-carousel {
  position: relative;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carousel-title {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
}

.carousel-dots {
  display: flex;
  gap: 5px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: 2rem;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.hype-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hype-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-light);
  font-size: 0.9rem;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.user-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hype-content {
  font-size: 1.05rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 3px solid var(--primary-light);
}

.hype-content mark {
  background: rgba(212, 175, 55, 0.25);
  color: var(--accent-light);
  padding: 0 4px;
}

.hype-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 1.5rem;
}

/* Interactive Placements Showroom */
.showroom-section {
  background: var(--bg-darker);
}

.showroom-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: stretch;
}

.showroom-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showroom-tabs-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.showroom-tab {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  min-height: 76px;
}

.showroom-tab-info {
  display: flex;
  flex-direction: column;
}

.showroom-tab-label {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.showroom-tab-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.15rem;
}

.showroom-tab-tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-muted);
}

.showroom-tab:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.3);
}

.showroom-tab.active {
  background: linear-gradient(135deg, var(--primary-dark), rgba(155, 28, 49, 0.2));
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.showroom-tab.active .showroom-tab-name {
  color: var(--text-light);
}

.showroom-tab.active .showroom-tab-tag {
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
}

/* Interactive Video Player Mockup */
.showroom-display {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.player-mockup {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

.player-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

/* Overlay Placements */
.placement-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
  z-index: 10;
}

.placement-overlay.active {
  display: block;
}

.placement-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8eadc;
}

/* A. 直播封面LOGO */
.overlay-cover {
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-card {
  width: 80%;
  height: 80%;
  border: 4px solid var(--accent);
  background: radial-gradient(circle, var(--primary-dark), #000);
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}
.cover-tag {
  align-self: flex-end;
  background: #ff0000;
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.cover-center {
  text-align: center;
}
.cover-logo-placeholder {
  border: 2px dashed var(--accent);
  padding: 0.8rem 1.5rem;
  background: rgba(0,0,0,0.5);
  font-size: 1.4rem;
  color: var(--accent-light);
  font-weight: 800;
  display: inline-block;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}
.cover-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
.cover-bottom {
  text-align: center;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
}

/* B. 直播大片頭LOGO */
.overlay-intro {
  background: radial-gradient(circle, rgba(155, 28, 49, 0.9) 0%, rgba(12, 12, 14, 0.95) 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.intro-brand-box {
  border: 3px double var(--accent);
  padding: 1.5rem 3rem;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  animation: scaleIn 0.5s ease-out;
}
.intro-sponsor-slot {
  font-size: 1rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.2em;
}
.intro-sponsor-logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-light);
  font-family: var(--font-serif);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.intro-title {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--accent);
  letter-spacing: 0.3em;
}

/* C. 直播左上角LOGO */
.overlay-corner-logo {
  top: 15px;
  left: 15px;
  width: auto;
  height: auto;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.corner-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0000;
  animation: blink 1s infinite;
}
.corner-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
}

/* D. 片尾感謝訊息卡 */
.overlay-outro-card {
  background: rgba(12, 12, 14, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.outro-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.outro-card-box {
  width: 70%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.outro-card-logo {
  border: 2px dashed var(--accent);
  padding: 0.8rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-light);
}
.outro-card-qr {
  width: 80px;
  height: 80px;
  background: white;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: black;
  font-weight: bold;
}

/* E. 片尾感謝口卡 */
.overlay-vocal {
  background: rgba(155, 28, 49, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vocal-box {
  background: rgba(0,0,0,0.85);
  border: 2px solid var(--accent);
  padding: 2rem 3rem;
  border-radius: 8px;
  text-align: center;
  max-width: 80%;
  box-shadow: var(--shadow-lg);
}
.vocal-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  animation: pulse 1.5s infinite;
}
.vocal-script {
  font-size: 1.3rem;
  font-family: var(--font-serif);
  color: var(--text-light);
  line-height: 1.8;
}

/* F. YT資訊欄曝光 */
.overlay-description {
  bottom: 0;
  top: auto;
  height: 35%;
  background: rgba(20, 20, 24, 0.95);
  border-top: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  pointer-events: auto;
  overflow-y: auto;
}
.desc-header {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.desc-content {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* G. 左下角LOGO跳卡10秒 */
.overlay-pop-card {
  bottom: 20px;
  left: 20px;
  top: auto;
  width: auto;
  height: auto;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid var(--accent);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.5s ease-out;
}
.pop-card-icon {
  font-size: 1.2rem;
  color: var(--accent);
}
.pop-card-text {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Chatroom Mockup (for chat placements) */
.chatroom-container {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 1rem;
}
.chatroom-container.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.chat-messages {
  height: 150px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.chat-msg {
  display: flex;
  gap: 0.5rem;
}
.chat-sender {
  font-weight: 700;
  color: var(--accent);
}
.chat-text {
  color: var(--text-light);
}
.chat-pinned-box {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.chat-pinned-box.active {
  display: flex;
}
.chat-pin-icon {
  color: var(--accent);
}
.chat-pinned-link {
  color: var(--accent-light);
  text-decoration: underline;
  font-weight: 700;
}

/* Player Control bar overlay */
.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}
.controls-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}
.play-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.time-display {
  color: #ccc;
}
.controls-right {
  color: white;
  font-size: 0.9rem;
}

/* Detail Box */
.showroom-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}
.detail-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}
.detail-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.15);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.spec-item {
  display: flex;
  flex-direction: column;
}
.spec-label {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.spec-value {
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* Pricing / Packages Section */
.pricing-section {
  background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.pricing-card.sold {
  opacity: 0.75;
  border-color: rgba(212, 175, 55, 0.3);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.pricing-card.popular::after {
  content: '推薦檔期';
  position: absolute;
  top: 15px;
  right: -30px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
}

.sold-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sold-stamp {
  border: 4px double #ff0000;
  color: #ff0000;
  font-size: 2.2rem;
  font-weight: 900;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transform: rotate(-15deg);
  text-transform: uppercase;
  background: var(--bg-card);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  letter-spacing: 0.1em;
}

.pricing-header {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.pricing-week {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.pricing-date {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-light);
}

.pricing-amount span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: normal;
}

.pricing-body {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.feature-icon {
  color: var(--accent);
  margin-top: 0.2rem;
}

.feature-text {
  color: var(--text-muted);
}

.feature-text strong {
  color: var(--text-light);
}

.pricing-footer {
  padding: 0 2rem 2.5rem;
  margin-top: auto;
}

.btn-pricing {
  width: 100%;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.pricing-card.sold .btn-pricing {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: not-allowed;
}

.pricing-card.popular .btn-pricing {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text-dark);
  border: 1px solid var(--accent-light);
}

.pricing-card.popular .btn-pricing:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.pricing-card:not(.popular):not(.sold) .btn-pricing {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card:not(.popular):not(.sold) .btn-pricing:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.pricing-terms {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.terms-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.term-item {
  position: relative;
  padding-left: 1.25rem;
}

.term-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Booking & Lead Form Section */
.booking-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.booking-info {
  text-align: left;
}

.booking-info h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.booking-info h2 span {
  color: var(--accent);
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  display: flex;
  gap: 1.25rem;
}

.step-num {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Booking Form styling */
.booking-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.booking-form-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-light);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-control.is-hinting {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.12);
  color: #fff2b0;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14), 0 0 18px rgba(255, 232, 150, 0.45);
}

.sales-select-hint {
  margin-top: 0.55rem;
  color: #fff2b0;
  font-size: 0.9rem;
  font-weight: 700;
  animation: hintTextPulse 1.25s ease-in-out infinite;
}

.sales-select-hint[hidden] {
  display: none !important;
}

.service-window-fixed {
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 6px;
  padding: 1rem 1.15rem;
  background: rgba(212, 175, 55, 0.08);
  color: #fff2b0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 0 18px rgba(255, 232, 150, 0.38);
  animation: serviceWindowGlow 1.4s ease-in-out infinite;
}

@keyframes serviceWindowGlow {
  0%, 100% {
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 0 18px rgba(255, 232, 150, 0.38);
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 232, 150, 0.95);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18), 0 0 28px rgba(255, 232, 150, 0.62);
  }
}

@keyframes hintTextPulse {
  0%, 100% {
    opacity: 0.75;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.35);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(255, 232, 150, 0.95);
  }
}

select.form-control option {
  background: var(--bg-card);
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-checkbox input {
  accent-color: var(--accent);
}

.sales-owner-card {
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 6px;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.06);
}

.sales-owner-main {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.sales-owner-name {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 700;
}

.sales-owner-title {
  color: var(--accent-light);
  font-size: 0.9rem;
}

.sales-owner-details {
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.sales-owner-details[hidden] {
  display: none !important;
}

.sales-owner-details strong {
  color: var(--text-light);
  font-weight: 600;
  word-break: break-word;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(155, 28, 49, 0.4);
  transition: var(--transition);
  margin-top: 1rem;
  min-height: 52px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 28, 49, 0.6), var(--shadow-glow);
}

/* Form Success State styling */
.form-success-message {
  display: none;
  text-align: center;
  padding: 2rem 0;
  animation: fadeIn 0.5s ease-in-out;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.success-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Footer styling */
footer {
  background: linear-gradient(135deg, #4c0512, #2d0007);
  border-top: 3px solid var(--accent);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.footer-links-grid {
  display: flex;
  gap: 5rem;
}

.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-link {
  color: #cbd5e1;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent-light);
  text-shadow: 0 0 5px rgba(243, 229, 171, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Animations */
@keyframes floatUp {
  0% {
    transform: translateY(105vh) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-title span {
    font-size: 1.8rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showroom-layout {
    grid-template-columns: 1fr;
  }
  .showroom-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .showroom-tab {
    flex: 1 1 calc(50% - 0.5rem);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 4rem;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.22);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  header {
    background: rgba(12, 12, 14, 0.96);
  }

  .nav-container {
    height: 64px;
    gap: 0.75rem;
  }

  header.scrolled .nav-container {
    height: 56px;
  }

  .logo {
    min-width: 0;
    gap: 0.5rem;
  }

  .logo-gtv {
    flex-shrink: 0;
    padding: 0.18rem 0.48rem;
    font-size: 0.78rem;
  }

  .logo-text {
    font-size: 1.05rem;
    line-height: 1.15;
    max-width: 9.5em;
    white-space: normal;
  }

  .btn-nav-cta {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .nav-menu {
    display: none; /* simple toggle placeholder */
  }
  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 4rem;
  }

  .badge {
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    line-height: 1.7;
  }

  .hero-title {
    font-size: 2.55rem;
    line-height: 1.12;
    margin-bottom: 1.3rem;
    letter-spacing: 0.02em;
  }
  .hero-title span {
    font-size: 1.35rem;
    letter-spacing: 0.05em;
  }

  .hero-desc,
  .section-desc {
    font-size: 1rem;
    line-height: 1.85;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 340px;
    padding: 0.9rem 1rem;
    text-align: center;
  }
  .hero-quick-stats {
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 1.6rem;
  }

  .quick-stat-num {
    font-size: 1.65rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.6rem 1rem !important;
  }

  .stat-number {
    font-size: clamp(1.2rem, 6.2vw, 1.8rem) !important;
    white-space: nowrap !important;
    overflow-wrap: normal;
  }

  .props-grid {
    grid-template-columns: 1fr;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }

  .showroom-layout {
    gap: 1.2rem;
  }

  .showroom-sidebar {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 78vw);
    overflow-x: auto;
    padding-bottom: 0.65rem;
    scroll-snap-type: x mandatory;
  }

  .showroom-tabs-title {
    display: none;
  }

  .showroom-tab {
    scroll-snap-align: start;
    padding: 1rem;
    min-height: 92px;
  }

  .showroom-tab-name {
    font-size: 0.95rem;
  }

  .showroom-tab-tag {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .showroom-display {
    padding: 0.85rem;
    gap: 1rem;
  }

  .player-mockup {
    border-radius: 4px;
  }

  .showroom-detail {
    padding: 1rem;
  }

  .detail-title {
    font-size: 1.35rem;
  }

  .detail-specs {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    max-width: none;
    gap: 1.25rem;
  }

  .pricing-header {
    padding: 1.8rem 1.25rem 1.2rem;
  }

  .pricing-amount {
    font-size: 2.4rem;
  }

  .pricing-body {
    padding: 1.4rem;
  }

  .pricing-footer {
    padding: 0 1.4rem 1.6rem;
  }

  .pricing-terms {
    padding: 1.25rem;
  }

  .terms-list {
    grid-template-columns: 1fr;
  }

  .booking-info h2,
  .section-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .booking-steps {
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .step-card {
    gap: 0.9rem;
  }

  .step-num {
    width: 38px;
    height: 38px;
  }

  .booking-form-box {
    padding: 1.4rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-control {
    font-size: 16px;
  }

  .service-window-fixed {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .form-checkbox {
    align-items: flex-start;
    line-height: 1.6;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-links-grid {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .logo-text {
    font-size: 0.95rem;
    max-width: 8.2em;
  }

  .btn-nav-cta {
    padding: 0.45rem 0.6rem;
    font-size: 0.82rem;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-title span {
    font-size: 1.12rem;
  }

  .section-title,
  .booking-info h2 {
    font-size: 1.7rem;
  }

  .stat-number {
    font-size: clamp(1.05rem, 5.7vw, 1.55rem) !important;
  }

  .pricing-amount {
    font-size: 2.1rem;
  }

  .booking-form-box {
    padding: 1.15rem;
  }
}
