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

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #C20000;
  --red-light: #E60000;
  --red-dark: #9B0000;
  --dark: #000000;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: var(--dark);
  backdrop-filter: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-logo img {
  height: 56px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--red);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.lang-toggle button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: var(--red);
  color: white;
  border-radius: 20px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* ===== HERO LOGO + MOTTO ===== */
.hero-logo {
  margin-top: 0;
  padding-top: 72px;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-logo-inner {
  padding: 60px 48px;
}

.hero-logo-img {
  width: 420px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 32px;
}

.hero-logo h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-logo h1 span {
  color: var(--red);
}

.hero-motto-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-scroll-hint {
  margin-top: 48px;
  animation: floatDown 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== DUO SECTION (Audience & Broadcaster cards) ===== */
.duo-section {
  background: var(--dark);
  padding: 40px 48px 160px;
}

.duo-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.duo-card {
  background: #1A1A1A;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px;
  display: block;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.duo-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(194,0,0,0.3);
}

.duo-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.duo-card:hover::after {
  transform: scaleX(1);
}

.duo-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.duo-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 16px;
}

.duo-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.duo-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  flex-grow: 1;
}

.duo-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  height: 280px;
}

.duo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.duo-card:hover .duo-image img {
  transform: scale(1.03);
}

.duo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

.duo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.duo-card:hover .duo-link {
  color: var(--red);
}

.duo-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s;
}

.duo-card:hover .duo-arrow {
  background: var(--red);
  border-color: var(--red);
  transform: translateX(4px);
}

/* ===== HERO SPLIT SCREEN (kept for legacy) ===== */
.hero-split {
  margin-top: 0;
  padding-top: 72px;
  height: 100vh;
  position: relative;
  background: url('../audience.png') center center / cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-split::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease;
}

.hero-panel:hover {
  background: rgba(0, 0, 0, 0.15);
}

/* Vertical divider between panels */
.hero-panel:first-child::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.25);
  z-index: 20;
}

.hero-panel .hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 80px 40px 40px;
  z-index: 10;
  transition: padding-bottom 0.3s ease;
}

.hero-panel:hover .hero-overlay {
  padding-bottom: 48px;
}

.hero-panel .hero-label {
  color: white;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-panel .hero-sublabel {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 8px;
  font-weight: 400;
}

.hero-panel .hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: transform 0.3s;
}

.hero-panel:hover .hero-arrow {
  transform: translateX(4px);
}

/* Hero panel red accent on hover */
.hero-panel .hero-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 20;
}

.hero-panel:hover .hero-accent {
  transform: scaleX(1);
}

/* ===== VALUE PROPOSITION ===== */
.value-strip {
  background: #1A1A1A;
  padding: 60px 48px;
  text-align: center;
}

.value-strip h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
}

.value-strip h2 span {
  color: var(--red);
}

.value-strip p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FEATURE CARDS ===== */
.features-section {
  padding: 120px 48px;
  background: var(--dark);
}

.features-section .features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: white;
}

.features-section h2 span {
  color: var(--red);
}

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

