:root {
  --primary-color: #eeab74;
  --secondary-color: #000;
  --text-color: #141313;
  --card-bg: rgba(255, 255, 255, 0.493);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, #f8f7f6 0%, var(--primary-color) 100%);
  padding: 20px;
  text-align: center;
}

.container {
  max-width: 400px;
  width: 100%;
  min-width: 250px;
  margin: 0 auto;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  color: var(--text-color);
  margin-top: 10px;
}

.header h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header p {
  font-size: 1.1rem;
}

.app-icon {
  margin: 5px 0;
}

.app-icon img {
  width: 200px;
  height: auto;
  transition: width 0.3s ease;
}

.card {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 20px;
  margin-top: -60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  background-color: #777373;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.download-button img {
  margin-right: 10px;
}

.apple-icon,
.google-icon {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-small {
  font-size: 12px;
  margin-bottom: 2px;
}

.download-store {
  font-size: 16px;
  font-weight: bold;
}

.description-card {
  padding: 15px;
  margin-top: 16px;
  max-width: 400px;
  width: 100%;
}

.description-card p {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  text-align: left;
}

.description-card p strong {
  display: block;
  margin-bottom: 8px;
}

/* Breakpoints */
@media (max-width: 768px) {
  .app-icon img {
    width: 150px;
  }

  .apple-icon,
  .google-icon {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
  }

  .card {
    padding: 15px;
    margin-top: -40px;
  }

  .download-buttons {
    gap: 10px;
  }

  .download-button {
    padding: 10px 15px;
  }

  .app-icon img {
    width: 120px;
  }

  .apple-icon,
  .google-icon {
    height: 28px;
  }

  .header h1 {
    font-size: 1.5rem;
  }

  .header p {
    font-size: 1rem;
  }

  .description-card {
    padding: 12px;
    margin-top: 15px;
  }

  .description-card p {
    font-size: 16px;
    line-height: 1.25;
  }

  .description-card p strong {
    margin-bottom: 6px;
  }
}

@media (max-width: 320px) {
  .app-icon img {
    width: 100px;
  }

  .apple-icon,
  .google-icon {
    height: 24px;
  }
}
