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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0f172a;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}




code {
  font-family: 'Fira Code', source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}


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


ul, ol {
  list-style: none;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}


button:focus-visible,
a:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


.preload * {
  transition: none !important;
  animation: none !important;
}


[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] body {
  text-align: right;
}


[dir="rtl"] body {
  font-family: 'Cairo', 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}







.App::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px),
    linear-gradient(0deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: universalChartGrid 25s linear infinite;
  z-index: -4;
  pointer-events: none;
}

.App::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(147, 197, 253, 0.2) 0%, transparent 50%);
  animation: universalParticles 15s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}


@keyframes universalChartGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

@keyframes universalParticles {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-20px, -20px) scale(1.1); }
  50% { transform: translate(20px, -30px) scale(0.9); }
  75% { transform: translate(-10px, 20px) scale(1.05); }
}


.App {
  width: 100%;
  min-height: 100vh;
  background: 
    radial-gradient(ellipse at center, #1e293b 0%, #0f172a 70%, #020617 100%),
    linear-gradient(90deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
  background-size: 
    100% 100%,
    20px 20px,
    20px 20px;
  position: relative;
  overflow-x: hidden;
}


.universal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(2, 6, 23, 0.8) 100%);
  z-index: -1;
  pointer-events: none;
}


html {
  scroll-behavior: smooth;
}


section {
  scroll-margin-top: 100px;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1e293b;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}


::selection {
  background: rgba(59, 130, 246, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(59, 130, 246, 0.3);
  color: #ffffff;
}




html {
  scroll-behavior: smooth;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.header-scrolled {
  background: rgba(15, 23, 42, 0.98);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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


.header-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.header-logo:hover {
  opacity: 0.9;
}

.logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.1);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-primary {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo-secondary {
  font-size: 0.7rem;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}


.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  background: none;
  border: none;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
}




.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}


.language-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.language-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.language-toggle-btn svg {
  font-size: 1.1rem;
}


.join-falcons-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.join-falcons-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}


.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #3b82f6;
}

.hamburger-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #3b82f6;
}


.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay-active {
  opacity: 1;
  visibility: visible;
}


.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.95) 0%,
    rgba(20, 20, 20, 0.95) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-left: 2px solid;
  border-image: linear-gradient(180deg, #3b82f6, rgba(59, 130, 246, 0.3), #3b82f6) 1;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.sidebar-active {
  transform: translateX(0);
}


.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-logo:hover .logo-icon {
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
  border-color: rgba(59, 130, 246, 0.9);
  transform: scale(1.03);
}

.sidebar-logo .logo-icon {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(59, 130, 246, 0.6);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
  border-radius: 13px;
  transition: all 0.3s ease;
}

.sidebar-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
  filter: brightness(1.1) contrast(1.1);
}

.close-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  color: #3b82f6;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.close-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  transform: scale(1.1);
}


.sidebar-nav {
  flex: 1 1;
  padding: 2rem 0;
}

.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-item {
  position: relative;
}

.sidebar-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.sidebar-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  transition: width 0.3s ease;
}

.sidebar-link:hover {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.05);
  border-left-color: #3b82f6;
  transform: translateX(10px);
}

.sidebar-link:hover::before {
  width: 3px;
}


.sidebar-cta {
  padding: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-language-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-language-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

.sidebar-join-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-join-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}


@media (max-width: 1200px) {
  .header-container {
    padding: 0 2rem;
    gap: 2rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .header-container {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
  
  .nav-links {
    gap: 1.25rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
  }
  
  .join-falcons-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .header-container {
    padding: 0 1.5rem;
  }
  
  .mobile-sidebar {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 1rem 0;
  }
  
  .header-scrolled {
    padding: 0.75rem 0;
  }
  
  .logo-icon {
    width: 48px;
    height: 48px;
  }
  
  .logo-primary {
    font-size: 1.3rem;
  }
  
  .logo-secondary {
    font-size: 0.8rem;
  }
  
  .mobile-sidebar {
    width: 280px;
  }
  
  .sidebar-link {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
}


.sidebar-active .sidebar-item {
  animation: slideInRight 0.3s ease forwards;
}

.sidebar-active .sidebar-item:nth-child(1) { animation-delay: 0.1s; }
.sidebar-active .sidebar-item:nth-child(2) { animation-delay: 0.15s; }
.sidebar-active .sidebar-item:nth-child(3) { animation-delay: 0.2s; }
.sidebar-active .sidebar-item:nth-child(4) { animation-delay: 0.25s; }
.sidebar-active .sidebar-item:nth-child(5) { animation-delay: 0.3s; }
.sidebar-active .sidebar-item:nth-child(6) { animation-delay: 0.35s; }
.sidebar-active .sidebar-item:nth-child(7) { animation-delay: 0.4s; }
.sidebar-active .sidebar-item:nth-child(8) { animation-delay: 0.45s; }

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


.nav-link:focus-visible,
.sidebar-link:focus-visible,
.join-falcons-btn:focus-visible,
.sidebar-join-btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}


body {
  padding-top: 0;
}


section {
  scroll-margin-top: 100px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 120px; 
}


.hero-background-logo {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%) rotate(15deg);
  width: 800px;
  height: 800px;
  z-index: 1;
  opacity: 0.05;
  animation: logoFloat 20s ease-in-out infinite;
}

.hero-background-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 50px rgba(59, 130, 246, 0.2));
  transition: all 0.3s ease;
}


.hero-background-logo-secondary {
  position: absolute;
  top: 20%;
  left: -10%;
  transform: translateY(-50%) rotate(-20deg);
  width: 400px;
  height: 400px;
  z-index: 1;
  opacity: 0.02;
  animation: logoFloatSecondary 25s ease-in-out infinite reverse;
}

.hero-background-logo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2) blur(1px) drop-shadow(0 0 30px rgba(16, 185, 129, 0.1));
  transition: all 0.3s ease;
}

