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

:root {
  --electric-blue: #45b0fc;
  --vibrant-gold: #ff8c00;
  --navy: #001f3f;
  --dark-blue: #1a1f3a;
  --white: #ffffff;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-400: #86868b;
  --gray-600: #515154;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Animation */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.speed-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
  opacity: 0.3;
  animation: speedLine 3s ease-in-out infinite;
}

.speed-line-1 {
  top: 20%;
  width: 60%;
  left: -60%;
  animation-delay: 0s;
}

.speed-line-2 {
  top: 50%;
  width: 80%;
  left: -80%;
  animation-delay: 1s;
}

.speed-line-3 {
  top: 80%;
  width: 70%;
  left: -70%;
  animation-delay: 2s;
}

@keyframes speedLine {
  0% {
    transform: translateX(0) skewX(-45deg);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(200vw) skewX(-45deg);
    opacity: 0;
  }
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--electric-blue), transparent);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--vibrant-gold), transparent);
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  backdrop-filter: blur(20px);
  background: rgba(10, 14, 39, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--electric-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-200);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  z-index: 1;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  margin-bottom: 4rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.title-line:nth-child(1) {
  animation-delay: 0.1s;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.title-line:nth-child(3) {
  animation-delay: 0.5s;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gray-200);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
  opacity: 0;
}

/* Glassmorphic CTA Card */
.glass-cta-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 122, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-content {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  position: relative;
  flex: 1;
  min-width: 280px;
  padding: 1.75rem 2.5rem;
  border-radius: 20px;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn span:first-child {
  font-size: 1.2rem;
}

.btn-subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
}

.cta-primary {
  background: linear-gradient(135deg, var(--vibrant-gold), #ffd700);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255, 199, 44, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 199, 44, 0.6);
}

.cta-secondary {
  background: rgba(0, 122, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--electric-blue);
  box-shadow: 0 4px 20px rgba(0, 122, 255, 0.2);
}

.cta-secondary:hover {
  background: rgba(0, 122, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover .btn-glow {
  left: 100%;
}

/* Features Section */
.features {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 122, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 122, 255, 0.2);
}

.feature-card {
  text-align: center;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.feature-card[data-index="0"] {
  animation-delay: 0.1s;
}

.feature-card[data-index="1"] {
  animation-delay: 0.3s;
}

.feature-card[data-index="2"] {
  animation-delay: 0.5s;
}

.card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 122, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--electric-blue);
  transition: transform 0.3s ease;
}

.glass-card:hover .feature-icon {
  background: rgba(0, 122, 255, 0.2);
  transform: scale(1.1);
}

.glass-card:hover .feature-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-description {
  color: var(--gray-200);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Value Proposition Sections */
.value-prop {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
}

.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: center;
}

.value-prop-grid.reverse {
  direction: rtl;
}

.value-prop-grid.reverse > * {
  direction: ltr;
}

.value-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 122, 255, 0.1);
  border: 1px solid rgba(0, 122, 255, 0.3);
  border-radius: 50px;
  color: var(--electric-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.value-description {
  font-size: 1.2rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.value-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-200);
}

.visual-card {
  padding: 3rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.visual-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.visual-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.visual-icon {
  font-size: 2rem;
  filter: grayscale(0);
}

.value-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--gray-200);
}

.feature-check {
  width: 32px;
  height: 32px;
  background: rgba(0, 122, 255, 0.2);
  border: 1px solid var(--electric-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
.footer {
  position: relative;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand p {
  color: var(--gray-400);
  margin-top: 0.5rem;
}

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

.footer-links a {
  color: var(--gray-200);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--electric-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* Demo Section */
.demo-section {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
}

.demo-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  flex: 1;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: var(--gray-200);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-gold));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.toggle-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.demo-view {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.demo-view.active {
  display: block;
}

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

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.demo-card {
  position: relative;
  padding: 2.5rem;
  min-height: 400px;
}

.demo-step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 122, 255, 0.1);
  border: 1px solid rgba(0, 122, 255, 0.3);
  border-radius: 50px;
  color: var(--electric-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.demo-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
}

/* Campaign Form */
.campaign-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--gray-200);
  font-weight: 600;
}

