
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.fullscreen-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.appstore-button {
  position: absolute;
  bottom: 80px;
  left: 50px;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.appstore-button img {
  height: 40px;
  width: auto;
}

.appstore-button:hover {
  opacity: 0.8;
}

.privacy-link {
  position: absolute;
  bottom: 20px;
  left: 50px;
  color: white;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: normal;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.privacy-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Privacy Modal */
.privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.privacy-modal:target {
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  max-height: 80vh;
  margin: 20px;
  text-align: left;
  overflow-y: auto;
}

.privacy-content h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.privacy-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #444;
  font-size: 18px;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #666;
}

.privacy-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.privacy-content li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #666;
}

.privacy-text {
  margin-bottom: 30px;
}

.close-privacy {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
}

.close-privacy:hover {
  background-color: #0056b3;
}