@keyframes logoFloat {
  0%, 100% { 
    transform: translateY(-50%) rotate(15deg) scale(1);
    opacity: 0.05;
  }
  25% { 
    transform: translateY(-45%) rotate(12deg) scale(1.02);
    opacity: 0.08;
  }
  50% { 
    transform: translateY(-55%) rotate(18deg) scale(0.98);
    opacity: 0.06;
  }
  75% { 
    transform: translateY(-48%) rotate(20deg) scale(1.01);
    opacity: 0.07;
  }
}

@keyframes logoFloatSecondary {
  0%, 100% { 
    transform: translateY(-50%) rotate(-20deg) scale(1);
    opacity: 0.02;
  }
  33% { 
    transform: translateY(-45%) rotate(-25deg) scale(0.95);
    opacity: 0.04;
  }
  66% { 
    transform: translateY(-55%) rotate(-15deg) scale(1.05);
    opacity: 0.025;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.hero-content-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 2rem;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(59, 130, 246, 0); }
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.title-line-1,
.title-line-2,
.title-line-3 {
  animation: titleSlideIn 0.3s ease forwards;
  opacity: 0;
  transform: translateX(-50px);
}

.title-line-1 {
  animation-delay: 0.1s;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-2 {
  animation-delay: 0.15s;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-3 {
  animation-delay: 0.2s;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  animation: underlineGrow 0.8s ease forwards;
  animation-delay: 1s;
  transform: scaleX(0);
  transform-origin: left;
}

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

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 10px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cta-primary {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

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

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

.cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #e2e8f0;
  border: 2px solid rgba(59, 130, 246, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}


.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.community-banner {
  position: relative;
  width: 100%;
  max-width: 550px;
  background: linear-gradient(145deg, 
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 50%,
    rgba(15, 23, 42, 0.95) 100%
  );
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border: 2px solid;
  border-image: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.4), 
    rgba(147, 197, 253, 0.2), 
    rgba(29, 78, 216, 0.4)
  ) 1;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 
    0 20px 40px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: bannerFloat 8s ease-in-out infinite;
  overflow: hidden;
}


.banner-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 24px;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 197, 253, 0.1));
  filter: blur(1px);
}

.orb-1 {
  width: 120px;
  height: 120px;
  top: -60px;
  right: -60px;
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-2 {
  width: 80px;
  height: 80px;
  bottom: -40px;
  left: -40px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

.orb-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  animation: orbSpin 15s linear infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(-10px, -15px) scale(1.1); opacity: 0.5; }
  50% { transform: translate(10px, -20px) scale(0.9); opacity: 0.7; }
  75% { transform: translate(-5px, 10px) scale(1.05); opacity: 0.4; }
}

@keyframes orbSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(29, 78, 216, 0.06) 0%, transparent 50%);
  animation: meshShift 25s ease-in-out infinite;
}

@keyframes meshShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33% { transform: scale(1.05) rotate(1deg); }
  66% { transform: scale(0.98) rotate(-0.5deg); }
}

@keyframes bannerFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-12px) rotateX(1deg); }
}


.banner-content {
  position: relative;
  z-index: 2;
}


.title-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.title-decoration {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  border-radius: 2px;
}

.banner-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.title-word {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wordSlideIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }

.highlight-word {
  background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.accent-word {
  background: linear-gradient(135deg, #10b981, #34d399) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

@keyframes wordSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-underline {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  margin: 0.5rem auto 0;
  border-radius: 1px;
  animation: underlineGrow 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes underlineGrow {
  to { width: 80px; }
}

.banner-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

.subtitle-highlight {
  color: #e2e8f0;
  font-weight: 600;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.achievements-showcase {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.2rem;
  gap: 1.2rem;
  margin: 2rem 0 1.5rem 0;
}

.achievement-item.premium-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.08) 0%,
    rgba(30, 41, 59, 0.4) 50%,
    rgba(59, 130, 246, 0.06) 100%
  );
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: achievementSlideIn 1s ease forwards;
  opacity: 0;
  transform: translateX(50px);
  overflow: hidden;
  cursor: pointer;
}

.achievement-item:nth-child(1) { animation-delay: 0.3s; }
.achievement-item:nth-child(2) { animation-delay: 0.5s; }
.achievement-item:nth-child(3) { animation-delay: 0.7s; }

.achievement-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(59, 130, 246, 0.1), 
    transparent
  );
  transition: left 0.8s ease;
}

.achievement-item:hover .achievement-glow {
  left: 100%;
}

.achievement-item:hover {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.15) 0%,
    rgba(30, 41, 59, 0.6) 50%,
    rgba(59, 130, 246, 0.12) 100%
  );
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(59, 130, 246, 0.2),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.achievement-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 16px;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(59, 130, 246, 0.4);
  border-radius: 16px;
  transform: translate(-50%, -50%);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 0.6; 
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2); 
    opacity: 0; 
  }
}

.achievement-info {
  flex: 1 1;
  text-align: left;
}

.achievement-number {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.number-main {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.number-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.achievement-label {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.achievement-trend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 500;
}


.join-cta {
  margin-top: 1rem;
  text-align: center;
}

.join-community-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.join-community-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}


.interactive-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}

.sparkle {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: sparkleFloat 4s ease-in-out infinite;
}

.sparkle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

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

.sparkle-4 {
  top: 30%;
  right: 80%;
  animation-delay: 3s;
}

@keyframes sparkleFloat {
  0%, 100% { 
    opacity: 0; 
    transform: translateY(0) scale(0.8); 
  }
  20% { 
    opacity: 1; 
    transform: translateY(-10px) scale(1); 
  }
  80% { 
    opacity: 1; 
    transform: translateY(-20px) scale(1.2); 
  }
}

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


.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 4rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(59, 130, 246, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 500;
}


