* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  padding: 28px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #b3b1b1;
  color: #2c2c2c;
  font-family: Arial, Helvetica, sans-serif;
}
a { text-decoration: none; }
button { font: inherit; }
.image-container {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.image-container img { width: 100%; height: 100%; object-fit: cover; }
.text-container {
  width: 90%;
  max-width: 600px;
  margin-bottom: 20px;
  padding: 0 15px;
  text-align: center;
  overflow-wrap: anywhere;
}
.text-container h1 { margin: 0 0 10px; font-size: 24px; font-weight: 700; }
.text-container p {
  margin: 1em 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-align: justify;
}
.second-image-container { width: 90%; max-width: 600px; }
.second-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  cursor: pointer;
}
.second-button {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 1000;
  width: 90%;
  max-width: 600px;
  min-height: 82px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
  border: 2px solid #b3b1b1;
  border-radius: 30px;
  background: #4caf50;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  animation: pulse 2s infinite;
}
.second-button:hover,
.second-button:active { background: #b3b1b1; border-color: #fff; color: #fff; }
.second-button img { width: 50px; height: 50px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; }
@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}
.ys { margin: 2rem 0; color: #000; font-size: 14px; }
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow-y: auto;
  background: rgba(0,0,0,.6);
}
.modal[aria-hidden="false"] { display: block; }
.modal-content {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,.3);
}
.close-btn { position: absolute; top: 10px; right: 15px; color: #333; font-size: 24px; cursor: pointer; }
.policy-content { max-height: 60vh; overflow-y: auto; padding-right: 10px; }
@media (max-width: 768px) {
  .text-container h1 { font-size: 20px; }
  .text-container p { font-size: 14px; }
  .second-button { padding: 14px; font-size: 16px; }
  .second-button img { width: 40px; height: 40px; }
}