.feature-card {
  background: #1A1A1A;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.feature-card .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(194,0,0,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--red);
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: #1A1A1A;
  padding: 30px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta .cta-logo {
  height: 90px;
  width: auto;
  margin-bottom: 20px;
}

.footer-cta .cta-tagline {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(194, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(194, 0, 0, 0.4);
}

.footer-cta .cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer .footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.site-footer .footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.site-footer .footer-links a:hover {
  color: white;
}

.site-footer .footer-copy {
  font-size: 12px;
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  margin-top: 0;
  padding: 140px 48px 60px;
  background: var(--dark);
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
}

.page-hero h1 span {
  color: var(--red);
}

.page-hero p {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 48px;
}

.how-it-works h2 span {
  color: var(--red);
}

.steps-row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.step-item {
  flex: 1;
  text-align: center;
}

.step-item .step-number {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: var(--gray);
}

.step-connector {
  display: flex;
  align-items: center;
  color: var(--red);
  font-size: 24px;
  padding-top: 0;
  margin-top: 24px;
}

/* ===== SCENE SECTIONS (Detail Pages) ===== */
.scene-section {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scene-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.scene-section:nth-child(even) {
  background: var(--light-gray);
  max-width: 100%;
  padding-left: calc((100% - 1100px) / 2 + 48px);
  padding-right: calc((100% - 1100px) / 2 + 48px);
}

.scene-section.scene-dark {
  background: var(--dark);
  max-width: 100%;
  padding-left: calc((100% - 1100px) / 2 + 48px);
  padding-right: calc((100% - 1100px) / 2 + 48px);
}

.scene-section.scene-dark:nth-child(even) {
  background: #1A1A1A;
}

.scene-dark .section-header h2 { color: white; }
.scene-dark .section-header p { color: rgba(255,255,255,0.6); }
.scene-dark .mod-card { background: #1A1A1A; border: 3px solid rgba(255,255,255,0.15); }
.scene-dark .mod-card .mod-msg { color: rgba(255,255,255,0.7); }
.scene-dark .mod-card.blocked .mod-msg { color: rgba(255,255,255,0.4); }
.scene-dark .side-panel .panel-title { color: white; }
.scene-dark .side-panel .panel-subtitle { color: rgba(255,255,255,0.5); }
.scene-dark .highlight-card { background: #1A1A1A; border-left-color: var(--red); box-shadow: none; }
.scene-dark .highlight-card .hl-text { color: rgba(255,255,255,0.8); }
.scene-dark .highlight-card .hl-reactions { color: rgba(255,255,255,0.85); }
.scene-dark .highlight-card .hl-reactions span { color: rgba(255,255,255,0.5); }
.scene-dark .side-panel-card { background: #1A1A1A; box-shadow: none; border: 3px solid rgba(255,255,255,0.15); }
.scene-dark .side-panel-card .spc-body { background: rgba(255,255,255,0.02); }
.scene-dark .spc-item { background: #222222; }
.scene-dark .spc-item .spc-text { color: rgba(255,255,255,0.8); }
.scene-dark .spc-item .spc-votes { color: rgba(255,255,255,0.5); }
.scene-dark .ai-feature-card { background: #1A1A1A; box-shadow: none; border: 3px solid rgba(255,255,255,0.15); }
.scene-dark .ai-feature-card .afc-text h4 { color: white; }
.scene-dark .ai-feature-card .afc-text p { color: rgba(255,255,255,0.5); }
.scene-dark .ai-feature-card .afc-icon { background: rgba(194,0,0,0.2); }
.scene-dark .side-panel .stat-row .stat-val { color: white; }
.scene-dark .side-panel .stat-row .stat-name { color: rgba(255,255,255,0.5); }
.scene-dark .side-panel .stat-row .stat-bar-container { background: rgba(255,255,255,0.1); }
.scene-dark .side-panel .stat-row .stat-bar-fill.away { background: rgba(255,255,255,0.4); }
.scene-dark .stat-summary-card { background: #222222; }
.scene-dark .stat-summary-card .stat-label { color: rgba(255,255,255,0.5); }

.scene-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.scene-section .section-header .scene-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.scene-section .section-header h2 {
  font-size: 32px;
  font-weight: 800;
}

.scene-section .section-header h2 span {
  color: var(--red);
}

.scene-section .section-header p {
  font-size: 16px;
  color: var(--gray);
  margin-top: 8px;
}

/* Scene content layout: phone + side panel */
.scene-layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: center;
}

.scene-layout.reverse {
  flex-direction: row-reverse;
}

/* ===== PHONE MOCKUP (reused from presentation) ===== */
.phone-mockup {
  width: 280px;
  height: 520px;
  background: var(--dark);
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.scene-dark .phone-mockup {
  background: #3a3a50;
  border: 2px solid rgba(255,255,255,0.15);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-header {
  background: var(--red);
  color: white;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px 24px 0 0;
}

.phone-header .header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-header .header-title {
  font-weight: 700;
  font-size: 15px;
}

.phone-header .header-online {
  font-weight: 400;
  font-size: 11px;
  opacity: 0.8;
}

.phone-header .header-menu {
  font-weight: 600;
  font-size: 13px;
  opacity: 0.9;
}

.phone-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.phone-input-bar {
  padding: 10px 14px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-input-bar .input-field {
  flex: 1;
  background: var(--light-gray);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--gray);
}

.phone-input-bar .send-btn {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-input-bar .send-btn svg {
  width: 14px;
  height: 14px;
  fill: white;
}

/* Chat messages */
.chat-msg {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.4;
  max-width: 85%;
}

.chat-msg .username {
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 2px;
}

.chat-msg.user1 { background: #FEE2E2; }
.chat-msg.user1 .username { color: var(--red); }
.chat-msg.user2 { background: var(--light-gray); }
.chat-msg.user2 .username { color: var(--dark); }
.chat-msg.user3 { background: #DBEAFE; }
.chat-msg.user3 .username { color: #1D4ED8; }

/* AI chat */
.ai-msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  max-width: 85%;
}

.ai-msg.user-msg {
  background: #FEE2E2;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-msg.bot-msg {
  background: var(--light-gray);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ai-msg .ai-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 3px;
}

/* Question items */
.q-item {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 10px 12px;
}

.q-item .q-user {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 3px;
}

.q-item .q-text {
  font-size: 11px;
  color: var(--dark);
  line-height: 1.4;
}

.q-item .q-votes {
  font-size: 9px;
  color: var(--gray);
  margin-top: 4px;
}

/* Stat rows */
.stat-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-row .stat-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  width: 32px;
  text-align: center;
}

.stat-row .stat-bar-container {
  flex: 1;
  height: 8px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.stat-row .stat-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s ease;
  width: 0;
}

.stat-row .stat-bar-fill.home { background: var(--red); }
.stat-row .stat-bar-fill.away { background: var(--dark); }

.stat-row .stat-name {
  font-size: 10px;
  color: var(--gray);
  width: 70px;
  text-align: center;
}

/* ===== SIDE PANELS (for detail pages) ===== */
.side-panel {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 10px;
}

.side-panel .panel-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.side-panel .panel-subtitle {
  font-size: 13px;
  color: var(--gray);
  margin-top: -8px;
}

/* Highlight cards */
.highlight-card {
  background: white;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-left: 4px solid var(--red);
}

.highlight-card .hl-user {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}

.highlight-card .hl-text {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.4;
}

.highlight-card .hl-reactions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 12px;
}

.highlight-card .hl-reactions span {
  color: var(--gray);
  font-size: 11px;
}

/* Side panel cards (questions, stats) */
.side-panel-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.side-panel-card .spc-header {
  background: var(--red);
  color: white;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
}

.side-panel-card .spc-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spc-item {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 12px 14px;
}

.spc-item .spc-user {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}

.spc-item .spc-text {
  font-size: 12px;
  color: var(--dark);
  line-height: 1.4;
}

.spc-item .spc-votes {
  font-size: 10px;
  color: var(--gray);
  margin-top: 6px;
}

/* Stats side panel */
.stat-summary-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}

.stat-summary-card .stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
}

.stat-summary-card .stat-label {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
  line-height: 1.3;
}

/* AI feature cards */
.ai-feature-card {
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-feature-card .afc-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: #FEE2E2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-feature-card .afc-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.ai-feature-card .afc-text p {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

/* ===== BROADCASTER SCENES ===== */
/* MacBook Laptop */
.macbook-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.macbook-lid {
  background: #2d2d2d;
  border-radius: 16px 16px 0 0;
  padding: 12px 12px 0;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
}

.macbook-camera {
  width: 8px;
  height: 8px;
  background: #555;
  border-radius: 50%;
  margin: 0 auto 8px;
}

.macbook-screen {
  background: #000;
  border-radius: 4px 4px 0 0;
  padding: 3px;
}

.macbook-base {
  background: linear-gradient(to bottom, #c0c0c0, #a8a8a8);
  height: 14px;
  border-radius: 0 0 8px 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.macbook-notch {
  width: 180px;
  height: 6px;
  background: linear-gradient(to bottom, #b0b0b0, #999);
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
}

/* Dashboard check items (below MacBook) */
.dashboard-checks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.dashboard-check-icon {
  color: var(--red);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pc-inner {
  display: flex;
  background: white;
  border-radius: 2px;
  overflow: hidden;
  height: 460px;
}

.pc-sidebar {
  width: 160px;
  background: #f5f5f5;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-shrink: 0;
}

.sidebar-nav {
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-item {
  font-size: 12px;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--gray);
  cursor: pointer;
}

.sidebar-item.active {
  background: rgba(194,0,0,0.12);
  color: var(--red);
  font-weight: 600;
}

.pc-shows-panel {
  width: 240px;
  border-right: 1px solid #e5e7eb;
  padding: 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.shows-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.show-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  border: 2px solid transparent;
}

.show-card.active-show {
  border-color: var(--red);
  background: #FEF2F2;
}

.show-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.show-badge.live { background: var(--red); color: white; }
.show-badge.upcoming { background: #e5e7eb; color: var(--gray); }

.show-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.show-meta {
  font-size: 10px;
  color: var(--gray);
  margin-top: 2px;
}

.pc-room-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-toolbar {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 16px;
  background: #fafafa;
}

.pc-tab {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.pc-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
  font-weight: 700;
}

.pc-toolbar-right {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.pc-btn-outline {
  font-size: 10px;
  padding: 5px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: var(--gray);
  font-weight: 500;
  cursor: pointer;
}

.pc-btn-primary {
  font-size: 10px;
  padding: 5px 12px;
  background: var(--red);
  color: white;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.room-content {
  padding: 16px;
  text-align: left;
}

.room-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.room-step {
  font-size: 12px;
  color: var(--dark);
  padding: 9px 12px;
  background: var(--light-gray);
  border-radius: 6px;
  margin-bottom: 5px;
}

.room-step.add-more {
  background: transparent;
  border: 1px dashed #d1d5db;
  color: var(--gray);
  text-align: center;
  cursor: pointer;
  font-weight: 500;
}

.show-card.add-room {
  background: transparent;
  border: 2px dashed #d1d5db;
  color: var(--gray);
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px;
  padding: 14px;
}

/* Legacy PC stand (unused) */

/* ===== MODERATION SECTION ===== */
.mod-section {
  text-align: center;
}

.shield-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.mod-demo {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.mod-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 24px;
  width: 240px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.mod-card.safe { border-left: 4px solid #10B981; }
.mod-card.blocked { border-left: 4px solid var(--red); }
.mod-card .mod-status { font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.mod-card.safe .mod-status { color: #10B981; }
.mod-card.blocked .mod-status { color: var(--red); }
.mod-card .mod-msg { font-size: 13px; color: var(--dark); line-height: 1.4; }
.mod-card.blocked .mod-msg { text-decoration: line-through; color: var(--gray); }

/* ===== ANALYTICS SECTION ===== */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.analytics-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  text-align: center;
}

.analytics-card .stat-icon { font-size: 28px; margin-bottom: 10px; }
.analytics-card .stat-number { font-size: 32px; font-weight: 800; color: var(--red); }
.analytics-card .stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; font-weight: 500; }

.insight-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.insight-card {
  flex: 1;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.insight-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.insight-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  max-width: 100%;
  padding: 80px calc((100% - 800px) / 2 + 48px);
  background: var(--dark);
}

.about-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.about-content h2 span {
  color: var(--red);
}

.about-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: #1A1A1A;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--red);
}

.value-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-layout-centered {
  max-width: 600px;
  grid-template-columns: 1fr;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-form h2 span {
  color: var(--red);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--light-gray);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .error-msg {
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--red);
}

.form-group.has-error .error-msg {
  display: block;
}

.form-success {
  display: none;
  background: #D1FAE5;
  color: #065F46;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.contact-info h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-info h2 span {
  color: var(--red);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.info-item .info-icon {
  width: 44px;
  height: 44px;
  background: #FEE2E2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 13px;
  color: var(--gray);
}

/* ===== EMOJI REACTIONS BAR ===== */
.reactions-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 6px 10px;
  border-top: 1px solid #eee;
  font-size: 18px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes scanMove {
  0%, 100% { top: 0; }
  50% { top: calc(100% - 3px); }
}

/* Animated counters */
.counter-animate {
  font-variant-numeric: tabular-nums;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .pc-inner {
    height: auto;
  }
  .pc-shows-panel {
    width: 200px;
  }
}

@media (max-width: 992px) {
  .dashboard-checks {
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scene-layout {
    flex-direction: column;
    align-items: center;
  }

  .scene-layout.reverse {
    flex-direction: column;
  }

  .side-panel {
    width: 100%;
    max-width: 400px;
  }

  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-row {
    flex-direction: column;
  }

  .mod-demo {
    flex-wrap: wrap;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .pc-inner {
    flex-direction: column;
    height: auto;
  }

  .pc-sidebar {
    width: 100%;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .sidebar-nav {
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .pc-shows-panel {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .show-card {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .navbar-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-logo h1 {
    font-size: 32px;
  }

  .hero-logo-img {
    width: 280px;
  }

  .hero-motto-sub {
    font-size: 15px;
  }

  .duo-section {
    padding: 30px 20px 60px;
  }

  .duo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .duo-card {
    padding: 28px;
  }

  .duo-title {
    font-size: 30px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .hero-panel {
    min-height: 50vh;
  }

  .hero-panel:first-child::after {
    top: auto;
    bottom: 0;
    left: 15%;
    right: 15%;
    width: auto;
    height: 1px;
  }

  .hero-panel .hero-label {
    font-size: 22px;
  }

  .value-strip {
    padding: 40px 20px;
  }

  .value-strip h2 {
    font-size: 24px;
  }

  .features-section {
    padding: 60px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    padding: 60px 20px;
  }

  .page-hero {
    padding: 80px 20px 50px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .how-it-works {
    padding: 60px 20px;
  }

  .steps-row {
    flex-direction: column;
    gap: 24px;
  }

  .step-connector {
    display: none;
  }

  .scene-section {
    padding: 60px 20px;
  }

  .scene-section:nth-child(even) {
    padding-left: 20px;
    padding-right: 20px;
  }

  .phone-mockup {
    width: 240px;
    height: 440px;
  }

  .mod-demo {
    flex-direction: column;
    align-items: center;
  }

  .mod-card {
    width: 100%;
    max-width: 320px;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 60px 20px;
  }

  .contact-layout {
    padding: 60px 20px;
  }

  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-panel .hero-overlay {
    padding: 40px 20px 30px;
  }

  .hero-panel .hero-label {
    font-size: 18px;
  }

  .hero-panel .carousel-slide .scene-preview {
    transform: scale(0.35);
  }

  .phone-mockup {
    width: 220px;
    height: 400px;
  }

  .features-section h2,
  .how-it-works h2 {
    font-size: 22px;
  }
}
