@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;
}

.hero-title {
  color: var(--text-color);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.brush-stroke {
  position: absolute;
  bottom: -15px;
  left: -5%;
  width: 110%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.hero-title .highlight span {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin: 2rem auto 3rem;
  line-height: 1.6;
}

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

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

.content-area li {
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.05rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.content-area li strong {
  color: #000;
}

.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;
  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-placeholder {
  flex: 0 0 auto;
  width: clamp(120px, 16vw, 250px);
  height: auto;
  aspect-ratio: 1 / 2;
  background-color: rgba(0, 0, 0, 0.05);
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: clamp(10px, 1.5vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.screenshot-image {
  flex: 0 0 auto;
  width: clamp(120px, 16vw, 250px);
  height: auto;
  aspect-ratio: 1 / 2;
  object-fit: cover;
  border-radius: clamp(10px, 1.5vw, 20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: #000;
}

/* Privacy Link */
.privacy-link {
  display: inline-block;
  margin-top: 2.5rem;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.privacy-link:hover {
  color: #000;
  text-decoration: underline;
}

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

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

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin: 1.5rem auto 2rem;
  }

  .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;
  }
}