 * {
  box-sizing: border-box;
 }
 
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  font-family: 'Inter', sans-serif;
  color: #f0f0f0;
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center; 
  margin: 20px;
  gap: 20px;
}

.start, .top {
  text-align: left;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 0 25px rgba(138,43,226,0.3);
}

.top {
  padding: 30px 20px 30px 20px;
}

.top h1 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: #a3e4ff;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.top h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-top: 0;
}

.start {
  padding: 40px 20px 40px 20px;
  line-height: 1.7rem;
}

.start h3 {
  color: #a3e4ff;
  width: 90%;
  margin: 0 auto 10px auto;
}

.start p {
  font-size: 1.1rem;
  margin: auto;
  width: 90%;
}

.start a {
  color: #ffffff;
}

.start a:hover {
  text-decoration: none;
}

.start ul {
  width: 90%;
  margin: auto;
}

.start li {
  padding: 0 0 10px 1px;
}

.cta-button {
  display: block;
  width: fit-content;
  background: linear-gradient(90deg, #6a5acd, #00ced1);
  margin: 30px auto 0 auto;
  color: white;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: bold;
  transition: box-shadow 0.3s ease;
}

.cta-button:hover {
  box-shadow: 0 0 20px #a3e4ff;
}

footer {
  padding: 1px 0 20px 0;
}

footer p {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}

footer a {
  color: #999;
}