@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/montserrat_regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/montserrat_bold.ttf') format('truetype');
  font-weight: bold;
}

@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/montserrat_light.ttf') format('truetype');
  font-weight: 300;
}

body {
margin: 0;
font-family: 'Montserrat', Arial, sans-serif;
background-color: #000;
color: #333;
}

h1 {
  font-weight: bold;
}

.description {
  font-weight: 300;
}

p {
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #000;
  color: #fff;
}

header .logo {
  font-weight: bold;
  font-size: 18px;
}

@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.25);
  }
}

.header-app-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.header-app-logo-link:hover {
  transform: scale(1.05);
}

.header-app-logo-container {
  width: 56px;
  height: 56px;
  background-color: #000;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
  animation: pulse-shadow 3s ease-in-out infinite;
}

.header-app-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.color-bar {
  height: 10px;
  display: flex;
}

.color-bar div {
  flex: 1;
}

.color-bar {
  height: 10px;
  display: flex;
  background: linear-gradient(90deg, #E94B76, #FFE673, #63F7DE, #63E4F7, #6384F7, #8D63F7, #EE8FF9, #E94B76);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

.color-bar div {
  flex: 1;
  opacity: 0;
}

@keyframes shimmer {
  0% {
      background-position: 0% center;
  }
  100% {
      background-position: 200% center;
  }
}

.hero {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 32px;
  margin: 10px 0;
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
  color: #ddd;
}

.app-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-header img {
  width: 80px;
  height: 80px;
}

.app-section {
  background-color: #6c63ff;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}

.rounded-block {
  background-color: #000;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto 0 auto;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.symbol-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.symbol {
  width: 28px;
  height: auto;
  opacity: 0.3;
  position: absolute;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
  transition: opacity 0.3s ease;
}

.symbol-large {
  width: 28px;
}

.symbol-medium {
  width: 22px;
}

.symbol-small {
  width: 16px;
}

.app-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.app-section .description {
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.5;
}

.screenshots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.screenshot-link {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-link:hover {
  transform: scale(1.05);
}

.screenshot-link img {
  width: 280px;
  height: auto;
  max-width: 45vw;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: block;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.playstore-btn {
  text-align: center;
  margin: -34px auto 40px auto;
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.playstore-btn img {
  width: 220px;
  margin-top: 0;
}

footer {
  background-color: #000;
  color: #888;
  padding: 40px 20px 20px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.support-link,
.privacy-link {
  color: #888;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.support-link:hover,
.privacy-link:hover {
  opacity: 0.7;
}

.footer-icons {
  margin: 0;
  display: flex;
  gap: 15px;
}

.footer-icons a {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-icons img {
  width: 32px;
  height: 32px;
}

.footer-copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.playstore-btn-footer {
  text-align: center;
}

.playstore-btn-footer img {
  width: 144px;
}

@media (max-width: 768px) {
  header {
      flex-direction: column;
      text-align: center;
      gap: 12px;
  }

  .header-app-logo-container {
      width: 56px;
      height: 56px;
  }

  .hero {
      padding: 60px 15px;
  }

  .hero h1 {
      font-size: 26px;
  }

  .app-section {
      padding: 40px 16px;
  }

  .screenshots {
      flex-direction: column;
      align-items: center;
  }

  .screenshot-link img {
      width: 250px;
      max-width: 80vw;
  }

  .symbol-field {
      position: absolute;
      inset: 0;
  }

  .symbol {
      width: 22px;
  }

  .symbol-large {
      width: 22px;
  }

  .symbol-medium {
      width: 18px;
  }

  .symbol-small {
      width: 14px;
  }

  .lightbox-close {
      top: 10px;
      right: 20px;
      font-size: 30px;
  }

  .footer-content {
      flex-direction: column;
      gap: 30px;
      align-items: center;
  }

  .footer-left {
      align-items: center;
      text-align: center;
  }

  .footer-right {
      width: 100%;
      align-items: center;
  }
}

.content-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.policy-content {
  max-width: 800px;
  width: 100%;
  padding-top: 40px;
}

.policy-content h1 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.policy-content h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #E94B76;
  font-weight: bold;
}

.policy-content p {
  line-height: 1.6;
  margin-bottom: 12px;
  color: #ddd;
  font-weight: normal;
}

.points {
  text-align: left;
  display: inline-block;
  margin: 12px 0;
  padding-left: 20px;
}

.points li {
  margin-bottom: 10px;
  color: #ddd;
  line-height: 1.6;
}

.points li::marker {
  color: #E94B76;
}

.policy-content a {
  color: #E94B76;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.policy-content a:hover {
  opacity: 0.8;
}

.bold-text {
  font-weight: bold;
}
