* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 50%, #2d1b69 100%);
  min-height: 100vh;
  color: #ffffff;
  overflow-x: hidden;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}

.header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.orbital-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: -1;
}

.ring {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.ring:nth-child(1) {
  width: 100%;
  height: 100%;
  border-color: rgba(138, 43, 226, 0.3);
  animation-duration: 20s;
}

.ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: rgba(75, 0, 130, 0.4);
  animation-duration: 15s;
  animation-direction: reverse;
}

.ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-color: rgba(123, 104, 238, 0.5);
  animation-duration: 10s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.planet {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4169e1, #9370db);
  border-radius: 50%;
  margin: 0 auto 30px;
  position: relative;
  box-shadow: 0 0 40px rgba(138, 43, 226, 0.6);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.6);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(138, 43, 226, 0.8);
  }
}

.subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #fff, #e0c3fc, #9bb5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 1.8rem;
  color: #e0c3fc;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.section h2::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #9bb5ff;
  font-size: 1.2rem;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

.section p,
.section li {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.section ul {
  padding-left: 20px;
}

.section li {
  margin-bottom: 10px;
}

.contact-info {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.2),
    rgba(75, 0, 130, 0.2)
  );
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
  border: 1px solid rgba(138, 43, 226, 0.3);
}

.highlight {
  color: #9bb5ff;
  font-weight: bold;
}

.back-button {
  position: fixed;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.back-button:hover {
  background: rgba(138, 43, 226, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .content {
    padding: 25px;
  }

  .orbital-rings {
    width: 200px;
    height: 200px;
  }

  .planet {
    width: 60px;
    height: 60px;
  }
}
