
/* Hero Section - Enhanced Design */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height)); /* Account for header height */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b6b 100%);
  margin-top: 0; /* Don't add extra margin since body already has padding-top */
}

/* Animated Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Prevent interaction with background elements */
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1px);
  pointer-events: none; /* Prevent interaction with overlay */
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: auto; /* Restore pointer events for content */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding: 10px 0 60px 0;
}

/* Hero Text */
.hero-text {
  color: white;
  animation: slideInLeft 1.2s ease-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInDown 1s ease-out 0.3s both;
}

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

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.title-line {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.title-highlight {
  background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.7s both, gradientShift 3s ease-in-out infinite;
}

.title-accent {
  font-size: 0.7em;
  font-weight: 600;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 500px;
  animation: fadeInUp 1s ease-out 1.1s both;
  text-align: center;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 1.3s both;
  justify-content: center;
}

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

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ffffff, #f0f9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

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

/* Enhanced Buttons */
.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.5s both;
  justify-content: center;
}

.btn-primary {
  position: relative;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
  transition: all 0.4s ease;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

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

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

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255, 107, 107, 0.5);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 2s ease-in-out infinite;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: slideInRight 1.2s ease-out;
}

.visual-container {
  position: relative;
  height: 600px;
  perspective: 1000px;
}

/* Featured Card */
.featured-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  animation: floatMain 4s ease-in-out infinite;
}

.featured-card:hover {
  transform: translate(-50%, -50%) scale(1.05) rotateY(5deg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}

.card-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .card-content img {
  transform: scale(1.1);
}

.card-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.featured-card:hover .card-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 30px 25px 25px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.featured-card:hover .card-info {
  transform: translateY(0);
}

.card-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.card-info p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.card-stats {
  font-size: 0.9rem;
  opacity: 0.7;
  display: flex;
  gap: 8px;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.float-card:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.float-card:hover img {
  transform: scale(1.2);
}

.platform-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.youtube-card {
  top: 20px;
  left: 20px;
  animation: floatCard1 3s ease-in-out infinite;
}

.podcast-card {
  top: 80px;
  right: 40px;
  animation: floatCard2 3s ease-in-out infinite 1s;
}

.creative-card {
  bottom: 60px;
  left: 60px;
  animation: floatCard3 3s ease-in-out infinite 2s;
}

/* Audio Waves Mini */
.audio-waves-mini {
  display: flex;
  gap: 2px;
  align-items: center;
}

.wave-mini {
  width: 2px;
  background: white;
  border-radius: 1px;
  animation: audioWaveMini 1.5s ease-in-out infinite;
}

.wave-mini:nth-child(1) { height: 8px; animation-delay: 0s; }
.wave-mini:nth-child(2) { height: 12px; animation-delay: 0.2s; }
.wave-mini:nth-child(3) { height: 8px; animation-delay: 0.4s; }

/* Decorative Shapes */
.decorative-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatShapes 6s ease-in-out infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  right: 20%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 10%;
  animation-delay: 4s;
}

.shape-4 {
  width: 30px;
  height: 30px;
  top: 30%;
  right: 50%;
  animation-delay: 1s;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

/* Enhanced Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  50%, 100% {
    transform: translateX(100%);
  }
}

@keyframes floatMain {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

@keyframes floatCard1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes floatCard2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

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

@keyframes floatShapes {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.6;
  }
}

@keyframes audioWaveMini {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.8);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

/* Platforms Section - Simplified & Fast Loading */
/* Platforms Section - Modern Redesign */
.platforms-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.platforms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.platforms-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.platforms-header .header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #475569;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.platforms-header .badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Quick Stats */
.quick-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

@media (max-width: 768px) {
  .quick-stats {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    padding: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

.platforms-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.platform-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(20px);
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.platform-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.platform-card.primary {
  background: linear-gradient(135deg, #ffffff 0%, #fefbfb 100%);
}

.platform-card.primary::before {
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a52 50%, #ff9a9e 100%);
}

.platform-card.secondary {
  background: linear-gradient(135deg, #ffffff 0%, #fbfaff 100%);
}

.platform-card.secondary::before {
  background: linear-gradient(90deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
}

.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 0;
  position: relative;
}

.platform-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

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

.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(20px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.platform-badge.live {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
  color: #dc2626;
}

.platform-badge.trending {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
  color: #d97706;
}

.platform-badge.premium {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
  color: #7c3aed;
}

.platform-badge.featured {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: #059669;
}

.platform-card:hover .platform-badge {
  transform: translateY(-2px);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.platform-image {
  position: relative;
  height: 260px;
  margin: 20px 32px 0;
  border-radius: 20px;
  overflow: hidden;
}

.platform-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.platform-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1.05);
}

.platform-card:hover .platform-image img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.platform-card:hover .image-overlay {
  opacity: 1;
  backdrop-filter: blur(2px);
}

.play-button {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card:hover .play-button {
  transform: scale(1) rotate(5deg);
}

.audio-waves {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wave {
  width: 4px;
  background: white;
  border-radius: 2px;
  animation: wave 1.5s infinite;
}

.wave:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave:nth-child(2) { height: 30px; animation-delay: 0.2s; }
.wave:nth-child(3) { height: 25px; animation-delay: 0.4s; }
.wave:nth-child(4) { height: 35px; animation-delay: 0.6s; }

.platform-content {
  padding: 40px 32px 32px;
}

.platform-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 1.05rem;
  font-weight: 400;
}

.platform-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.metric {
  text-align: center;
  padding: 20px 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric:hover::before {
  opacity: 1;
}

.metric:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.metric-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.platform-actions {
  display: flex;
  gap: 16px;
}

.platform-actions .btn-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.platform-actions .btn-primary::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.6s ease;
}

.platform-actions .btn-primary:hover::before {
  left: 100%;
}

.platform-actions .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #7c8de8 0%, #8b5fbf 100%);
}

.platform-actions .btn-secondary {
  padding: 16px 28px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.9) 100%);
  color: #475569;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.platform-actions .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 85, 105, 0.1), transparent);
  transition: left 0.6s ease;
}

.platform-actions .btn-secondary:hover::before {
  left: 100%;
}

.platform-actions .btn-secondary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #334155;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.5); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .platforms-section {
    padding: 80px 0;
  }
  
  .platforms-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .platform-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platform-actions {
    flex-direction: column;
  }
}

/* Platform Comparison Section */
.platform-comparison {
  margin-top: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.comparison-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.comparison-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 12px;
  line-height: 1.2;
}

.comparison-header p {
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 20px;
}

.comparison-card {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.comparison-card:hover .comparison-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.comparison-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
}

.comparison-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .platforms-section {
    padding: 80px 0;
  }
  
  .platforms-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .platform-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platform-actions {
    flex-direction: column;
  }
  
  .platform-comparison {
    margin-top: 60px;
    padding: 40px 0;
    border-radius: 24px;
  }
  
  .comparison-header h3 {
    font-size: 1.8rem;
  }
  
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .comparison-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .platform-content {
    padding: 32px 24px 24px;
  }
  
  .platform-content h3 {
    font-size: 1.5rem;
  }
  
  .platform-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .comparison-header h3 {
    font-size: 1.6rem;
  }
  
  .comparison-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .comparison-card {
    padding: 24px 16px;
  }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.floating-cta-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  min-width: 300px;
}

.cta-text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1;
}

