/* WebVulnLab Modules Whitelist Styles */

.modules-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-color) 0%, #001845 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.modules-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(58, 134, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.modules-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.modules-logo {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  margin-top: 5rem;
}

.modules-subtitle {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(30px);
}

.modules-description {
  font-size: 1.1rem;
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.whitelist-card {
  background: var(--card-background);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem auto;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.whitelist-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.whitelist-info {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.terms-notice {
  background: rgba(255, 0, 110, 0.1);
  border: 1px solid rgba(255, 0, 110, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--accent-color);
  text-align: left;
}

.terms-notice strong {
  color: var(--accent-color);
}

.whitelist-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.whitelist-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.whitelist-btn:hover::before {
  left: 100%;
}

.whitelist-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  top: 20%;
  left: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  top: 60%;
  right: 15%;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  bottom: 20%;
  left: 20%;
}

/* Confirmation Page Styles */
.confirmation-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-color) 0%, #001845 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.confirmation-content {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
  opacity: 0;
  transform: scale(0);
}

.confirmation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.confirmation-message {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

.next-steps {
  background: var(--card-background);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
}

.next-steps h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 0.5rem 0;
  color: var(--text-color);
  opacity: 0.9;
  position: relative;
  padding-left: 1.5rem;
}

.next-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.back-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.back-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .modules-logo {
    font-size: 2.5rem;
  }

  .modules-subtitle {
    font-size: 1.2rem;
  }

  .whitelist-card {
    padding: 2rem;
    margin: 1rem;
  }

  .confirmation-title {
    font-size: 2rem;
  }
}

.access-link {
  margin-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-secondary);
}

.access-link a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.access-link a:hover {
  color: var(--accent-color-hover);
}

