/* =========================================================
   VIRALEALO.COM — OFFICIAL STYLESHEET
   Theme: Vibrant Gradient AI Obsidian (#0a0712)
   Accent Colors: Purple (#7c3aed), Magenta (#ec4899), Orange (#f97316)
   ========================================================= */

:root {
  --bg-dark: #0a0712;
  --bg-card: #140e24;
  --bg-card-hover: #1c1433;
  --primary-purple: #7c3aed;
  --primary-magenta: #ec4899;
  --primary-orange: #f97316;
  --gradient-main: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
  --gradient-btn: linear-gradient(90deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
  --border-glow: rgba(124, 58, 237, 0.35);
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --font-main: 'Outfit', sans-serif;
  --font-accent: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-purple: 0 10px 30px -5px rgba(124, 58, 237, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 20% 15%, rgba(124, 58, 237, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 65%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(249, 115, 22, 0.08) 0%, transparent 40%);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 90px 0;
}

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

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-kicker {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary-magenta);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

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

/* Header & Nav */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 7, 18, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img,
.app-logo-small,
.dash-logo img,
.footer-logo img,
img[src*="logo-viralealo"] {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7)) brightness(1.35) contrast(1.4) !important;
  transition: var(--transition);
}

.app-logo-small {
  height: 28px !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link i {
  color: var(--primary-magenta);
}

.nav-link:hover {
  color: var(--primary-orange);
  transform: translateY(-2px);
}

.nav-btn-portal {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glow);
  color: var(--text-light);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.nav-btn-portal:hover {
  background: var(--gradient-btn);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-purple);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border-glow);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c084fc;
  margin-bottom: 25px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 25px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-subtitle mark {
  background: rgba(236, 72, 153, 0.2);
  color: var(--primary-magenta);
  padding: 2px 8px;
  border-radius: 4px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gradient {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: var(--shadow-purple);
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

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

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-accent);
  font-weight: 800;
  color: var(--text-light);
}

.stat-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
}

/* Step Workflow */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-purple);
  box-shadow: var(--shadow-purple);
}