.glass-input {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.glass-input:focus {
  outline: none;
  border-color: var(--electric-blue);
  background: rgba(255, 255, 255, 0.08);
}

.glass-input::placeholder {
  color: var(--gray-400);
}

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

.demo-btn {
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--vibrant-gold), #ffd700);
  border: none;
  border-radius: 12px;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 199, 44, 0.5);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Matching Visual */
.matching-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.matching-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ai-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 122, 255, 0.1);
  border: 2px solid var(--electric-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.ai-icon svg {
  width: 40px;
  height: 40px;
  color: var(--electric-blue);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(0, 122, 255, 0);
  }
}

.matching-text {
  font-size: 1.1rem;
  color: var(--electric-blue);
  font-weight: 600;
}

.matching-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.matching-visual.hidden {
  display: none;
}
.matching-status.hidden {
  display: none;
}
.channel-match {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.5s ease-out forwards;
}

.channel-match[data-delay="0"] {
  animation-delay: 0.3s;
}

.channel-match[data-delay="1"] {
  animation-delay: 0.6s;
}

.channel-match[data-delay="2"] {
  animation-delay: 0.9s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.channel-avatar {
  width: 48px;
  height: 48px;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.channel-info {
  flex: 1;
}

.channel-name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.channel-stats {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.match-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vibrant-gold);
}

.matching-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 12px;
  color: #4ade80;
  font-weight: 600;
  margin-top: 1rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

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

/* Analytics */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.metric-change {
  font-size: 0.9rem;
  font-weight: 600;
}

.metric-change.positive {
  color: #4ade80;
}

.metric-change.neutral {
  color: var(--gray-400);
}

.chart-container {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.chart-header {
  font-size: 0.9rem;
  color: var(--gray-200);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 100px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--white), var(--vibrant-gold));
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
  animation: growBar 1s ease-out forwards;
  transform-origin: bottom;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.chart-bar:hover {
  opacity: 0.8;
  transform: scaleY(1.05);
}

/* Channel Owner View */
.channel-dashboard {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.channel-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}

.channel-avatar-large {
  width: 80px;
  height: 80px;
  background: rgba(0, 122, 255, 0.1);
  border: 2px solid var(--electric-blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.channel-name-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.channel-subscribers {
  color: var(--gray-400);
  font-size: 1rem;
}

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

.stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat-icon {
  font-size: 2rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Campaign List */
.campaign-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.campaign-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.campaign-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.campaign-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.campaign-details {
  flex: 1;
}

.campaign-name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.campaign-meta {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.campaign-status {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.campaign-status.active {
  background: rgba(0, 255, 0, 0.1);
  color: #4ade80;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.campaign-status.pending {
  background: rgba(255, 199, 44, 0.1);
  color: var(--vibrant-gold);
  border: 1px solid rgba(255, 199, 44, 0.2);
}

/* Earnings */
.earnings-highlight {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 199, 44, 0.05);
  border: 1px solid rgba(255, 199, 44, 0.2);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.earnings-amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.earnings-period {
  color: var(--gray-200);
  font-size: 1rem;
}

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

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  color: var(--gray-200);
}

.breakdown-value {
  font-weight: 700;
  color: var(--white);
}

.earnings-chart {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.earnings-bar {
  padding: 1rem;
  background: linear-gradient(90deg, rgba(0, 122, 255, 0.2), rgba(255, 199, 44, 0.2));
  border-left: 3px solid var(--electric-blue);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: expandBar 1s ease-out forwards;
  transform-origin: left;
}

@keyframes expandBar {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.earnings-bar:hover {
  transform: translateX(5px);
  background: linear-gradient(90deg, rgba(0, 122, 255, 0.3), rgba(255, 199, 44, 0.3));
}

.withdraw-btn {
  background: linear-gradient(135deg, var(--electric-blue), #0066cc);
  color: var(--white);
}

.withdraw-btn:hover {
  box-shadow: 0 8px 30px rgba(0, 122, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .glass-cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-content {
    flex-direction: column;
  }

  .cta-btn {
    min-width: 100%;
  }

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

  .value-prop-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .value-prop-grid.reverse {
    direction: ltr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  /* Responsive styles for demo section */
  .demo-toggle {
    flex-direction: column;
    max-width: 100%;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .value-title {
    font-size: 2rem;
  }

  .glass-card {
    padding: 2rem 1rem;
  }
  .demo-section {
    padding: 8rem 0.8rem;
  }
  .features {
    padding: 8rem 0.8rem;
  }
  .value-prop {
    padding: 8rem 0.8rem;
  }
}


#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Spinner (Simple CSS Circle Spinner) */
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Show overlay when active */
#loadingOverlay.active {
  opacity: 1;
  pointer-events: all;
}



/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 15, 47, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  position: relative;
  max-width: 90vw;
  width: 100%;
  max-height: 90vh;
  background: rgba(33, 40, 61, 0.08);
  backdrop-filter: blur(30px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 122, 255, 0.1);
  border: 1px solid rgba(0, 122, 255, 0.3);
  border-radius: 50px;
  color: var(--electric-blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--electric-blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.modal-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.title-word {
  display: block;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.title-word:nth-child(1) {
  animation-delay: 0.1s;
}

.title-word:nth-child(2) {
  background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.3s;
}

.modal-subtitle {
  font-size: 1.1rem;
  color: var(--gray-200);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
  opacity: 0;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.7s forwards;
  opacity: 0;
  max-width: 700px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-row:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
  border-color: rgba(0, 122, 255, 0.2);
}

.feature-icon-modal {
  width: 56px;
  height: 56px;
  background: rgba(0, 122, 255, 0.1);
  border: 1px solid rgba(0, 122, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-row:hover .feature-icon-modal {
  background: rgba(0, 122, 255, 0.2);
  transform: scale(1.1);
}

.feature-icon-modal svg {
  width: 28px;
  height: 28px;
  color: var(--electric-blue);
}

.feature-text-modal h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.feature-text-modal p {
  font-size: 0.95rem;
  color: var(--gray-200);
}

.modal-cta {
  animation: fadeInUp 0.6s ease-out 0.9s forwards;
  opacity: 0;
}


.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, var(--vibrant-gold), #ffd700);
    border: none;
    border-radius: 16px;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 199, 44, 0.5);
}

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

.contact-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.contact-btn:hover svg {
  transform: scale(1.1);
}

.advertise-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, var(--electric-blue), #0066cc);
    border: none;
    border-radius: 16px;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.advertise-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(44, 146, 255, 0.5);
}

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

.advertise-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.advertise-btn:hover svg {
  transform: scale(1.1);
}

.contact-notice {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 1rem;
}


.modal-countdown {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(255, 199, 44, 0.05));
  border: 1px solid rgba(0, 122, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  animation: fadeInUp 0.6s ease-out 1.1s forwards;
  opacity: 0;
}

.countdown-label {
  font-size: 0.95rem;
  color: var(--gray-200);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.countdown-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 70px;
}

.countdown-unit {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-separator {
  font-size: 2rem;
  color: var(--gray-400);
  margin: 0 0.5rem;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-container {
    padding: 2.5rem 2rem;
    border-radius: 24px;
  }

  .modal-title {
    font-size: 2rem;
  }

   .contact-btn {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .countdown-value {
    font-size: 2rem;
    min-width: 50px;
  }

  .countdown-separator {
    font-size: 1.5rem;
    margin: 0 0.25rem;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 1rem;
  }

  .modal-container {
    padding: 2rem 1.5rem;
    max-width: 100vw;
  }

  .modal-close {
    width: 36px;
    height: 36px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .feature-row {
    padding: 1rem;
    gap: 1rem;
  }

  .feature-icon-modal {
    width: 48px;
    height: 48px;
  }

  .feature-text-modal h3 {
    font-size: 1rem;
  }

  .feature-text-modal p {
    font-size: 0.9rem;
  }

  .contact-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    gap: 0.75rem;
  }

  .contact-btn svg {
    width: 20px;
    height: 20px;
  }
}