@media (max-width: 768px) {
  .hero {
    padding-top: 100px; 
  }
  
  .hero-background-logo {
    right: -20%;
    width: 500px;
    height: 500px;
    opacity: 0.03;
    transform: translateY(-50%) rotate(25deg);
  }
  
  .hero-background-logo-secondary {
    left: -25%;
    top: 15%;
    width: 250px;
    height: 250px;
    opacity: 0.015;
    transform: translateY(-50%) rotate(-30deg);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
    margin-top: 2rem; 
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .community-banner {
    max-width: 100%;
    padding: 1.8rem 1.5rem;
  }

  .banner-title {
    font-size: 1.4rem;
    gap: 0.3rem;
  }

  .title-word {
    display: inline;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .achievement-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .number-main {
    font-size: 1.8rem;
  }

  .number-plus {
    font-size: 1.2rem;
  }

  .achievement-label {
    font-size: 0.85rem;
  }

  .achievement-trend {
    font-size: 0.8rem;
  }

  .trust-indicators {
    gap: 0.6rem;
  }

  .trust-item {
    font-size: 0.85rem;
    padding: 0.6rem;
  }

  .trust-checkmark {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .floating-orb {
    display: none; 
  }

  .interactive-sparkles {
    display: none;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .stat-item {
    padding: 1.5rem 0.75rem;
  }

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

@media (max-width: 480px) {
  .hero-background-logo {
    right: -30%;
    width: 350px;
    height: 350px;
    opacity: 0.02;
    transform: translateY(-50%) rotate(30deg);
  }
  
  .hero-background-logo-secondary {
    left: -40%;
    top: 10%;
    width: 180px;
    height: 180px;
    opacity: 0.01;
    transform: translateY(-50%) rotate(-35deg);
  }

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

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

  .community-banner {
    padding: 1.5rem 1rem;
  }
  
  .banner-title {
    font-size: 1.2rem;
  }

  .achievements-showcase {
    gap: 1.2rem;
  }

  .achievement-item.premium-card {
    padding: 1rem;
    gap: 0.8rem;
  }

  .achievement-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .number-main {
    font-size: 1.6rem;
  }

  .achievement-label {
    font-size: 0.8rem;
  }

  .trust-badge {
    padding: 0.6rem 1.2rem;
  }

  .trust-text {
    font-size: 0.8rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}


.about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 6rem 0;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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


.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: badgeFloat 3s ease-in-out infinite;
}

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

.about-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.title-part {
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.title-part:nth-child(1) { animation-delay: 0.05s; }
.title-part:nth-child(3) { animation-delay: 0.15s; }

.title-highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideUp 0.3s ease forwards;
  opacity: 0;
  transform: translateY(15px);
  animation-delay: 0.1s;
}

@keyframes titleSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  margin: 0 auto;
  border-radius: 2px;
  animation: lineGrow 1s ease forwards;
  animation-delay: 0.8s;
}

@keyframes lineGrow {
  to { width: 100px; }
}


.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: start;
}


.story-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-card {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(15, 23, 42, 0.9) 100%
  );
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
  animation: storySlideIn 0.3s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
  transform: translateX(-50px);
}

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

.card-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(59, 130, 246, 0.1), 
    transparent
  );
  animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.story-paragraph {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.story-paragraph:last-child {
  margin-bottom: 0;
}

.highlight-text {
  color: #60a5fa;
  font-weight: 600;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.founder-quote-section {
  animation: quoteSlideIn 0.3s ease forwards;
  animation-delay: 0.15s;
  opacity: 0;
  transform: translateX(-50px);
}

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

.quote-card {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(59, 130, 246, 0.05) 100%
  );
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
}

.quote-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(59, 130, 246, 0.15), 
    transparent
  );
  animation: quoteGlow 5s ease-in-out infinite;
}

@keyframes quoteGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.quote-icon {
  color: #3b82f6;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.founder-quote {
  color: #e2e8f0;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-title {
  color: #94a3b8;
  font-size: 0.9rem;
}


.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: visualSlideIn 0.3s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateX(50px);
}

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


.gallery-carousel {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 100%
  );
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.carousel-title {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 1.1rem;
}

.carousel-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.carousel-container {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.carousel-btn:hover {
  background: rgba(59, 130, 246, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.carousel-track {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(59, 130, 246, 0.6);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: #3b82f6;
  transform: scale(1.3);
}


.core-values {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.8) 100%
  );
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.values-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(5px);
}

.value-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-content h5 {
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.value-content p {
  color: #94a3b8;
  margin: 0;
  font-size: 0.9rem;
}


@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-container {
    padding: 0 1rem;
  }

  .about-title {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .about-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-card {
    padding: 2rem;
  }

  .story-paragraph {
    font-size: 1rem;
  }

  .founder-quote {
    font-size: 1.1rem;
  }

  .session-content {
    height: 200px;
  }

  .values-grid {
    gap: 0.75rem;
  }

  .value-item {
    padding: 0.75rem;
  }

  
  .carousel-container {
    height: 250px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

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

  .story-card {
    padding: 1.5rem;
  }

  .quote-card {
    padding: 1.5rem;
  }

  .session-content {
    height: 180px;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}


.founder-section {
  position: relative;
  padding: 6rem 0;
  margin-top: 4rem;
  overflow: hidden;
  scroll-margin-top: 100px;
}


.founder-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


.founder-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: founderHeaderSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes founderHeaderSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: founderBadgeFloat 3s ease-in-out infinite;
}

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

.founder-section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.founder-section-title .title-part {
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: founderTitleSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.2s;
}

.founder-section-title .title-highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: founderTitleSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.4s;
}

@keyframes founderTitleSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.founder-title-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  margin: 0 auto;
  border-radius: 2px;
  animation: founderLineGrow 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes founderLineGrow {
  to { width: 100px; }
}


.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: start;
}


.founder-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: founderProfileSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateX(-50px);
  animation-delay: 0.8s;
}

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

