body {
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
 
/* Background gradient animation */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff0051, #5500ff, #00e1ff);
  background-size: 600% 600%;
  animation: gradientShift 12s ease infinite;
  z-index: -1;
}
 
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
/* Floating shapes */
.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 10px;
  animation: float 6s infinite ease-in-out;
}
 
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-60px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
 
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}
 
.title {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 5px;
  animation: glitch 2s infinite;
  text-transform: uppercase;
}
 
@keyframes glitch {
  0% { text-shadow: 3px 3px #ff0051, -3px -3px #00e1ff; }
  50% { text-shadow: -3px -3px #ff0051, 3px 3px #00e1ff; }
  100% { text-shadow: 3px 3px #ff0051, -3px -3px #00e1ff; }
}
 
.subtitle {
  font-size: 1.4rem;
  margin-top: 10px;
  opacity: 0.85;
  animation: fadeIn 3s ease;
}
 
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
 
/* Loading bar */
.loader {
  width: 300px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}
 
.loader-bar {
  height: 100%;
  width: 0;
  background: #fff;
  animation: load 5s infinite;
}
 
@keyframes load {
  0% { width: 0%; }
  50% { width: 100%; }
  100% { width: 0%; }
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
  .title {
    font-size: 3.5rem;
    letter-spacing: 3px;
  }

  .subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .loader {
    width: 250px;
  }

  .shape {
    width: 60px;
    height: 60px;
  }
}

/* Responsive styles for mobile phones */
@media (max-width: 480px) {
  .title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 1rem;
    padding: 0 15px;
    line-height: 1.5;
  }

  .loader {
    width: 200px;
    height: 5px;
    margin-top: 30px;
  }

  .shape {
    width: 40px;
    height: 40px;
  }

  .container {
    padding: 15px;
  }

  @keyframes glitch {
    0% { text-shadow: 2px 2px #ff0051, -2px -2px #00e1ff; }
    50% { text-shadow: -2px -2px #ff0051, 2px 2px #00e1ff; }
    100% { text-shadow: 2px 2px #ff0051, -2px -2px #00e1ff; }
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .loader {
    width: 160px;
  }
}