.step-card.highlight-step {
  border-color: var(--primary-magenta);
  background: linear-gradient(180deg, #1d1238 0%, var(--bg-card) 100%);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 900;
  opacity: 0.15;
  color: #fff;
}

.step-icon {
  font-size: 2.2rem;
  color: var(--primary-magenta);
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.3rem;
  font-family: var(--font-accent);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Interactive Demo Simulator */
.demo-section {
  background: radial-gradient(circle at center, #180d33 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
}

.demo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-info .section-title {
  text-align: left;
}

.demo-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.demo-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.demo-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.demo-features-list i {
  color: #22c55e;
  font-size: 1.2rem;
}

/* Phone Simulator Mockup */
.phone-mockup {
  width: 320px;
  height: 580px;
  background: #000;
  border-radius: 40px;
  border: 4px solid #333;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(124, 58, 237, 0.3);
  padding: 15px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-speaker {
  width: 80px;
  height: 6px;
  background: #222;
  border-radius: 4px;
  margin: 0 auto 10px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.app-logo-small {
  height: 24px;
}

.notification-badge {
  font-size: 0.65rem;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 700;
}

.video-preview-box {
  height: 250px;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-video-overlay {
  text-align: center;
}

.play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
  margin-bottom: 10px;
}

.video-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.video-meta-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 12px;
  margin: 10px 0;
}

.video-meta-box h4 {
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 4px;
}

.hashtags {
  font-size: 0.7rem;
  color: var(--primary-magenta);
}

.approval-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-approve {
  background: #22c55e;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-approve:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
}

.success-message {
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 15px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
}

.plan-card.popular {
  border-color: var(--primary-magenta);
  background: linear-gradient(180deg, #221247 0%, var(--bg-card) 100%);
  transform: scale(1.03);
  box-shadow: var(--shadow-purple);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 20px;
}

.plan-header h3 {
  font-size: 1.6rem;
  font-family: var(--font-accent);
  margin-bottom: 8px;
}

.plan-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.plan-price {
  font-size: 3.2rem;
  font-family: var(--font-accent);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 25px;
}

.plan-price .currency {
  font-size: 1.8rem;
  vertical-align: top;
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.plan-features i {
  color: #22c55e;
  margin-right: 8px;
}

/* Single Plan Grid & Website Offer */
.single-plan-grid {
  max-width: 600px;
  margin: 50px auto 0;
}

.main-offer-card {
  padding: 50px 40px !important;
}

.website-offer-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
}

.website-offer-box {
  background: var(--bg-card);
  border: 1px solid var(--primary-magenta);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-purple);
}

.web-offer-text h2 {
  font-size: 2.2rem;
  font-family: var(--font-accent);
  margin: 10px 0 15px;
}

.web-price-tag {
  margin: 20px 0;
}

.web-price-tag strong {
  font-size: 3rem;
  font-family: var(--font-accent);
  color: var(--primary-orange);
}

.web-price-tag span {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.web-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.web-features-list i {
  color: #22c55e;
  margin-right: 8px;
}

@media (max-width: 850px) {
  .website-offer-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 28px;
}

.faq-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-card h4 i {
  color: var(--primary-magenta);
}

.faq-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.main-footer {
  background: #050309;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.4));
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 350px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  color: var(--primary-magenta);
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =========================================================
   DASHBOARD / CLIENT PORTAL STYLES
   ========================================================= */
.dashboard-body {
  background: var(--bg-dark);
}

.dash-header {
  background: rgba(10, 7, 18, 0.95);
  border-bottom: 1px solid var(--border-glow);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.dash-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.dash-logo img {
  height: 40px;
}

.dash-badge {
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
}

.dash-user-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

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

.user-plan {
  font-size: 0.75rem;
  color: var(--primary-magenta);
}

.btn-logout {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.dash-container {
  padding-top: 40px;
  padding-bottom: 80px;
}

.dash-welcome {
  margin-bottom: 30px;
}

.dash-welcome h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.dash-welcome p {
  color: var(--text-muted);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-icon.purple { background: rgba(124, 58, 237, 0.15); color: var(--primary-purple); }
.stat-icon.green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.stat-icon.orange { background: rgba(249, 115, 22, 0.15); color: var(--primary-orange); }
.stat-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }

.stat-data h3 {
  font-size: 1.6rem;
  font-family: var(--font-accent);
  font-weight: 800;
}

.stat-data span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Dashboard Tabs */
.dash-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  flex-wrap: wrap;
}

.dash-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 20px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.dash-tab.active, .dash-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.dash-tab.active {
  background: var(--gradient-btn);
  color: #fff;
}

/* Cards Grid for Videos */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.dash-video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.card-video-box {
  position: relative;
  height: 380px;
  background: #000;
}

.card-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
}

.card-details {
  padding: 22px;
}

.card-meta-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-details h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.v-caption {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.v-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-approve-lg {
  background: #22c55e;
  color: #000;
  font-weight: 900;
  border: none;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-approve-lg:hover {
  background: #16a34a;
  color: #fff;
}

.btn-reject-lg {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* History Table & Uploader */
.history-table-box, .uploader-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.history-table th, .history-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-success {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.uploader-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--font-main);
}

.dropzone-box {
  border: 2px dashed var(--primary-purple);
  background: rgba(124, 58, 237, 0.05);
  padding: 40px;
  text-align: center;
  border-radius: 16px;
  cursor: pointer;
}

.dropzone-icon {
  font-size: 2.5rem;
  color: var(--primary-magenta);
  margin-bottom: 10px;
}

.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.net-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.net-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.net-icon { font-size: 2rem; }
.net-icon.tiktok { color: #25f4ee; }
.net-icon.instagram { color: #ec4899; }
.net-icon.youtube { color: #ef4444; }

.net-status {
  color: #22c55e;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 980px) {
  .hero-title { font-size: 2.5rem; }
  .demo-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 7, 18, 0.98);
    flex-direction: column;
    padding: 25px;
    border-bottom: 1px solid var(--border-glow);
    gap: 18px;
  }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: block; }
}
