/* ============================================================
   Win X – Luxury Dark Social Network
   Core Styles & Design System
   ============================================================ */

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

:root {
  --gold-primary: #D4AF37;
  --gold-light: #FCF6BA;
  --gold-dark: #B38728;
  --gold-deep: #BF953F;
  --bg-primary: #000000;
  --bg-card: rgba(15, 15, 15, 0.6);
  --bg-glass: rgba(20, 20, 20, 0.45);
  --border-glass: rgba(212, 175, 55, 0.25);
  --text-primary: #f0f0f0;
  --text-secondary: rgba(240, 240, 240, 0.6);
  --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #D4AF37);
  --gold-gradient-45: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
  --gold-glow-strong: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body, #root {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 4px; }

/* ---- Glass Panel ---- */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
}

.glass-strong {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
}

/* ---- Gold Text ---- */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text-simple {
  color: var(--gold-primary);
}

/* ---- Buttons ---- */
.btn-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-primary);
  padding: 10px 24px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
  box-shadow: var(--gold-glow);
  border-color: rgba(212, 175, 55, 0.7);
  transform: translateY(-1px);
}

.btn-gold:active { transform: translateY(0); }

.btn-gold-solid {
  background: var(--gold-gradient);
  border: none;
  color: #000;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-gold-solid:hover {
  box-shadow: var(--gold-glow-strong);
  transform: translateY(-2px);
}

/* ---- Icon Button ---- */
.icon-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: var(--gold-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: var(--gold-glow);
  border-color: rgba(212, 175, 55, 0.5);
}

/* ---- Floating Logo ---- */
.floating-logo {
  position: fixed;
  top: 24px; left: 28px;
  z-index: 100;
  height: 36px;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---- Particle Canvas ---- */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---- App Container ---- */
.app-container {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
}

/* ---- Room Selection Grid ---- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.room-card {
  perspective: 800px;
  cursor: pointer;
}

.room-card-inner {
  padding: 28px;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-card:hover .room-card-inner {
  box-shadow: var(--gold-glow), 0 20px 40px rgba(0,0,0,0.5);
  border-color: rgba(212, 175, 55, 0.5);
}

.room-card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.room-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.room-card p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 16px;
}

.room-participants {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.room-participants .avatar-stack {
  display: flex;
}

.room-participants .avatar-mini {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  background: linear-gradient(135deg, #333, #555);
}

.room-participants .avatar-mini:first-child { margin-left: 0; }

.room-participants span {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ---- Voice Room ---- */
.voice-room {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  gap: 40px;
}

.voice-room h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.voice-avatars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 600px;
}

.voice-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.voice-avatar-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  overflow: hidden;
}

.voice-avatar-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.voice-avatar.speaking .voice-avatar-circle {
  border-color: var(--gold-primary);
}

.voice-avatar-name {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.voice-controls {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

/* Voice Visualizer */
.voice-visualizer-canvas {
  width: 100%;
  max-width: 500px;
  height: 80px;
  border-radius: 12px;
}

/* ---- Video Room ---- */
.video-grid {
  display: grid;
  gap: 12px;
  padding: 24px;
  height: 100%;
  width: 100%;
}

.video-grid.p1 { grid-template-columns: 1fr; }
.video-grid.p2 { grid-template-columns: 1fr 1fr; }
.video-grid.p3 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.video-grid.p4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.video-grid.p5, .video-grid.p6 { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr 1fr; }

.video-tile {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-tile-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.video-tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-tile-overlay span {
  font-size: 13px;
  font-weight: 500;
}

.video-tile-overlay .icons {
  display: flex; gap: 8px;
}

.video-tile-avatar {
  font-size: 40px;
  z-index: 1;
  opacity: 0.5;
}

.video-controls {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 50;
}

/* ---- Chat Panel ---- */
.chat-panel {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  height: 100%;
  z-index: 80;
  display: flex;
  flex-direction: column;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.chat-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  display: flex;
  gap: 10px;
}

.chat-message-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #555);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.chat-message-content {
  flex: 1;
}

.chat-message-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.chat-message-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.chat-message-time {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}

.chat-input-area {
  padding: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s;
}

.chat-input:focus {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.chat-input::placeholder {
  color: rgba(255,255,255,0.25);
}

/* ---- Social Feed ---- */
.feed-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  height: 100%;
}

.feed-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-card-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 16px;
}

.feed-card-info h4 {
  font-size: 15px;
  font-weight: 600;
}

.feed-card-info span {
  font-size: 12px;
  color: var(--text-secondary);
}

.feed-card-body {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240,240,240,0.85);
}

