* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
  height: 100%;
  font-family: 'Comic Neue', Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

#main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  padding: 20px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  margin-bottom: 50px;
  max-width: 200px;
  width: 20%;
  height: auto;
}

.connect-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  user-select: none;
}

.tap-text, .connect-text {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
}

.icon-container {
  background-color: #FFD700;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotate-arrow {
  font-size: 48px;
  color: #000;
  display: inline-block;
  transform-origin: center;
  transition: transform 0.3s;
}

.fast-rotate { animation: rotate 1s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.toggle-label { font-size: 24px; }
.coming-soon { color: #9c9c9c; font-size: 14px; font-weight: 700; margin-left: 3px; }

.switch { position: relative; display: inline-block; width: 60px; height: 34px; }
.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  inset: 0;
  background-color: #FFD700;
  border-radius: 34px;
  cursor: pointer;
  transition: background-color 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.4s;
}

.slider-icon {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: transform 0.4s;
}

.slider-icon i { font-size: 14px; color: #000; }
.switch input:checked + .slider:before { transform: translateX(26px); }
.switch input:checked + .slider .slider-icon { transform: translateX(26px) translateY(-50%); }

.hidden { display: none; }

.error-message{
  margin-top: 10px;
  color: #ff3b3b;
  font-size: 16px;
  font-weight: 700;
}

.status-message{
  margin-top: 6px;
  color: #b8b8b8;
  font-size: 14px;
  font-weight: 700;
}

/* Bigger info text + spacing before footer */
.info-text{
  font-size: 20px;
  font-weight: 700;
  color: #d8d8d8;
  margin-top: 10px;
  margin-bottom: 14px;
}

/* ✅ Footer slim + merged (no separator line) */
footer{
  margin-top: 12px;
  padding-top: 4px;
  border-top: none; /* ✅ remove divider */
}

footer p {
  font-size: 12px; /* slimmer */
  color: #bdbdbd;
  line-height: 1.3;
}

footer a {
  color: #d9d9d9;
  text-decoration: none;
}

footer a:hover { color: #fff; }
.footer-link { margin-right: 10px; }
.footer-separator { margin: 0 5px; color:#7a7a7a; }

@media screen and (max-width: 768px) {
  .tap-text, .connect-text { font-size: 28px; }
  .rotate-arrow { font-size: 36px; }
  .toggle-label { font-size: 20px; }
  .info-text{ font-size: 18px; }
}

@media screen and (max-width: 480px) {
  main { gap: 15px; }
  .tap-text, .connect-text { font-size: 22px; }
  .rotate-arrow { font-size: 28px; }
  .toggle-label { font-size: 18px; }
  .coming-soon { font-size: 12px; margin-left: 2px; }
  .info-text{ font-size: 16px; margin-bottom: 12px; }
  footer p { font-size: 11px; }
}
