/* ============================================
   GORILLA CAT — Static Marketing Site
   Dark AI aesthetic with glassmorphism
   ============================================ */

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

:root {
  --gc-base: #0a0a0f;
  --gc-surface: #111118;
  --gc-elevated: #1a1a24;
  --gc-glass-bg: rgba(255,255,255,0.04);
  --gc-glass-border: rgba(255,255,255,0.08);
  --gc-glass-hover: rgba(255,255,255,0.07);
  --gc-text-primary: #f0f0f5;
  --gc-text-secondary: #8888a0;
  --gc-text-muted: #55556a;
  --gc-blue: #1d3461;
  --gc-accent: #3b82f6;
  --gc-purple: #8b5cf6;
  --gc-cyan: #06b6d4;
  --gc-pink: #ec4899;
  --gc-gradient-1: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --gc-gradient-2: linear-gradient(135deg, #06b6d4, #ec4899);
}

html { scroll-behavior: smooth; }

body {
  background: var(--gc-base);
  color: var(--gc-text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--gc-gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-2 { background: var(--gc-gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.glass {
  background: var(--gc-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gc-glass-border);
  border-radius: 16px;
}

.glass:hover {
  background: var(--gc-glass-hover);
  border-color: rgba(255,255,255,0.12);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gc-glass-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-logo span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  color: var(--gc-text-secondary);
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--gc-text-primary); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  background: var(--gc-gradient-1);
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(59,130,246,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: var(--gc-text-primary);
  border: 1px solid var(--gc-glass-border);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline:hover { background: rgba(255,255,255,0.04); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gc-text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-bg .orb-1 {
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(59,130,246,0.08);
}

.hero-bg .orb-2 {
  bottom: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(139,92,246,0.08);
}

.hero-bg .orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(6,182,212,0.05);
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--gc-glass-border);
  background: var(--gc-glass-bg);
  font-size: 13px;
  color: var(--gc-text-secondary);
  margin-bottom: 32px;
}

.hero-badge svg { width: 14px; height: 14px; color: var(--gc-accent); }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gc-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* Platform badges */
.platform-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  opacity: 0.5;
}

.platform-badges svg {
  height: 20px;
  width: auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gc-glass-border);
}

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

.hero-stat .number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat .label {
  font-size: 14px;
  color: var(--gc-text-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ---- Sections ---- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gc-text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.feature-card {
  padding: 32px;
  transition: transform 0.2s;
}

.feature-card:hover { transform: translateY(-2px); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(59,130,246,0.1);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gc-accent);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* ---- Split Section ---- */
.split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-card {
  padding: 24px;
}

.metric-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.metric-card .top span {
  font-size: 14px;
  font-weight: 500;
}

.metric-card .value {
  font-size: 2rem;
  font-weight: 800;
}

.metric-card .tags {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.tag {
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.tag-blue { background: rgba(59,130,246,0.12); color: #60a5fa; }
.tag-orange { background: rgba(249,115,22,0.12); color: #fb923c; }
.tag-green { background: rgba(34,197,94,0.12); color: #4ade80; }

.split-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gc-text-secondary);
}

.split-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---- Brands / Logo Cloud ---- */
.brands-section {
  padding: 80px 0;
  border-top: 1px solid var(--gc-glass-border);
  border-bottom: 1px solid var(--gc-glass-border);
}

.brands-section h2 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.brands-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--gc-text-muted);
  margin-bottom: 48px;
}

.brands-scroll {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
  display: flex;
  gap: 48px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.brands-track .brand-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gc-text-muted);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.brands-track .brand-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gc-text-muted);
  opacity: 0.4;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- AI Section ---- */
.ai-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gc-purple), var(--gc-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}

/* ---- Contact / Interview Form ---- */
.form-section {
  padding: 120px 0;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.form-card {
  padding: 48px;
}

/* Form step system */
.form-step { display: none; }
.form-step.active { display: block; }

.form-question {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.form-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--gc-glass-border);
  background: var(--gc-glass-bg);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 15px;
}

.form-choice:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.form-choice.selected {
  border-color: var(--gc-accent);
  background: rgba(59,130,246,0.08);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--gc-glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--gc-text-primary);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--gc-accent);
}

.form-input::placeholder {
  color: var(--gc-text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gc-text-secondary);
  margin-bottom: 6px;
}

.form-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.form-progress .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gc-glass-border);
  transition: background 0.3s;
}