.feed-card-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feed-card-actions {
  display: flex;
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.feed-action {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}

.feed-action:hover { color: var(--gold-primary); }

/* ---- Floating Nav ---- */
.floating-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
}

.nav-trigger {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gold-glow-strong);
  transition: all 0.3s;
  color: #000;
}

.nav-trigger:hover {
  transform: scale(1.1);
}

.nav-trigger.open {
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
}

.nav-menu-item {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  cursor: pointer;
  transition: all 0.3s;
}

.nav-menu-item:hover {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: var(--gold-glow);
  transform: scale(1.15) !important;
}

.nav-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-primary);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-menu-item:hover .nav-label { opacity: 1; }

/* ---- Copyright ---- */
.copyright {
  position: fixed;
  bottom: 10px;
  right: 16px;
  font-size: 11px;
  color: rgba(212, 175, 55, 0.35);
  z-index: 5;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

/* ---- View Header ---- */
.view-header {
  text-align: center;
  padding: 80px 24px 20px;
}

.view-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.view-header p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ---- Pulse Animation ---- */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  animation: pulse-ring 1.5s ease-out infinite;
}

/* ---- Back Button ---- */
.back-btn {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 90;
}

/* ---- Slide In Animation ---- */
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   LANDING PAGE SECTIONS
   ============================================================ */

/* ---- Landing Scroll Container ---- */
.landing-scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ---- Section Base ---- */
.lp-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
}

.lp-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.lp-section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.lp-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ---- Hero / Slider Banner ---- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.5) 70%,
    rgba(0,0,0,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero-logo {
  height: 64px;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
  animation: logoFloat 4s ease-in-out infinite;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-gold-solid {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 50px;
}

.hero-buttons .btn-gold {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 50px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.slider-dot:hover {
  border-color: var(--gold-primary);
}

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  padding: 24px;
  text-align: center;
}

.about-stat-card .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.about-stat-card .stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gold-glow), 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 28px;
}

.feature-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Tech Stack Section ---- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-card {
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-glow);
}

.tech-card .tech-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.tech-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tech-card p {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
}

/* ---- Community / Fun Section ---- */
.community-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.community-card {
  padding: 28px;
  transition: transform 0.3s;
}

.community-card:hover {
  transform: translateY(-4px);
}

.community-card .emoji-large {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.community-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.community-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card .quote {
  font-size: 14px;
  color: rgba(240,240,240,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-author .name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-author .role {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
  padding: 100px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-section .btn-gold-solid {
  padding: 18px 50px;
  font-size: 18px;
  border-radius: 50px;
}

/* ---- Footer ---- */
.lp-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 40px;
  text-align: center;
}

.lp-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.lp-footer-logo {
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.lp-footer-copy {
  font-size: 13px;
  color: rgba(212, 175, 55, 0.4);
  font-family: 'Outfit', sans-serif;
}

.lp-footer-links {
  display: flex;
  gap: 24px;
}

.lp-footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.lp-footer-links a:hover {
  color: var(--gold-primary);
}

/* ---- Interactive Demo Section ---- */
.demo-preview {
  max-width: 900px;
  margin: 0 auto;
  padding: 4px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.3));
}

.demo-inner {
  background: rgba(5, 5, 5, 0.9);
  border-radius: 20px;
  padding: 32px;
  min-height: 300px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .community-showcase { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .room-grid { grid-template-columns: 1fr; }
  .chat-panel { width: 100%; }
  .video-grid.p3, .video-grid.p4 { grid-template-columns: 1fr; }
  .view-header h1 { font-size: 28px; }
  .floating-logo { height: 28px; top: 16px; left: 16px; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
  .hero-logo { height: 48px; }
  .lp-section { padding: 60px 20px; }
  .lp-section-title { font-size: 30px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .community-showcase { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 32px; }
  .lp-footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .about-visual { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
}