.founder-image-container {
  position: relative;
  margin-bottom: 2rem;
}





.founder-image {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.founder-image:hover img {
  transform: scale(1.03);
  filter: brightness(1.1) contrast(1.15) saturate(1.15);
}



.image-placeholder {
  color: #3b82f6;
  font-size: 4rem;
  animation: placeholderPulse 3s ease-in-out infinite;
}

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

.founder-status {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #10b981;
  font-size: 0.8rem;
  font-weight: 600;
}

.founder-status .status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: founderStatusPulse 2s ease-in-out infinite;
}

@keyframes founderStatusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.founder-info {
  width: 100%;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.name-highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-info .founder-title {
  color: #94a3b8;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-bio {
  margin-bottom: 2rem;
}

.founder-bio p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: left;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

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

.achievement-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(59, 130, 246, 0.05) 100%
  );
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.achievement-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
}

.achievement-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.achievement-label {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.vision-mission-block {
  animation: vmBlockSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateX(50px);
  animation-delay: 1s;
}

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

.vm-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vm-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.vm-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(15, 23, 42, 0.9) 100%
  );
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
}

.vision-card {
  border-left: 4px solid #3b82f6;
}

.mission-card {
  border-left: 4px solid #1d4ed8;
}

.vm-icon-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}

.vm-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.vm-content {
  flex: 1 1;
}

.vm-label {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vm-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vm-points li {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.vm-points li:before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6;
  font-size: 0.8rem;
}


.founder-quote-highlight {
  position: relative;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(59, 130, 246, 0.05) 100%
  );
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  overflow: hidden;
}

.quote-decoration {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 20px;
  z-index: -1;
  animation: quoteDecoration 4s ease-in-out infinite;
}

@keyframes quoteDecoration {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

.highlighted-quote {
  color: #e2e8f0;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.quote-attribution {
  color: #3b82f6;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}


@media (max-width: 768px) {
  .founder-section {
    padding: 4rem 0;
    margin-top: 2rem;
  }

  .founder-container {
    padding: 0 1rem;
  }

  .founder-section-title {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .founder-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-image {
    width: 220px;
    height: 220px;
  }

  .founder-name {
    font-size: 2rem;
  }

  .founder-info .founder-title {
    font-size: 1.1rem;
  }

  .founder-bio p {
    font-size: 1rem;
    text-align: center;
  }

  .founder-achievements {
    justify-content: space-around;
  }

  .achievement-badge {
    padding: 0.75rem;
  }

  .achievement-number {
    font-size: 1.5rem;
  }

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

  .vm-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .vm-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .vm-label {
    font-size: 1.2rem;
  }

  .vm-points li {
    font-size: 1rem;
    text-align: left;
  }

  .highlighted-quote {
    font-size: 1.1rem;
  }

  .founder-quote-highlight {
    padding: 1.5rem;
  }

  
  .carousel-container {
    height: 200px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .prev-btn {
    left: 8px;
  }

  .next-btn {
    right: 8px;
  }

  .carousel-title {
    font-size: 1rem;
  }

  .carousel-counter {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .founder-image {
    width: 180px;
    height: 180px;
  }

  .founder-name {
    font-size: 1.8rem;
  }

  .founder-achievements {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .vm-card {
    padding: 1rem;
  }

  .highlighted-quote {
    font-size: 1rem;
  }

  .founder-quote-highlight {
    padding: 1rem;
  }
}


.leaders-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: transparent;
}

.leaders-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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


.leaders-header {
  text-align: center;
  margin-bottom: 4rem;
}

.leaders-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.leaders-section .section-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
}

.leaders-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.leaders-title .title-part {
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leaders-title .title-highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leaders-section .title-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

.leaders-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}


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


.leader-card {
  position: relative;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.6) 0%,
      rgba(30, 41, 59, 0.4) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

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

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

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

.leader-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}


.leader-image-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.leader-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.leader-card:hover .leader-image-glow {
  opacity: 1;
}

.leader-image {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 41, 59, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leader-card:hover .leader-image {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
  transform: scale(1.05);
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
  display: block;
  min-width: 100%;
  min-height: 100%;
  
  transform: scale(0.65);
}

.leader-card:hover .leader-image img {
  transform: scale(0.55);
}

.image-placeholder {
  color: #3b82f6;
  font-size: 3rem;
  opacity: 0.5;
}


.leader-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader-name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.leader-rank {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.leader-card:hover .leader-rank {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.rank-icon {
  font-size: 0.85rem;
}


@media (max-width: 968px) {
  .leaders-section {
    padding: 4rem 0;
  }

  .leaders-title {
    font-size: 2.5rem;
  }

  .leaders-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .leaders-section {
    padding: 3rem 0;
  }

  .leaders-container {
    padding: 0 1.5rem;
  }

  .leaders-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .leaders-subtitle {
    font-size: 1rem;
  }

  .leaders-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }

  .leader-card {
    padding: 1.5rem;
  }

  .leader-image {
    width: 100px;
    height: 100px;
  }

  .leader-image-glow {
    width: 120px;
    height: 120px;
  }

  .leader-name {
    font-size: 1.1rem;
  }

  .leader-rank {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 480px) {
  .leaders-section {
    padding: 2rem 0;
  }

  .leaders-container {
    padding: 0 1rem;
  }

  .leaders-title {
    font-size: 1.75rem;
  }

  .leaders-header {
    margin-bottom: 2.5rem;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .leader-card {
    padding: 1.25rem;
  }

  .leader-image {
    width: 90px;
    height: 90px;
  }

  .leader-name {
    font-size: 1rem;
  }

  .leader-rank {
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
  }
}

.ranks-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 4rem;
}

.ranks-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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


.ranks-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: ranksHeaderSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes ranksHeaderSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ranks-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: ranksBadgeFloat 3s ease-in-out infinite;
}

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

.ranks-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ranks-title .title-part {
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ranksTitleSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.ranks-title .title-part:nth-child(1) { animation-delay: 0.2s; }
.ranks-title .title-part:nth-child(3) { animation-delay: 0.6s; }

.ranks-title .title-highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ranksTitleSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.4s;
}

@keyframes ranksTitleSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ranks-section .title-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
  animation: ranksLineGrow 1s ease forwards;
  animation-delay: 0.8s;
}

@keyframes ranksLineGrow {
  to { width: 100px; }
}

.ranks-subtitle {
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  animation: ranksSubtitleSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 1s;
}

@keyframes ranksSubtitleSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.progression-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.timeline-background {
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8, #60a5fa);
  border-radius: 2px;
  transition: width 0.8s ease;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}


.rank-milestone {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  animation: rankMilestoneSlide 0.3s ease forwards;
  opacity: 0;
  transform: translateX(-20px);
}

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


.rank-badge {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
  z-index: 3;
  border: 4px solid rgba(15, 23, 42, 0.9);
  animation: rankBadgePulse 3s ease-in-out infinite;
}

@keyframes rankBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.badge-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: badgeGlowPulse 4s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes badgeGlowPulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.6; 
  }
  50% { 
    transform: scale(1.2); 
    opacity: 0.8; 
  }
}

.rank-icon {
  z-index: 2;
  position: relative;
}


.rank-card {
  position: relative;
  flex: 1 1;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 50%,
    rgba(15, 23, 42, 0.95) 100%
  );
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.rank-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

.card-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(59, 130, 246, 0.1), 
    transparent
  );
  animation: rankCardGlow 5s ease-in-out infinite;
}

