.hero-section {
  background: linear-gradient(135deg, #55907d 0%, #55907d 50%, #047857 100%)
}

.workout-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 50%, #f8fafc 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}

.workout-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.workout-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.workout-card:hover::before {
  transform: scaleX(1);
}

.workout-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.workout-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  position: relative;
  flex-shrink: 0;
}

.workout-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.workout-card:hover .workout-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.workout-icon i {
  color: white;
  font-size: 1.25rem;
}

.workout-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.workout-title:hover {
  color: #10b981;
}

.workout-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.workout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
  flex-shrink: 0;
}

.creator-info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.creator-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #67a877 0%, #194328 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.creator-avatar i {
  color: white;
  font-size: 1rem;
}

.creator-details {
  min-width: 0;
  flex: 1;
}

.creator-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-date {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.view-details-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #447364 0%, #059669 100%);
  color: white;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  border: none;
  cursor: pointer;
}

.view-details-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.view-details-btn i {
  margin-right: 0.5rem;
  font-size: 0.75rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.stat-item {
  text-align: center;
  padding: 0.5rem 0.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.125rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.625rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* Compact stats for smaller screens */
@media (max-width: 640px) {
  .stats-grid {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }
  
  .stat-item {
    padding: 0.375rem 0.125rem;
  }
  
  .stat-value {
    font-size: 1rem;
    margin-bottom: 0.0625rem;
  }
  
  .stat-label {
    font-size: 0.5rem;
    letter-spacing: 0.02em;
  }
}

.difficulty-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.difficulty-beginner {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.difficulty-intermediate {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.difficulty-advanced {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.difficulty-expert {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
}

.trainer-badge {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}



/* Beautiful Header Styles */
.beautiful-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-logo {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-nav-link {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
}

.header-nav-link:hover {
  color: white;
  transform: translateY(-1px);
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.header-nav-link:hover::after {
  width: 100%;
}

.header-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
}

.header-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Beautiful Sidebar Styles */
.beautiful-sidebar {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-right: 1px solid #e2e8f0;
}

.sidebar-item {
  background: white;
  border-radius: 12px;
  margin: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sidebar-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}



/* Floating CTA for Mobile */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background: #2563eb;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.floating-cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -3px rgb(0 0 0 / 0.15), 0 8px 10px -4px rgb(0 0 0 / 0.1);
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .floating-cta {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
  }
}

/* CTA Section Styles */
.cta-section {
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.05);
  margin-top: 24px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button.primary {
  background: #889a8c;
  color: white;
}

.cta-button.primary:hover {
  background: #6b7c6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(136, 154, 140, 0.4);
}

.cta-button.secondary {
  background: #f3f4f6;
  color: #374151;
  border: 2px solid #e5e7eb;
}

.cta-button.secondary:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

/* Responsive Design for CTA */
@media (max-width: 1024px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 16px;
  }
  
  .cta-title {
    font-size: 1.25rem;
  }
  
  .cta-description {
    font-size: 0.875rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
} 
