/* Synthwave '84 Inspired Theme */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #1a1a2e; /* deep retro dark */
  color: #f8f8ff;
  display: flex;
  justify-content: center;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 500px;
  margin-top: 40px;
}

/* Logo */
.logo {
  width: 110px;
  height: auto;
  margin-bottom: 15px;
}

/* Title */
.title {
  font-size: 2.2rem;
  margin: 0;
  color: #ff77ff;
  text-shadow: 0 0 10px #ff00ff;
}

/* Subtitle */
.subtitle {
  margin-top: 5px;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #cfcfff;
  opacity: 0.9;
}

/* Buttons */
.button {
  display: block;
  margin: 12px 0;
  padding: 14px;
  background: linear-gradient(90deg, #ff00ff, #00eaff);
  color: #1a1a2e;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.2s;
}

.button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px #00eaff;
}

/* Ad Box */
.ad-box {
  width: 100%;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed #ff00ff;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 0 12px #ff00ff;
}
