.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding: 0 30px;
    z-index: 100;
}

.navbar img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 15px;
}

.navbar span {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

body {

  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #ddd;
  margin: 0;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #29a3ff;
}

.content {
  max-width: 600px;
  width: 90%;
  text-align: center;
  z-index: 5;
}

h1, h2 {
  color: #29a3ff;
}

.download-button {
  display: inline-block;
  margin: 12px 0 8px 0;
  padding: 12px 25px;
  background: #29a3ff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(41, 163, 255, 0.5);
  transition: background 0.3s ease;
  cursor: pointer;
}

.download-button:hover {
  background: #1f7fcc;
  box-shadow: 0 7px 20px rgba(31, 127, 204, 0.7);
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 300%;
  height: 300%;
  pointer-events: none;
  z-index: -10;

  background: radial-gradient(circle at 20% 40%, rgba(0, 74, 173, 0.5), transparent 60%),
              radial-gradient(circle at 80% 60%, rgba(0, 132, 255, 0.6), transparent 70%),
              radial-gradient(circle at 50% 50%, rgba(255, 69, 100, 0.4), transparent 80%),
              radial-gradient(circle at 10% 90%, rgba(255, 165, 0, 0.3), transparent 90%);
  
  background-size: 500% 500%;
  animation: softFlow 60s ease-in-out infinite, lightPulse 10s ease-in-out infinite, floatShapes 15s ease-in-out infinite;
}

@keyframes softFlow {
  0%   { background-position: 0% 0%; filter: brightness(1); }
  25%  { background-position: 50% 30%; filter: brightness(1.05); }
  50%  { background-position: 100% 60%; filter: brightness(1.1); }
  75%  { background-position: 150% 30%; filter: brightness(1.05); }
  100% { background-position: 200% 0%; filter: brightness(1); }
}

@keyframes floatShapes {
  0%   { transform: translateY(0) scale(1); opacity: 0.15; }
  50%  { transform: translateY(-15px) scale(1.1); opacity: 0.25; }
  100% { transform: translateY(0) scale(1); opacity: 0.15; }
}

@keyframes lightPulse {
  0%   { opacity: 0.05; transform: scale(1); }
  50%  { opacity: 0.15; transform: scale(1.2); }
  100% { opacity: 0.05; transform: scale(1); }
}