.cta-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

/* Enhanced Platform Cards with Loading States */
.platform-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease forwards;
  will-change: transform, opacity;
}

/* Focus states for accessibility */
.platform-card:focus-within {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

.image-overlay[role="button"]:focus {
  outline: 2px solid white;
  outline-offset: 4px;
}

.cta-button:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .platform-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .platform-card:hover {
    transform: none;
  }
  
  .floating-cta {
    transition: opacity 0.2s ease;
  }
  
  .stat-number {
    transition: none;
  }
  
  .badge-pulse,
  .wave {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .platform-card {
    border: 2px solid #000;
  }
  
  .platform-badge {
    border: 1px solid currentColor;
  }
  
  .floating-cta-content {
    border: 2px solid white;
  }
}

/* Performance optimizations */
.platform-image {
  contain: layout style paint;
  will-change: transform;
}

.platform-image img {
  will-change: transform, filter;
}

/* GPU acceleration for smooth animations */
.platform-card,
.floating-cta,
.play-button,
.comparison-card,
.story-card {
  transform: translateZ(0);
}

.platform-card:nth-child(1) { animation-delay: 0.2s; }
.platform-card:nth-child(2) { animation-delay: 0.4s; }

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

/* Enhanced Hover Effects */
.platform-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.platform-card:hover::after {
  opacity: 1;
}

/* Smooth Loading Animation for Images */
.platform-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1.05);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

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

