body,
.landing {
  background: transparent !important;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 15% 50%, rgba(255, 0, 85, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 0, 85, 0.15), transparent 25%);
  background-color: var(--bg-darker);
  overflow: hidden;
}

.animated-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: moveBackground 50s linear infinite;
  transform: perspective(500px) rotateX(60deg);
}

@keyframes moveBackground {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }

  100% {
    transform: perspective(500px) rotateX(60deg) translateY(30px);
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-darker);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spinner 1s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glow-text {
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.4), 0 0 40px rgba(255, 0, 85, 0.2);
}

.glow-box:hover {
  box-shadow: 0 0 25px rgba(255, 0, 85, 0.2);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

.title-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.landing .hero .content .title {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: initial;
  background-clip: border-box;
  color: #fff;
}

.landing .hero .content .title .highlight-text {
  color: var(--primary);
  text-shadow: 0 0 25px rgba(255, 0, 85, 0.5);
  font-weight: 700;
}

.modern-card {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.btn-pulse {
  position: relative;
  overflow: hidden;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-pulse:active::after {
  width: 300px;
  height: 300px;
}

.hero-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  margin-top: 0 !important;
  box-sizing: border-box;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-lighter);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  animation: fadeIn 1.5s ease-out;
  cursor: pointer;
  text-decoration: none;
  z-index: 10;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.2);
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
  box-shadow: 0 0 5px var(--primary);
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
    height: 8px;
  }

  100% {
    top: 24px;
    opacity: 0;
    height: 4px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

footer.footer,
.footer {
  background: rgba(10, 10, 10, 0.4) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none !important;
  position: relative;
  z-index: 2;
}

.stats-container {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .stats-container {
    justify-content: flex-start;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 15px 25px;
  border-radius: 12px;
  min-width: 140px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.hidden-mobile-menu {
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  width: auto;
  height: auto;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 20000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transform-origin: top right;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1382px;
}

.hidden-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hidden-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.hidden-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hidden-logo img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.hidden-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.hidden-close-btn:hover {
  color: var(--primary);
}

.hidden-menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.hidden-link-card {
  display: block;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hidden-link-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  border-color: var(--primary);
  color: white;
}

.hidden-menu-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hidden-auth-btn {
  padding: 16px 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.hidden-auth-btn.login {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden-auth-btn.signup {
  background: transparent;
  border: none;
  color: white;
  background: linear-gradient(90deg, #ff0055, #ff4d88);
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
}

.hidden-auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11000;
  transition: all 0.3s ease;
}

.header-card {
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 1000;
}

.header.scrolled .header-card {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: none !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
  border-radius: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media (max-width: 768px) {


  .landing .hero .preview {
    display: none !important;
  }

  .scroll-indicator {
    bottom: 80px;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding: 0 10px;
}

.feature-card {
  padding: 24px;
  text-align: left;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 85, 0.1);
  border-color: rgba(255, 0, 85, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.feature-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #ff0055, #ff4d88);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 0, 85, 0.3));
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-bottom: 0;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  padding-left: 0;
}

@media (prefers-reduced-motion: reduce) {
  .feature-card {
    transition: none;
  }

  .feature-card:hover {
    transform: none;
  }
}