
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Tahoma, sans-serif;

  background: #101414;
  color: #ffffff;
}

/* Main */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 20px;

  text-align: center;

  background:
    radial-gradient(
      circle at 85% 15%,
      #08744355,
      transparent 35%
    ),
    radial-gradient(
      circle at 10% 90%,
      #d6282825,
      transparent 30%
    ),
    #101414;
}

.container {
  width: 100%;
  max-width: 700px;
}

/* Logo */

.logo {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  margin-bottom: 30px;

  direction: ltr;

  font-size: 22px;
}

.logo-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #087443;

  font-size: 24px;

  box-shadow:
    0 10px 30px #08744344;
}

/* Badge */

.badge {
  display: inline-block;

  padding: 8px 18px;

  margin-bottom: 22px;

  border-radius: 50px;

  color: #6ee7a8;

  background: #08744322;

  border: 1px solid #08744366;

  font-size: 14px;
  font-weight: bold;
}

/* Heading */

h1 {
  font-size: clamp(45px, 8vw, 80px);

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -2px;
}

h1 span {
  display: block;

  margin-top: 5px;

  color: #55d995;
}

/* Description */

.description {
  max-width: 520px;

  margin: 25px auto 35px;

  color: #aab8b2;

  font-size: 18px;

  line-height: 1.9;
}

/* App Card */

.card {
  width: 100%;
  max-width: 480px;

  margin: 0 auto;

  padding: 22px;

  display: flex;
  align-items: center;

  gap: 18px;

  text-align: right;

  background: #ffffff0d;

  border: 1px solid #ffffff15;

  border-radius: 22px;

  box-shadow:
    0 20px 60px #00000055;

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);

  border-color: #08744366;

  box-shadow:
    0 25px 70px #00000066;
}

/* Music Icon */

.music-icon {
  width: 62px;
  height: 62px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #08744355,
      #08744322
    );

  font-size: 28px;
}

/* Card Content */

.card-content {
  flex: 1;
}

.app-status {
  display: inline-block;

  margin-bottom: 7px;

  color: #55d995;

  font-size: 12px;
  font-weight: bold;
}

.card h2 {
  margin-bottom: 7px;

  font-size: 20px;

  font-weight: 800;
}

.card p {
  max-width: 320px;

  color: #9ca9a4;

  font-size: 14px;

  line-height: 1.7;
}

/* Download Button */

.download-button {
  display: inline-block;

  margin-top: 15px;

  padding: 11px 20px;

  border-radius: 10px;

  background: #087443;

  color: #ffffff;

  text-decoration: none;

  font-size: 14px;

  font-weight: bold;

  transition: all 0.3s ease;
}

.download-button:hover {
  background: #0a9255;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px #08744344;
}

/* Website Status */

.website-status {
  margin-top: 28px;

  color: #ffffff66;

  font-size: 14px;
}

.website-status span {
  margin-left: 5px;
}

/* Footer */

.footer {
  margin-top: 35px;

  color: #ffffff44;

  font-size: 12px;

  direction: ltr;
}

/* Mobile */

@media (max-width: 600px) {

  .hero {
    padding: 30px 15px;
  }

  .logo {
    margin-bottom: 25px;
  }

  h1 {
    font-size: 48px;

    letter-spacing: -1.5px;
  }

  .description {
    margin-top: 20px;

    font-size: 16px;

    line-height: 1.8;
  }

  .card {
    padding: 17px;

    gap: 14px;
  }

  .music-icon {
    width: 52px;
    height: 52px;

    font-size: 23px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 13px;
  }

  .download-button {
    width: 100%;

    text-align: center;

    padding: 12px 15px;
  }

  .website-status {
    font-size: 13px;
  }
}