* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0b1c2d, #0a4fa3);
  color: #fff;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  flex-wrap: wrap;
}

.content {
  max-width: 500px;
}

.logo {
  width: 260px;
  margin-bottom: 20px;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.content p {
  font-size: 18px;
  opacity: 0.9;
}

.store-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.store-buttons img {
  width: 160px;
  cursor: pointer;
  transition: transform 0.3s;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

/* Phone Mockup */
.phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  width: 280px;
  height: 560px;
  border-radius: 30px;
  background: #000;
  padding: 15px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a4fa3, #000);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dummy animation */
.loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .phone {
    margin-top: 40px;
  }
}
