body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
}

.test-ended-container {
  max-width: 800px;
  margin: 20px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.test-ended-content {
  text-align: center;
}

.logo {
  width: 100px;
  height: 100px;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-out;
}

.test-ended-content h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(92deg, #0A58A5 2.06%, #1D252B 153.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-you {
  color: #445972;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.message-box {
  background: rgba(249, 249, 250, 0.8);
  border: 1px solid rgba(223, 229, 236, 0.5);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.message-box p {
  color: #445972;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.email-link {
  display: inline-block;
  color: #0A58A5;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 15px;
  background: rgba(9, 88, 165, 0.1);
  transition: all 0.3s ease;
}

.email-link:hover {
  background: rgba(9, 88, 165, 0.15);
  transform: translateY(-2px);
}

.model-link {
  margin-top: 30px;
  color: #445972;
  font-size: 14px;
}

.model-link a {
  color: #0A58A5;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.model-link a:hover {
  border-bottom-color: #0A58A5;
  transform: translateY(-1px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .test-ended-container {
    margin: 15px;
    padding: 30px;
  }

  .test-ended-content h1 {
    font-size: 24px;
  }

  .thank-you {
    font-size: 18px;
  }

  .message-box {
    padding: 25px;
  }

  .message-box p {
    font-size: 16px;
  }

  .email-link {
    font-size: 18px;
  }
} 