html,
body {
  background-color: #000;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    Fira Sans,
    Droid Sans,
    Helvetica Neue,
    sans-serif;
  padding: 0;
  margin: 0;
  color: #fff;
}

a {
  color: #4da6ff;
}
a:visited {
  color: #4da6ff;
}

/*  */
/*  */
/*  */

body {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

main {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  width: 100%;
  display: flex;
  height: 100dvh;
  padding: 0 20px;
  box-sizing: border-box;
}

#logo {
  width: 160px;
}

#value-text {
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
}

.store.apple {
  margin-bottom: 10px;
  margin-top: 20px;
}
.store.google {
  margin-bottom: 10px;
}
.store > img {
  height: 50px;
}

/* Download App Button */
.download-app-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #4da6ff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(77, 166, 255, 0.3);
}

.download-app-button:hover {
  background-color: #3a8fdd;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(77, 166, 255, 0.4);
}

.download-app-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(77, 166, 255, 0.3);
}

#stars {
  font-weight: 600;
  font-size: 20px;
  color: #4da6ff;
}

#ratings {
  margin-top: 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

#help-title {
  margin-bottom: 0px;
  font-weight: 700;
  margin-top: 35px;
  font-size: 20px;
}

#help-text {
  text-align: center;
  margin-top: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* Video Thumbnail with Play Button */
.video-thumbnail-container {
  position: relative;
  display: block;
  cursor: pointer;
  margin: 15px auto 0;
  width: fit-content;
  max-width: 100%;
}

.video-thumbnail {
  width: 600px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.video-thumbnail-container:hover .video-thumbnail {
  opacity: 0.9;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.video-play-button svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  display: block;
}

/* Download Modal Styles */
.download-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.download-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.download-modal {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.download-modal-overlay.show .download-modal {
  transform: scale(1);
}

.download-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.download-modal-close:hover {
  color: #4da6ff;
}

.download-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.download-modal-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-modal-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-modal-header h2 {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

.download-modal-content {
  margin-bottom: 25px;
}

.download-modal-content p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.download-modal-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #4da6ff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.download-btn:hover {
  background-color: #3a8fdd;
}

.download-btn-secondary {
  background-color: #333;
  color: #fff;
}

.download-btn-secondary:hover {
  background-color: #444;
}

.download-info {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.download-info p {
  color: rgba(255, 255, 255, 0.6);
}

/* Contact Form Styles */
.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  background-color: #2a2a2a;
  border: 2px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #4da6ff;
  background-color: #333;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input.error {
  border-color: #ff4444;
  background-color: #3a1f1f;
}

.error-message {
  display: block;
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  min-height: 18px;
}

.success-message {
  text-align: center;
  padding: 20px;
  background-color: rgba(77, 166, 255, 0.1);
  border: 2px solid #4da6ff;
  border-radius: 8px;
  margin-top: 20px;
}

.success-message p {
  margin: 0;
  color: #4da6ff;
  font-size: 16px;
  font-weight: 600;
}

/* Video Modal Styles */
.video-modal {
  max-width: 800px;
}

.video-container {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  background-color: #000;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px;
}

.video-error p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.9);
}

.video-error a {
  color: #4da6ff;
  text-decoration: underline;
}