.form-progress .dot.active {
  background: var(--gc-accent);
}

.form-progress .dot.done {
  background: var(--gc-accent);
  opacity: 0.5;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gc-text-secondary);
  font-size: 15px;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--gc-glass-border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 28px;
  opacity: 0.6;
}

.footer-brand span {
  font-size: 13px;
  color: var(--gc-text-muted);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--gc-text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gc-text-secondary); }

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--gc-text-muted);
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--gc-text-primary); }

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* ---- WhatsApp FAB ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* ---- Legal Pages ---- */
.legal-page {
  padding: 120px 24px 80px;
  max-width: 768px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-page .date {
  font-size: 13px;
  color: var(--gc-text-muted);
  margin-bottom: 48px;
}

.legal-page section {
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gc-text-primary);
}

.legal-page p, .legal-page li {
  font-size: 14px;
  color: var(--gc-text-secondary);
  line-height: 1.75;
}

.legal-page ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal-page li { margin-bottom: 4px; }

.legal-page a { color: var(--gc-accent); }
.legal-page a:hover { text-decoration: underline; }

.legal-contact {
  margin-top: 12px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--gc-glass-border);
  background: var(--gc-glass-bg);
}

.legal-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gc-glass-border);
  display: flex;
  gap: 24px;
}

.legal-back a {
  font-size: 13px;
  color: var(--gc-accent);
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 1;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gc-glass-border);
  }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; margin-bottom: 32px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; margin-top: 48px !important; }
  .hero-stat { flex: 1 1 40%; min-width: 120px; }
  .hero-stat .number { font-size: 1.75rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; justify-content: center; }
  .form-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .section { padding: 80px 0; }
  .brands-section { padding: 48px 0; }
  .form-section { padding: 80px 0; }
}

/* ---- Lottie Livestream ---- */
.livestream-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lottie-wrapper {
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(139,92,246,0.15));
}

.lottie-live-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.9);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ---- Brand Typography Styles ---- */
.brand-serif { font-family: Georgia, 'Times New Roman', serif; font-style: normal; font-size: 17px; letter-spacing: 0.02em; }
.brand-bold { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: 0.12em; }
.brand-lowercase { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 16px; letter-spacing: 0.04em; }
.brand-italic { font-family: Georgia, serif; font-style: italic; font-size: 17px; }
.brand-fun { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 0.02em; }
.brand-clean { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 0.01em; }

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: livePulse 1.5s ease-in-out infinite;
}

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

/* ---- LEGACY: Phone Mockup (kept for reference, not used) ---- */
.phone-frame-unused {
  width: 280px;
  height: 520px;
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1028 50%, #0f0f1a 100%);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.08);
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #0a0a0f;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  z-index: 3;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.9);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: livePulse 1.5s ease-in-out infinite;
}

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

.live-viewers {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.viewer-count {
  animation: viewerTick 3s ease-in-out infinite;
}

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

.live-video {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.creator-silhouette {
  width: 120px;
  height: 160px;
  opacity: 0.8;
}

.creator-silhouette svg {
  width: 100%;
  height: 100%;
}

/* Floating product card */
.product-card-float {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px;
  animation: floatProduct 3s ease-in-out infinite;
}

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

.product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6,182,212,0.3), rgba(139,92,246,0.3));
  flex-shrink: 0;
}

.product-info {
  flex: 1;
}

.product-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gc-pink);
  margin-top: 2px;
}

.product-cart {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gc-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Chat messages */
.live-chat {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.chat-msg {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  padding: 4px 10px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  width: fit-content;
  max-width: 90%;
  animation: chatFadeIn 0.5s ease-out both;
}

.chat-msg-1 { animation-delay: 0s; }
.chat-msg-2 { animation-delay: 1.5s; opacity: 0; }
.chat-msg-3 { animation-delay: 3s; opacity: 0; }
.chat-msg-4 { animation-delay: 4.5s; opacity: 0; }

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

.chat-user {
  color: rgba(6,182,212,0.8);
  font-weight: 600;
  margin-right: 4px;
}

.live-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  z-index: 3;
}

.live-input {
  flex: 1;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.3);
}

.live-share {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
