canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.custom-footer {
      background-color: #0a0a23;
      border-top: 1px solid #1e293b;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
      padding: 2rem 1.5rem;
      font-size: 1.05rem;
      font-weight: 500;
      color: #e5e7eb;
      border-radius: 8px;
    }

    .footer-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-left {
      flex: 1;
      min-width: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }

    .logo-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .logo-image {
      max-height: 120px;
      width: auto;
      border-radius: 8px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .logo-image:hover {
      transform: scale(1.05);
    }

    .shop-name {
      font-size: 2.2rem;
      font-weight: 700;
      color: #4f46e5;
      margin-top: 1rem;
    }

    .footer-description {
      margin-top: 1.5rem;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      font-size: 1rem;
      line-height: 1.5;
      color: #9ca3af;
    }

    .footer-right {
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 2rem;
      margin-top: 2rem;
    }

    .section {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      width: 100%;
    }

    .section-title {
      font-size: 1.2rem;
      color: #e5e7eb;
      margin-bottom: 1rem;
      border-bottom: 2px solid #4f46e5;
      padding-bottom: 0.5rem;
      text-align: center;
    }

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

    .section-link {
      display: block;
      padding: 0.75rem 1.25rem;
      background-color: #1e293b;
      border-radius: 8px;
      color: #e5e7eb;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      text-align: center;
    }

    .section-link:hover {
      background-color: #374151;
      color: #4f46e5;
      transform: translateY(-2px);
    }

    .footer-copyright {
      margin-top: 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: #6b7280;
    }

.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem; /* Base padding for larger screens */
}

.bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
  z-index: 0;
  letter-spacing: 2px;
  animation: moveBackgroundText 40s linear infinite;
  text-transform: uppercase;
}

@keyframes moveBackgroundText {
  0% { transform: translate(-50%, -50%) translateX(-10vw); }
  100% { transform: translate(-50%, -50%) translateX(10vw); }
}

.container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.content {
  max-width: 800px;
  text-align: center;
}

.main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(45deg, #7dd3fc, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShine 4s ease-out infinite;
  text-transform: uppercase;
}

@keyframes textShine {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(125,211,252,0.4)); }
  50% { filter: drop-shadow(0 0 8px rgba(125,211,252,0.6)); }
}

.description {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  color: #e6f3ff;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.description::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #7dd3fc;
  animation: underlineExpand 3s ease-out infinite;
}

@keyframes underlineExpand {
  0%, 100% { width: 0; }
  50% { width: 30px; }
}

.button-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #0284c7, #7dd3fc);
  color: #fff;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.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: 0.3s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-join {
  background: transparent;
  border: 2px solid #7dd3fc;
  color: #7dd3fc;
}

.btn-join:hover {
  background: transparent;
  border: 2px solid #7dd3fc;
  color: #7dd3fc;
  transform: translateY(-2px);
}

.arrow-icon {
  height: 0.9rem;
  width: 0.9rem;
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
}

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

.image {
  max-width: clamp(200px, 20vw, 300px);
  margin: 1rem auto 0;
}

.img-fluid {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.image:hover .img-fluid {
  transform: scale(1.03);
}

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.mouse-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mouse-icon {
  width: 20px;
  height: 20px;
  color: #fff;
}

.scroll-text {
  font-size: 0.65rem;
  color: #fff;
  margin-top: 0.3rem;
  font-weight: 600;
}

.bounce-arrow {
  animation: bounce 2s infinite ease-in-out;
}

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

.animate-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.6s ease-out forwards;
}

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

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.3s; }
.animate-in:nth-child(3) { animation-delay: 0.5s; }

@media (min-width: 769px) {
  .main-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    margin-bottom: 1.5rem;
  }
  .description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
  }
  .button-group {
    margin-bottom: 1.5rem;
  }
  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
  .image {
    max-width: 400px;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    padding-top: 5.5rem; /* Increased padding for mobile to avoid navbar overlap */
  }
  .container {
    flex-direction: column;
    padding: 1rem 0.8rem;
  }
  .main-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    margin-bottom: 0.8rem;
  }
  .description {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    margin-bottom: 1rem;
    padding: 0 0.8rem;
  }
  .button-group {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0 0.8rem;
  }