/* Mobile Responsive for Floating CTA */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }
  
  .floating-cta-content {
    padding: 16px 20px;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    min-width: auto;
  }
  
  .cta-text {
    font-size: 0.9rem;
  }
  
  .cta-button {
    align-self: stretch;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* Featured Content Section - Modern Clean Design */
.featured-content {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.featured-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #667eea;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 30px;
}

.header-actions {
  margin-top: 30px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #667eea;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.view-all-btn:hover {
  background: #5a6fd8;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Content Showcase */
.content-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
}

/* Featured Article Container */
.featured-article-container {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

/* Featured Article */
.featured-article {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  transition: all 0.4s ease;
}

.featured-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.article-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

.featured-article:hover .article-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-article:hover .image-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-icon:hover {
  background: white;
  transform: scale(1.1);
}

.content-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.content-type-badge.video {
  background: rgba(239, 68, 68, 0.9);
}

.content-type-badge.podcast {
  background: rgba(139, 92, 246, 0.9);
}

.content-type-badge.article {
  background: rgba(16, 185, 129, 0.9);
}

.content-type-badge.tutorial {
  background: rgba(245, 158, 11, 0.9);
}

.content-type-badge.live {
  background: rgba(239, 68, 68, 0.9);
  animation: pulse 2s infinite;
}

.duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.article-content {
  padding: 30px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category.technology {
  background: #e0e7ff;
  color: #667eea;
}

.category.business {
  background: #ecfdf5;
  color: #059669;
}

.category.resources {
  background: #fef3c7;
  color: #d97706;
}

.category.design {
  background: #fce7f3;
  color: #be185d;
}

.category.community {
  background: #f0f9ff;
  color: #0284c7;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.875rem;
}

.article-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 16px;
}

.article-excerpt {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1rem;
}

.article-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.875rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #1a202c;
  display: block;
  font-size: 0.875rem;
}

.author-role {
  color: #64748b;
  font-size: 0.75rem;
}

/* Trending Section */
.trending-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.trending-header {
  margin-bottom: 20px;
}

.trending-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trending-topics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  cursor: pointer;
}

.trending-item:hover {
  border-color: #667eea;
  transform: translateX(4px);
}

.trending-number {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trending-content h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.trending-engagement {
  font-size: 0.75rem;
  color: #64748b;
}

.trending-view-all {
  display: inline-flex;
  align-items: center;
  color: #667eea;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.trending-view-all:hover {
  color: #5a6fd8;
}

/* Content Grid */
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  cursor: pointer;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: #e2e8f0;
}

.card-image {
  position: relative;
  height: 140px;
  overflow: hidden;
}

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

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

.card-content {
  padding: 20px;
}

.card-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
  margin-bottom: 8px;
}

.card-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #94a3b8;
}

.plays, .reads, .views, .viewers {
  font-weight: 600;
}

.date {
  color: #cbd5e1;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.5); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-sidebar .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
    gap: 24px;
  }
  
  .card-image {
    height: 180px;
  }
  
  .trending-section {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .featured-content {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .content-showcase {
    padding: 0 16px;
  }
  
  .article-image {
    height: 240px;
  }
  
  .article-content {
    padding: 24px;
  }
  
  .article-title {
    font-size: 1.5rem;
  }
  
  .content-sidebar .content-grid {
    grid-template-columns: 1fr;
  }
  
  .card-image {
    height: 160px;
  }
  
  .trending-section {
    padding: 20px;
    margin-top: 20px;
  }
  
  .trending-item {
    padding: 10px;
  }
  
  .trending-content h5 {
    font-size: 0.85rem;
  }
}

/* Community Section */
.community-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.community-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.community-text p {
  font-size: 1.125rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.community-features {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-text p {
  opacity: 0.8;
  margin: 0;
}

.creator-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: slideInRight 1s ease-out;
}

.creator-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.creator-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.creator-card:nth-child(1) {
  grid-column: span 2;
}

.creator-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.creator-info {
  padding: 20px;
}

.creator-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.creator-info p {
  opacity: 0.8;
  margin: 0;
}

/* Tools Section */
.tools-section {
  padding: 100px 0;
  background: #f8fafc;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.tool-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.tool-card:nth-child(2) { animation-delay: 0.1s; }
.tool-card:nth-child(3) { animation-delay: 0.2s; }
.tool-card:nth-child(4) { animation-delay: 0.3s; }

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tool-icon {
  margin-bottom: 25px;
}

.tool-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.tool-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes audioWave {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .visual-container {
    height: 350px;
  }
  
  .featured-card {
    width: 300px;
    height: 200px;
  }
  
  .float-card {
    width: 80px;
    height: 80px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .community-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-container {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary, .btn-secondary {
    width: 250px;
    text-align: center;
    padding: 16px 30px;
  }
  
  .hero-stats {
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .visual-container {
    height: 300px;
  }
  
  .featured-card {
    width: 250px;
    height: 160px;
  }
  
  .float-card {
    width: 60px;
    height: 60px;
  }
  
  .youtube-card {
    top: 10px;
    left: 10px;
  }
  
  .podcast-card {
    top: 60px;
    right: 20px;
  }
  
  .creative-card {
    bottom: 40px;
    left: 40px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 15px;
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .visual-container {
    height: 250px;
  }
  
  .featured-card {
    width: 200px;
    height: 130px;
  }
  
  .float-card {
    width: 50px;
    height: 50px;
  }
  
  .platform-icon {
    width: 20px;
    height: 20px;
    top: 5px;
    right: 5px;
  }
  
  .platform-content,
  .content-info {
    padding: 20px;
  }
  
  .creator-gallery {
    grid-template-columns: 1fr;
  }
  
  .creator-card:nth-child(1) {
    grid-column: span 1;
  }
  
  .scroll-text {
    font-size: 0.8rem;
  }
  
  .scroll-arrow {
    width: 35px;
    height: 35px;
  }
  
  .decorative-shapes {
    display: none;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
}