@keyframes rankCardGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}


.rank-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.rank-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 0 20px currentColor;
}

.rank-stats {
  display: flex;
  gap: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}

.stat-item svg {
  color: #3b82f6;
}


.rank-description {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


.rank-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  gap: 2rem;
}

.rank-section h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.requirements-list,
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.requirements-list li,
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.requirements-list svg {
  color: #10b981;
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.benefits-list svg {
  color: #3b82f6;
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}


.next-rank-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: nextRankPulse 3s ease-in-out infinite;
}

@keyframes nextRankPulse {
  0%, 100% { 
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
  }
  50% { 
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
  }
}

.next-rank-indicator svg {
  animation: nextArrowBounce 2s ease-in-out infinite;
}

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


.progression-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(59, 130, 246, 0.05) 100%
  );
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  animation: progressionCTASlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 2s;
}

@keyframes progressionCTASlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.progression-cta .cta-content h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progression-cta .cta-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.start-journey-btn {
  position: relative;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.start-journey-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.learn-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #e2e8f0;
  border: 2px solid rgba(59, 130, 246, 0.3);
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  animation: progressionBtnGlow 3s ease-in-out infinite;
}

@keyframes progressionBtnGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}


@media (max-width: 768px) {
  .ranks-section {
    padding: 4rem 0;
  }

  .ranks-container {
    padding: 0 1rem;
  }

  .ranks-title {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .ranks-subtitle {
    font-size: 1.1rem;
  }

  .timeline-background {
    left: 30px;
  }

  .rank-milestone {
    gap: 1rem;
  }

  .rank-badge {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .rank-card {
    padding: 1.5rem;
  }

  .rank-header {
    flex-direction: column;
    gap: 1rem;
  }

  .rank-name {
    font-size: 1.4rem;
  }

  .rank-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .start-journey-btn,
  .learn-more-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .rank-milestone {
    align-items: center;
    text-align: center;
  }

  .rank-badge {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .rank-card {
    padding: 1rem;
  }

  .rank-name {
    font-size: 1.2rem;
  }

  .rank-description {
    font-size: 1rem;
  }

  .requirements-list li,
  .benefits-list li {
    font-size: 0.9rem;
  }

  .progression-cta {
    padding: 2rem 1rem;
  }

  .progression-cta .cta-content h3 {
    font-size: 1.5rem;
  }
}


.media-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 4rem;
}

.media-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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


.media-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: mediaHeaderSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes mediaHeaderSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: mediaBadgeFloat 3s ease-in-out infinite;
}

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

.media-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.media-title .title-part {
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: mediaTitleSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.2s;
}

.media-title .title-highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: mediaTitleSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.4s;
}

@keyframes mediaTitleSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-section .title-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
  animation: mediaLineGrow 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes mediaLineGrow {
  to { width: 100px; }
}

.media-subtitle {
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  animation: mediaSubtitleSlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.8s;
}

@keyframes mediaSubtitleSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


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

.media-card {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 50%,
    rgba(15, 23, 42, 0.95) 100%
  );
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: mediaCardSlideIn 0.3s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes mediaCardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

.card-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(59, 130, 246, 0.1), 
    transparent
  );
  animation: mediaCardGlow 4s ease-in-out infinite;
}

@keyframes mediaCardGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}


.media-thumbnail {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

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

.media-card:hover .thumbnail-image img {
  transform: scale(1.05);
}

.thumbnail-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.thumbnail-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.3;
}

.thumbnail-icon {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.8);
  animation: thumbnailIconFloat 3s ease-in-out infinite;
}

@keyframes thumbnailIconFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}



.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}


.media-content {
  padding: 2rem;
}

.content-header {
  margin-bottom: 1rem;
}

.media-title-text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.media-subtitle-text {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.media-summary {
  margin-bottom: 1.5rem;
}

.summary-line {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

.summary-line:last-child {
  margin-bottom: 0;
}




.media-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(59, 130, 246, 0.05) 100%
  );
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  animation: mediaCTASlide 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 1.5s;
}

@keyframes mediaCTASlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-cta .cta-content h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.media-cta .cta-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.access-library-btn {
  position: relative;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.access-library-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.subscribe-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #e2e8f0;
  border: 2px solid rgba(59, 130, 246, 0.3);
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  animation: mediaBtnGlow 3s ease-in-out infinite;
}

