body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient( 180deg, #F9F5FF 0%, #EEDCFA 50%, #D58BE8 100%);
  color: #4A2A70;
}

.page {
  width: 85%;
  max-width: 1200px;
  margin: 40px auto;
}

.back-button {
  text-decoration: none;
  color: #7A4BAB;
  font-weight: bold;
  transition: 0.3s;
}

.back-button:hover {
color: #D58BE8;
}

.hero {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 70px;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 15px;
  color: #7A4BAB;
}

.subtitle {
  font-size: 22px;
  color: #8B68B8;
}

.continent {
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 10px 25px rgba(122, 75, 171, 0.2);
  transition: transform 0.3s ease,
  box-shadow 0.3s ease;
}

.continent:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(122, 75, 171, 0.35);
}

.continent h2 {
  color: #7A4BAB;
  font-size: 32px;
  margin-top: 0;
  text-decoration: none;
}

.continent p {
  color: #4A2A70;
  font-size: 18px;
  line-height: 1.7;
}

.continent-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.continent-link:visited,
.continent-link:link,
.continent-link:active {
  text-decoration: none;
  color: inherit;
}

.continent-link h2,
.continent-link p {
  text-decoration: none;
}

h2, p {
  text-decoration: none;
}