/* Loading Skeleton Styles */
.loading-skeleton-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f8f8ff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loading-skeleton-wrapper.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-skeleton-container {
  max-width: 1200px;
  width: 90%;
  padding: 2rem;
}

/* Skeleton Brand */
.skeleton-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 3rem;
}

/* Skeleton Hero */
.skeleton-hero {
  margin-bottom: 4rem;
  text-align: center;
}

.skeleton-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Skeleton Cards */
.skeleton-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.skeleton-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Base Skeleton Elements */
.skeleton {
  background: linear-gradient(
    90deg,
    #e0e0e0 0%,
    #f0f0f0 50%,
    #e0e0e0 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

.skeleton-text {
  height: 16px;
  border-radius: 4px;
}

.skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.skeleton-box {
  width: 100%;
  border-radius: 16px;
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .skeleton-hero .skeleton-text:first-child,
  .skeleton-hero .skeleton-text:nth-child(2) {
    width: 90% !important;
    height: 32px !important;
  }
  
  .skeleton-cards {
    grid-template-columns: 1fr;
  }
  
  .skeleton-social .skeleton-circle {
    width: 40px;
    height: 40px;
  }
}