@keyframes mediaBtnGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}


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

  .media-container {
    padding: 0 1rem;
  }

  .media-title {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .media-subtitle {
    font-size: 1.1rem;
  }

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

  .media-thumbnail {
    height: 200px;
  }

  .thumbnail-icon {
    font-size: 3rem;
  }

  .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .media-content {
    padding: 1.5rem;
  }

  .media-title-text {
    font-size: 1.2rem;
  }

  .media-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .access-library-btn,
  .subscribe-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .media-card {
    border-radius: 16px;
  }

  .media-thumbnail {
    height: 180px;
    border-radius: 12px 12px 0 0;
  }

  .thumbnail-icon {
    font-size: 2.5rem;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .media-content {
    padding: 1rem;
  }

  .media-title-text {
    font-size: 1.1rem;
  }

  .summary-line {
    font-size: 0.9rem;
  }

  .media-cta {
    padding: 2rem 1rem;
  }

  .media-cta .cta-content h3 {
    font-size: 1.5rem;
  }
}


.course-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

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

.course-modal {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 24px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

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

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

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

.modal-header {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.modal-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}


.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: white;
  width: 30px;
  border-radius: 5px;
}

.modal-course-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: white;
}

.modal-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.modal-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0.5rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.modal-body {
  padding: 2rem;
}

.modal-level {
  margin-bottom: 2rem;
}

.level-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.modal-section {
  margin-bottom: 2rem;
}

.modal-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.modal-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.modal-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.modal-summary-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.summary-bullet {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.modal-summary-item span:last-child {
  flex: 1 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.modal-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-join-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 12px;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}


.media-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-card:hover {
  transform: translateY(-8px) scale(1.02);
}


@media (max-width: 768px) {
  .modal-header {
    height: 200px;
  }

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

  .modal-subtitle {
    font-size: 1rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-section-title {
    font-size: 1.25rem;
  }

  .modal-description {
    font-size: 1rem;
  }
}


.course-modal::-webkit-scrollbar {
  width: 8px;
}

.course-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.course-modal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.course-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}


.course-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.course-tab {
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.course-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(102, 126, 234, 0.5);
  color: white;
}

.course-tab.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .course-tabs {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .course-tab {
    width: 100%;
  }
}


.join-movement-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  margin-top: 4rem;
}


.movement-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.trading-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}


.skyline-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, 
    #1e293b 0%, 
    #1e293b 30%, 
    transparent 100%
  );
}

.skyline-silhouette::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(51, 65, 85, 0.3), transparent);
  opacity: 0.3;
}


.trading-charts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: chartMove 8s ease-in-out infinite;
}

.chart-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.chart-2 {
  top: 35%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.chart-3 {
  top: 50%;
  left: 30%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.chart-4 {
  top: 65%;
  right: 25%;
  animation-delay: 6s;
  animation-duration: 11s;
}

.chart-5 {
  top: 80%;
  left: 60%;
  animation-delay: 8s;
  animation-duration: 13s;
}

@keyframes chartMove {
  0%, 100% { 
    transform: translateX(-50px) scaleX(0.8); 
    opacity: 0.3; 
  }
  25% { 
    transform: translateX(0) scaleX(1.2); 
    opacity: 0.8; 
  }
  50% { 
    transform: translateX(50px) scaleX(1); 
    opacity: 1; 
  }
  75% { 
    transform: translateX(25px) scaleX(1.1); 
    opacity: 0.6; 
  }
}


.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.85) 0%,
    rgba(30, 41, 59, 0.8) 30%,
    rgba(59, 130, 246, 0.1) 70%,
    rgba(15, 23, 42, 0.9) 100%
  );
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}


.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particles-active .particle {
  animation-play-state: running;
}

.particle {
  position: absolute;
  color: rgba(59, 130, 246, 0.6);
  font-size: 1.2rem;
  animation: particleFloat 6s ease-in-out infinite;
  animation-play-state: paused;
}

@keyframes particleFloat {
  0% { 
    transform: translateY(100vh) rotate(0deg); 
    opacity: 0; 
  }
  10% { 
    opacity: 1; 
  }
  90% { 
    opacity: 1; 
  }
  100% { 
    transform: translateY(-100px) rotate(360deg); 
    opacity: 0; 
  }
}


.movement-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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


.impact-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: statsSlideIn 0.3s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

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

.stat-bubble {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
  animation: bubbleFloat 4s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.stat-bubble:nth-child(1) { animation-delay: 0s; }
.stat-bubble:nth-child(2) { animation-delay: 1.3s; }
.stat-bubble:nth-child(3) { animation-delay: 2.6s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}


.movement-message {
  margin-bottom: 3rem;
  animation: messageSlideIn 0.3s ease forwards;
  animation-delay: 0.15s;
  opacity: 0;
}

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

.movement-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.title-line {
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideUp 0.3s ease forwards;
  opacity: 0;
  transform: translateY(15px);
  animation-delay: 0.2s;
}

.title-highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
  animation: titleSlideUp 0.3s ease forwards;
  opacity: 0;
  transform: translateY(15px);
  animation-delay: 0.25s;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  border-radius: 2px;
  animation: underlineGrow 1s ease forwards;
  animation-delay: 1.2s;
  transform: scaleX(0);
}

@keyframes titleSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

