/* ===================================
   CSS Variables - Exact match to React
   =================================== */
:root {
  /* Leapo Brand Colors */
  --color-navy: oklch(0.35 0.05 250);
  --color-blue: oklch(0.65 0.15 250);
  --color-orange: oklch(0.7 0.15 60);
  
  /* Design System Colors */
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0.007 285.885);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0.007 285.885);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0.007 285.885);
  --primary: oklch(0.35 0.05 250);
  --primary-foreground: oklch(0.985 0 0);
  --secondary: oklch(0.65 0.15 250);
  --secondary-foreground: oklch(0.985 0 0);
  --accent: oklch(0.7 0.15 60);
  --accent-foreground: oklch(0.145 0.007 285.885);
  --muted: oklch(0.961 0.002 286.375);
  --muted-foreground: oklch(0.534 0.015 285.823);
  --border: oklch(0.921 0.005 286.32);
  --input: oklch(0.921 0.005 286.32);
  --ring: oklch(0.488 0.243 264.376);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.font-heading {
  font-family: 'Montserrat', system-ui, sans-serif;
}

/* ===================================
   Container
   =================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo .logo-img {
  height: 7rem;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
  border-color: var(--primary);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background-color: white;
  color: var(--primary);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  position: relative;
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0 8rem;
  }
}

/* Background Text Effect */
.hero-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  opacity: 0.05;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.bg-text-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .bg-text-line {
    font-size: 6rem;
  }
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  color: white;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.badge-hero {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  background-color: var(--muted);
  color: var(--foreground);
}

.badge-white {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-image {
  position: relative;
}

.dashboard-img {
  width: 120%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

.glow-effect {
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3), 0 0 40px rgba(74, 144, 226, 0.2);
}

/* ===================================
   Sections
   =================================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-muted {
  background-color: rgba(var(--muted), 0.3);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
}

.section-gradient-light {
  background: linear-gradient(135deg, 
    rgba(44, 62, 95, 0.05) 0%, 
    rgba(74, 144, 226, 0.05) 50%, 
    rgba(245, 166, 35, 0.05) 100%);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.text-white {
  color: white;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   Grid Layouts
   =================================== */
.grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================================
   Cards
   =================================== */
.card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.card-bordered {
  border: 2px solid var(--border);
}

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

.card-content {
  padding: 1.5rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--muted-foreground);
}

/* ===================================
   Pillars
   =================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.pillar-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--muted);
  margin-bottom: 1.5rem;
}

.pillar-icon {
  width: 2.5rem;
  height: 2.5rem;
}

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

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.pillar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-description {
  color: var(--muted-foreground);
}

/* ===================================
   Platform Showcase
   =================================== */
.platform-showcase {
  position: relative;
  margin-top: 3rem;
}

.platform-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 4px solid var(--border);
  box-shadow: var(--shadow-2xl);
}

.platform-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: none;
}

@media (min-width: 768px) {
  .platform-badge {
    display: block;
  }
}

.badge-number {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.badge-text {
  font-size: 0.875rem;
}

/* ===================================
   Stakeholders
   =================================== */
.stakeholder-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.stakeholder-card:hover {
  box-shadow: var(--shadow-xl);
}

.stakeholder-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stakeholder-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary), 0.1);
  border-radius: var(--radius-lg);
  color: var(--primary);
}

.stakeholder-icon i {
  width: 2rem;
  height: 2rem;
}

.stakeholder-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stakeholder-subtitle {
  color: var(--muted-foreground);
}

.stakeholder-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
  border-radius: var(--radius-xl);
  /* border: 4px solid var(--border); */
  box-shadow: var(--shadow-xl);
}

.stakeholder-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stakeholder-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.list-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===================================
   Governance
   =================================== */
.governance-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .governance-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.governance-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.governance-feature {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.governance-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 4px solid var(--border);
  box-shadow: var(--shadow-2xl);
}

/* ===================================
   SocialLab Academy
   =================================== */
.sociallab-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .sociallab-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.sociallab-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 4px solid var(--border);
  box-shadow: var(--shadow-2xl);
}

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

.sociallab-feature {
  display: flex;
  gap: 1rem;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  border-radius: var(--radius-lg);
}

.feature-icon-wrapper .feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
}

/* ===================================
   Programs Section
   =================================== */
.programs-section {
  background-color: var(--background);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
}

.programs-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: rgba(var(--muted), 0.5);
  border-radius: var(--radius-lg);
}

.program-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 50%;
  font-weight: 700;
}

.program-name {
  font-weight: 500;
}

/* ===================================
   Integrations
   =================================== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .integrations-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.integration-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  transition: all var(--transition-base);
}

.integration-item:hover {
  border-color: var(--primary);
}

/* ===================================
   Pricing
   =================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  position: relative;
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.pricing-popular {
  border-color: var(--secondary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.pricing-free {
  border-color: var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-badge-free {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.pricing-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.pricing-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pricing-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===================================
   CTA Section
   =================================== */
.cta-content {
  text-align: center;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3.5rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 3rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  height: 7rem;
  /*margin-bottom: 1rem;*/
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Utility Classes
   =================================== */
.mb-16 {
  margin-bottom: 4rem;
}




/* ===================================
   Video Classes
   =================================== */
/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000cf;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}



.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s;
  z-index: 10000;
  line-height: 1;
}

.video-modal-close:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}


.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

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

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }
  .video-modal-close {
    top: -40px;
    font-size: 32px;
  }
}
