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

html, body {
  height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #000000;
  color: white;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 20px 20px;
}

.header-section {
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
}

.welcome-text {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  opacity: 1;
}

.main-heading {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.disclaimer {
  font-size: 14px;
  color: #888888;
  font-weight: 400;
  line-height: 1.4;
}

.image-section {
  margin-bottom: 40px;
  max-width: 300px;
  width: 100%;
}

.main-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.button-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.continue-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.continue-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}

.explore-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.explore-btn:hover {
  background-color: white;
  color: black;
  transform: translateY(-1px);
}

/* Mobile responsiveness */
@media screen and (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }
  
  .main-heading {
    font-size: 28px;
  }
  
  .welcome-text {
    font-size: 14px;
  }
  
  .disclaimer {
    font-size: 13px;
  }
  
  .button-section {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .continue-btn, .explore-btn {
    font-size: 16px;
    padding: 14px 28px;
  }
}