.motivational-text {
  font-size: 2rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
  animation: motivationalSlide 0.3s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes motivationalSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.supporting-text {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  animation: supportingSlide 0.3s ease forwards;
  animation-delay: 0.35s;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes supportingSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.movement-cta {
  margin-bottom: 3rem;
  animation: ctaSlideIn 0.3s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

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

.start-journey-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 60px;
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { 
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
    transform: scale(1.02);
  }
}

.start-journey-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-text {
  position: relative;
  z-index: 3;
}

.btn-icon {
  position: relative;
  z-index: 3;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.start-journey-btn:hover .btn-icon {
  transform: translateX(5px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent
  );
  animation: btnGlowSweep 3s ease-in-out infinite;
}

@keyframes btnGlowSweep {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: btnRipple 2s ease-in-out infinite;
}

@keyframes btnRipple {
  0% { 
    width: 0; 
    height: 0; 
    opacity: 1; 
  }
  70% { 
    width: 300px; 
    height: 300px; 
    opacity: 0; 
  }
  100% { 
    width: 300px; 
    height: 300px; 
    opacity: 0; 
  }
}


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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
}

.benefit-item svg {
  color: #3b82f6;
  font-size: 1rem;
}


.academy-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: taglineSlideIn 0.3s ease forwards;
  animation-delay: 0.45s;
  opacity: 0;
}

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

.tagline-decoration {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.tagline-text {
  color: #e2e8f0;
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  margin: 0;
}

.tagline-text strong {
  color: #60a5fa;
  font-weight: 700;
}


.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
  animation: trustSlideIn 0.3s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  color: #3b82f6;
}

.trust-separator {
  color: #3b82f6;
  font-size: 1.2rem;
}


@media (max-width: 768px) {
  .join-movement-section {
    padding: 4rem 0;
  }

  .movement-container {
    padding: 0 1rem;
  }

  .impact-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .movement-title {
    font-size: 3rem;
  }

  .motivational-text {
    font-size: 1.5rem;
  }

  .supporting-text {
    font-size: 1.1rem;
  }

  .start-journey-btn {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-indicators {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .chart-line {
    width: 150px;
  }
}

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

  .motivational-text {
    font-size: 1.3rem;
  }

  .start-journey-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .academy-tagline {
    flex-direction: column;
  }

  .tagline-decoration {
    width: 40px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-separator {
    display: none;
  }
}


.auth-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}


.auth-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  z-index: -1;
}

.auth-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}


.auth-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
}


.auth-card {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 100%
  );
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: cardSlideIn 0.5s ease;
}

.register-card {
  max-width: 600px;
}

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


.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.auth-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-subtitle {
  color: #94a3b8;
  font-size: 1rem;
}


.auth-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #fca5a5;
  font-size: 0.9rem;
  text-align: center;
}


.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group label {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: #64748b;
  font-size: 1rem;
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  color: #e2e8f0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-wrapper input::placeholder {
  color: #64748b;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #3b82f6;
}


.auth-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  margin-top: 0.5rem;
}

.auth-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.auth-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  animation: spin 1s linear infinite;
}

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


