/* CSS Variables - Copied from original React version */
:root {
  --primary: #00ff88;
  --primary-dark: #00cc6a;
  --secondary: #f472b6;
  --accent: #8b7cf6;
  --background: #ffffff;
  --foreground: #2d3748;
  --card: #f7faf8;
  --card-foreground: #2d3748;
  --muted: #64748b;
  --border: rgba(0, 255, 136, 0.2);
  --shadow-primary: 0 10px 40px rgba(0, 255, 136, 0.3);
}

body.dark {
  --background: #0d1526;
  --foreground: #e2e8f0;
  --card: #172136;
  --card-foreground: #e2e8f0;
  --muted: #94a3b8;
  --border: rgba(0, 255, 136, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s, opacity 0.2s ease;
  min-height: 100vh;
}

body.lang-switching {
  opacity: 0.7;
}

/* Utility Classes */
.hidden { display: none !important; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

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

/* Glass Effect */
.glass-effect {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 64px;
  height: 64px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loading-screen p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--muted);
  animation: fadeInUp 0.5s ease-out 0.3s both;
}

/* Floating Particles */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle 15s infinite;
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s, transform 0.3s;
}

body.dark .navbar {
  background: rgba(10, 10, 26, 0.85);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

@media (min-width: 768px) {
  .nav-content { height: 72px; }
}

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

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-link:hover {
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  transform: scale(1.05);
}

.nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0f172a;
  box-shadow: var(--shadow-primary);
  font-weight: 700;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle, .theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lang-toggle {
  background: rgba(0, 255, 136, 0.2);
  color: var(--foreground);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: inherit;
}

.lang-toggle:hover {
  background: rgba(0, 255, 136, 0.3);
  transform: scale(1.1);
}

.theme-toggle {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0f172a;
  box-shadow: var(--shadow-primary);
}

.theme-toggle:hover {
  transform: rotate(180deg) scale(1.1);
}

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

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

.menu-icon {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  padding: 1rem;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 0.5rem;
  backdrop-filter: blur(20px);
  background: inherit;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.mobile-menu.show {
  max-height: 400px;
  opacity: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 600;
  text-align: right;
  transition: all 0.3s;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

[dir="ltr"] .mobile-nav-link {
  text-align: left;
}

.mobile-nav-link:hover {
  background: rgba(0, 255, 136, 0.1);
}

.mobile-nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0f172a;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 80% at 80% 20%, rgba(0, 255, 136, 0.15), transparent 50%),
    radial-gradient(ellipse 80% 80% at 20% 80%, rgba(139, 124, 246, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(244, 114, 182, 0.05), transparent 60%);
  z-index: 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

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

@media (min-width: 1024px) {
  [dir="rtl"] .hero-text { text-align: right; }
  [dir="ltr"] .hero-text { text-align: left; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2rem;
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 2rem;
}

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

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

.hero-name {
  display: block;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
}

@media (min-width: 1024px) {
  [dir="rtl"] .hero-description { margin-left: auto; margin-right: 0; }
  [dir="ltr"] .hero-description { margin-right: auto; margin-left: 0; }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  [dir="rtl"] .hero-stats { justify-content: flex-start; }
  [dir="ltr"] .hero-stats { justify-content: flex-start; }
}

.stat {
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
}

.stat:hover {
  transform: scale(1.1);
}

.stat-number {
  display: block;
  font-size: 1.875rem;
  font-weight: 900;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

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

@media (min-width: 1024px) {
  [dir="rtl"] .hero-buttons { justify-content: flex-start; }
  [dir="ltr"] .hero-buttons { justify-content: flex-start; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

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

.btn-primary {
  color: #0f172a;
  box-shadow: var(--shadow-primary);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 255, 136, 0.5);
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  color: white;
  box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px rgba(88, 101, 242, 0.4);
}

.btn-watch {
  width: 100%;
  padding: 0.75rem 1rem;
  color: #0f172a;
}

.btn-watch svg {
  width: 16px;
  height: 16px;
}

.btn-watch:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-white {
  background: white;
  color: #0f172a;
  padding: 1rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.btn-white:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.arrow-icon {
  transition: transform 0.3s;
  width: 20px;
  height: 20px;
}

[dir="ltr"] .arrow-icon {
  transform: rotate(180deg);
}

.btn-white:hover .arrow-icon {
  transform: translateX(-4px);
}

[dir="ltr"] .btn-white:hover .arrow-icon {
  transform: rotate(180deg) translateX(-4px);
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  animation: float 4s ease-in-out infinite;
}

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



@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.profile-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 80px rgba(0, 255, 136, 0.3);
}

/* Sections */
.section {
  padding: 5rem 1rem;
  position: relative;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Goals Section */
.goals-wrapper {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(139, 124, 246, 0.05), rgba(244, 114, 182, 0.05));
  border-radius: 24px;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .goals-wrapper { padding: 4rem; }
}

.goals-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.goal-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out, 
              box-shadow 0.3s ease-out;
  will-change: transform;
}

.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.goal-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}

[dir="ltr"] .goal-top-line {
  transform-origin: left;
}

.goal-card:hover .goal-top-line {
  transform: scaleX(1);
  transform-origin: left;
}

[dir="ltr"] .goal-card:hover .goal-top-line {
  transform-origin: right;
}

.goal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #0f172a;
  transition: transform 0.3s;
}

.goal-icon svg {
  width: 36px;
  height: 36px;
}

.goal-card:hover .goal-icon {
  transform: scale(1.1) rotate(10deg);
}

.goal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.goal-description {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Videos Section */
.videos-grid {
  display: grid;
  gap: 2rem;
}

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

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

.video-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease-out, 
              box-shadow 0.3s ease-out;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 100%;
  will-change: transform;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.25);
}

.video-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease-in-out;
  z-index: 10;
  pointer-events: none;
}

body.dark .video-shine {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.video-card:hover .video-shine {
  transform: translateX(100%);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

[dir="ltr"] .video-duration {
  left: auto;
  right: 0.75rem;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
  transition: transform 0.3s;
}

.play-btn svg {
  width: 32px;
  height: 32px;
  color: #0f172a;
  margin-left: -3px;
}

[dir="ltr"] .play-btn svg {
  margin-left: 0;
  margin-right: -3px;
}

.video-card:hover .play-btn {
  transform: scale(1.1);
}

.video-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.video-views, .video-date {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.video-views svg, .video-date svg {
  width: 16px;
  height: 16px;
}

/* Community Section */
.community-wrapper {
  background: linear-gradient(135deg, rgba(139, 124, 246, 0.1), rgba(0, 255, 136, 0.05), rgba(244, 114, 182, 0.05));
  border-radius: 24px;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .community-wrapper { padding: 4rem; }
}

.community-grid {
  display: grid;
  gap: 2rem;
}

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

.discord-card {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .discord-card { padding: 2.5rem; }
}

.discord-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 5s ease-in-out infinite;
}

.discord-content {
  position: relative;
  z-index: 1;
}

.discord-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

.discord-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

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

.discord-description {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.feature-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease-out, 
              box-shadow 0.3s ease-out;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.feature-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease-in-out;
}

.feature-card:hover .feature-shine {
  transform: translateX(100%);
}

body.dark .feature-shine {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #0f172a;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

/* Social Accounts Section */
.social-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.social-card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--foreground);
  transition: transform 0.3s ease-out, 
              box-shadow 0.3s ease-out;
  position: relative;
  overflow: hidden;
  display: block;
  will-change: transform;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.social-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease-in-out;
}

.social-card:hover .social-shine {
  transform: translateX(100%);
}

body.dark .social-shine {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.social-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.social-profile-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-profile-wrapper {
  position: relative;
  display: inline-block;
}

.social-platform-badge {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -6px;
  left: -6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[dir="ltr"] .social-platform-badge {
  left: auto;
  right: -6px;
}

.social-platform-badge svg {
  width: 12px;
  height: 12px;
}

.social-platform-badge.youtube {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.social-platform-badge.discord {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  color: white;
}

.social-platform-badge.tiktok {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
}

.social-platform-badge.twitter {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
}

.social-platform-badge.instagram {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #f97316);
  color: white;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.social-icon svg {
  width: 28px;
  height: 28px;
}

.social-icon.youtube {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.social-icon.discord {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  color: white;
}

.social-icon.tiktok {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
}

body.dark .social-icon.tiktok {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  color: #111827;
}

.social-icon.twitter {
  background: linear-gradient(135deg, #374151, #111827);
  color: white;
}

body.dark .social-icon.twitter {
  background: linear-gradient(135deg, #f3f4f6, #d1d5db);
  color: #111827;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #f97316);
  color: white;
}

.social-info {
  position: relative;
  z-index: 1;
  text-align: center;
}

.social-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 0.25rem 0;
}

.social-handle {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.social-followers {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Supporters Section */
.supporters-wrapper {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(139, 124, 246, 0.05), rgba(0, 255, 136, 0.05));
  border-radius: 24px;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .supporters-wrapper { padding: 4rem; }
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.review-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out, 
              box-shadow 0.3s ease-out;
  will-change: transform;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.review-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease-in-out;
}

.review-card:hover .review-shine {
  transform: translateX(100%);
}

body.dark .review-shine {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.review-quote {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

[dir="ltr"] .review-quote {
  left: auto;
  right: 1rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.review-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.review-stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

.review-comment {
  color: var(--muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a192f, #0a0a2a);
  color: white;
  padding: 4rem 1rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-desc {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-3px);
}

.footer-links h4 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a, .footer-links li {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 50%;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  transition: all 0.3s;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

[dir="ltr"] .back-to-top {
  left: auto;
  right: 2rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1) translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* Animations */
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Hero-specific animation delays */
.hero-badge.animate-item { animation-delay: 0.1s; }
.hero-title.animate-item { animation-delay: 0.2s; }
.hero-description.animate-item { animation-delay: 0.3s; }
.hero-stats.animate-item { animation-delay: 0.4s; }
.hero-buttons.animate-item { animation-delay: 0.5s; }
.hero-image.animate-item { animation-delay: 0.3s; }

.animate-item:nth-child(1) { animation-delay: 0.1s; }
.animate-item:nth-child(2) { animation-delay: 0.2s; }
.animate-item:nth-child(3) { animation-delay: 0.3s; }
.animate-item:nth-child(4) { animation-delay: 0.4s; }
.animate-item:nth-child(5) { animation-delay: 0.5s; }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), 
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger animation for grids */
.goals-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.goals-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.goals-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.goals-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

.videos-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.videos-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.videos-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

.features-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.features-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.features-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.features-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.25s; }

.social-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.social-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.social-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.social-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.25s; }
.social-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.3s; }

.reviews-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.reviews-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.reviews-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reviews-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.25s; }
.reviews-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.3s; }
.reviews-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.35s; }
