@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

:root {
  --primary-color: #ffffff;
  --text-color: #111111;
  --bg-color: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--primary-color);
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.main-container {
  width: 100%;
  min-height: 100vh;
  background-color: var(--primary-color);
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin: 0;
}

/* Header */
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 4rem;
  color: var(--text-color);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  max-height: 60px;
  width: auto;
  transform: scale(2.5);
  transform-origin: center center;
}

/* Hero Section */
.hero {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}


/* Content Area */
.content-area {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-color);
  text-align: center;
}

.description-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.description-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}

.description-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
}

.content-area ul {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.content-area li {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-area li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.content-area li strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.4rem;
}

.actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.5rem;
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: left;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn-store:hover {
  background-color: #222;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-store .small-text {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.btn-store .large-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Screenshots */
.screenshots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  padding: 2rem clamp(1rem, 4vw, 4rem);
  overflow-x: auto;
  scrollbar-width: none;
}

.screenshots-container::-webkit-scrollbar {
  display: none;
}


.screenshot-image {
  flex: 0 0 auto;
  height: clamp(250px, 40vw, 400px);
  width: auto;
  border-radius: clamp(10px, 1.5vw, 20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: #000;
}



/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .logo-image {
    transform: scale(2);
  }


  .actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-store {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .screenshots-container {
    justify-content: flex-start;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .content-area {
    padding: 0 1rem;
  }
}