.auth-footer {
  margin-top: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.auth-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .auth-container {
    padding: 1rem;
  }

  .auth-card {
    padding: 2rem 1.5rem;
  }

  .auth-title {
    font-size: 1.75rem;
  }

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

@media (max-width: 480px) {
  .auth-card {
    padding: 1.5rem 1rem;
  }

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

  .auth-logo {
    width: 60px;
    height: 60px;
  }
}

.dashboard-container {
  min-height: 100vh;
  background: 
    radial-gradient(ellipse at center, #1e293b 0%, #0f172a 70%, #020617 100%),
    linear-gradient(90deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
  background-size: 
    100% 100%,
    20px 20px,
    20px 20px;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

.dashboard-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px),
    linear-gradient(0deg, rgba(59, 130, 246, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: dashboardGrid 25s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.dashboard-container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(147, 197, 253, 0.2) 0%, transparent 50%);
  animation: dashboardParticles 15s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes dashboardGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

@keyframes dashboardParticles {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-20px, -20px) scale(1.1); }
  50% { transform: translate(20px, -30px) scale(0.9); }
  75% { transform: translate(-10px, 20px) scale(1.05); }
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(30, 41, 59, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.dashboard-nav {
  display: flex;
  gap: 10px;
  flex: 1 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  color: #e2e8f0;
  transform: translateY(-2px);
}

.nav-link.active {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-color: rgba(59, 130, 246, 0.5);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dashboard-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.dashboard-logo h1 {
  font-size: 24px;
  color: #e2e8f0;
  margin: 0;
  font-weight: 700;
}

.logout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.logout-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.logout-btn:hover::before {
  left: 100%;
}

.logout-btn:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.dashboard-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.welcome-section {
  background: rgba(30, 41, 59, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8, #3b82f6);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.welcome-section h2 {
  font-size: 32px;
  color: #e2e8f0;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.welcome-section p {
  font-size: 18px;
  color: #94a3b8;
  margin: 0;
}

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

.dashboard-card {
  background: rgba(30, 41, 59, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s;
}

.dashboard-card:hover::before {
  left: 100%;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.card-header h3 {
  font-size: 20px;
  color: #e2e8f0;
  margin: 0;
  font-weight: 600;
}

.card-icon {
  font-size: 24px;
  color: #3b82f6;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-row:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.info-icon {
  color: #3b82f6;
  font-size: 16px;
}

.info-label {
  font-weight: 600;
  color: #94a3b8;
  min-width: 120px;
}

.info-value {
  color: #e2e8f0;
  font-weight: 500;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border: 3px solid;
  border-radius: 12px;
  margin-bottom: 15px;
  background: rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.role-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.role-label {
  font-size: 20px;
  font-weight: 700;
  color: #e2e8f0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  color: #e2e8f0;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-dot.active {
  background: #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.status-dot.inactive {
  background: #ff6b6b;
}

.rank-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 12px;
  gap: 10px;
}

.rank-icon {
  font-size: 48px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.rank-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dashboard-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: 
    radial-gradient(ellipse at center, #1e293b 0%, #0f172a 70%, #020617 100%);
  color: #e2e8f0;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(59, 130, 246, 0.3);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.dashboard-loading p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .dashboard-logo {
    flex-direction: column;
  }

  .dashboard-nav {
    width: 100%;
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
  }

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

  .welcome-section h2 {
    font-size: 24px;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-label {
    min-width: auto;
  }
}




.editor-form .form-section {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.editor-form .form-section h2 {
  color: #3b82f6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arabic-section {
  direction: rtl;
}

.arabic-section h2 {
  direction: ltr;
}

.arabic-section label {
  text-align: right;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  padding: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.save-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.save-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.save-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cancel-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}


@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .save-btn,
  .cancel-btn {
    width: 100%;
    justify-content: center;
  }
}




.editor-form .form-section {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.editor-form .form-section h2 {
  color: #3b82f6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arabic-section {
  direction: rtl;
}

.arabic-section h2 {
  direction: ltr;
}

.arabic-section label {
  text-align: right;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  padding: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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


.gallery-manager {
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
  background: rgba(15, 23, 42, 0.6);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-image-btn:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.add-image-btn {
  aspect-ratio: 1;
  border: 2px dashed rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #3b82f6;
}

.add-image-btn:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.add-image-btn svg {
  font-size: 1.5rem;
}


.image-upload-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.image-preview {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
  background: rgba(15, 23, 42, 0.6);
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-btn:hover {
  background: rgba(59, 130, 246, 0.2);
}

.upload-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.save-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.save-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cancel-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}


@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .form-actions {
    flex-direction: column;
  }

  .save-btn,
  .cancel-btn {
    width: 100%;
    justify-content: center;
  }

  .image-upload-container {
    flex-direction: column;
    align-items: flex-start;
  }
}




.leaders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.leader-item {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.leader-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.leader-item-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1 1;
}

.leader-image-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}

.leader-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-details h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.leader-rank-display {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.leader-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.leader-actions {
  display: flex;
  gap: 0.75rem;
}

.edit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.edit-btn:hover {
  background: rgba(59, 130, 246, 0.2);
}

.delete-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delete-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}


.empty-state {
  text-align: center;
  padding: 3rem;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.empty-state p {
  font-size: 1.1rem;
  margin: 0;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.modal-header h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
}

.modal-close {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
}

.modal-form {
  padding: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  padding: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.color-picker-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.color-picker-container input[type="color"] {
  width: 60px;
  height: 40px;
  padding: 0;
  border: none;
  cursor: pointer;
}

.color-picker-container input[type="text"] {
  flex: 1 1;
}


.image-upload-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.image-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
  background: rgba(15, 23, 42, 0.6);
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-btn:hover {
  background: rgba(59, 130, 246, 0.2);
}

.upload-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.field-note {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}


.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.save-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1 1;
  justify-content: center;
}

.save-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.save-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cancel-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-content: center;
}

.cancel-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}


@media (max-width: 768px) {
  .leader-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .leader-actions {
    width: 100%;
    justify-content: flex-end;
  }

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

  .modal-actions {
    flex-direction: column;
  }

  .save-btn,
  .cancel-btn {
    width: 100%;
  }

  .image-upload-container {
    flex-direction: column;
    align-items: flex-start;
  }
}


.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.editor-header h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.editor-header p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.create-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.create-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}


.editor-form {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.save-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.save-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cancel-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.form-section {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.form-section h3 {
  color: #3b82f6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  padding: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

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


.array-input {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.array-input input {
  flex: 1 1;
}

.remove-btn {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}

.add-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.add-btn:hover {
  background: rgba(59, 130, 246, 0.2);
}


.ranks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rank-item {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.rank-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.rank-item-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1 1;
}

.rank-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.rank-info h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.rank-info p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.rank-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.rank-actions {
  display: flex;
  gap: 0.75rem;
}

.edit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.edit-btn:hover {
  background: rgba(59, 130, 246, 0.2);
}

.delete-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delete-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}


@media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .editor-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .rank-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .rank-actions {
    width: 100%;
    justify-content: flex-end;
  }
}


.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.editor-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.editor-header p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.create-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}


.editor-form {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.save-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.save-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cancel-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.form-section {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.form-section h3 {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    padding: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

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


.array-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.array-input input {
    flex: 1 1;
}

.remove-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

.add-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.add-btn:hover {
    background: rgba(59, 130, 246, 0.2);
}


.courses-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course-item {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.course-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.course-item-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1 1;
}

.course-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.course-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.course-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.course-actions {
    display: flex;
    gap: 0.75rem;
}

.edit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: rgba(59, 130, 246, 0.2);
}

.delete-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}


@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .editor-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .course-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .course-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
/
* Images Grid for Carousel */
.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.image-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.image-thumbnail:hover {
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.image-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 2;
}

.remove-image-btn:hover {
  background: rgba(220, 38, 38, 1);
  transform: scale(1.1);
}

.main-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 4px 12px;
  background: rgba(102, 126, 234, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.no-images-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: rgba(255, 255, 255, 0.4);
  gap: 0.5rem;
}

.no-images-placeholder svg {
  font-size: 48px;
  opacity: 0.3;
}

.no-images-placeholder p {
  margin: 0;
  font-size: 14px;
}

.add-image-btn {
  aspect-ratio: 16/9;
  border-radius: 12px;
  background: rgba(102, 126, 234, 0.1);
  border: 2px dashed rgba(102, 126, 234, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}

.add-image-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

.add-image-btn svg {
  font-size: 24px;
}

.add-image-btn span {
  font-size: 13px;
  font-weight: 600;
}


@media (max-width: 768px) {
  .images-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .remove-image-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .main-badge {
    font-size: 9px;
    padding: 3px 8px;
  }
}


.image-upload-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.image-preview {
  width: 200px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: rgba(102, 126, 234, 0.1);
  border: 2px dashed rgba(102, 126, 234, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
  flex: 1 1;
}

.upload-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

.upload-btn svg {
  font-size: 32px;
}

.upload-btn span {
  font-size: 14px;
  font-weight: 600;
}

