/* Alerts Page Styles */

.alerts-main {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.alerts-content {
  background: rgba(18, 18, 18, 0.9);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Alert Info Section */
.alert-info {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(0, 26, 51, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(68, 218, 255, 0.2);
}

.alert-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-15deg);
  }
  20%, 40% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

.alert-info h2 {
  color: #44daff;
  font-size: 28px;
  margin-bottom: 15px;
}

.alert-info p {
  color: #88e0ff;
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Signup Form */
.signup-section {
  margin-bottom: 50px;
}

.signup-form {
  background: rgba(0, 26, 51, 0.5);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(68, 218, 255, 0.2);
}

.signup-form h3 {
  color: #44daff;
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #44daff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(68, 218, 255, 0.3);
  border-radius: 6px;
  color: #88e0ff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #44daff;
  box-shadow: 0 0 10px rgba(68, 218, 255, 0.3);
}

.form-group small {
  display: block;
  color: #88e0ff;
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.8;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: #88e0ff;
  font-size: 14px;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #44daff, #2288cc);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #2288cc, #44daff);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(68, 218, 255, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(0, 255, 136, 0.2);
  border: 1px solid rgba(0, 255, 136, 0.5);
  color: #00ff88;
}

.form-message.error {
  display: block;
  background: rgba(255, 68, 102, 0.2);
  border: 1px solid rgba(255, 68, 102, 0.5);
  color: #ff4466;
}

/* How It Works */
.how-it-works {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(0, 26, 51, 0.3);
  border-radius: 10px;
}

.how-it-works h2 {
  color: #44daff;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.work-item {
  text-align: center;
  padding: 20px;
  background: rgba(0, 26, 51, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(68, 218, 255, 0.2);
  transition: all 0.3s ease;
}

.work-item:hover {
  transform: translateY(-5px);
  border-color: #44daff;
  box-shadow: 0 5px 15px rgba(68, 218, 255, 0.3);
}

.work-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #44daff, #2288cc);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 15px;
}

.work-item h4 {
  color: #44daff;
  font-size: 18px;
  margin-bottom: 10px;
}

.work-item p {
  color: #88e0ff;
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 30px;
  background: rgba(0, 26, 51, 0.3);
  border-radius: 10px;
}

.faq-section h2 {
  color: #44daff;
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}

.faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 26, 51, 0.5);
  border-left: 4px solid #44daff;
  border-radius: 6px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h4 {
  color: #44daff;
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-item p {
  color: #88e0ff;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .alerts-content {
    padding: 20px;
  }

  .signup-form,
  .alert-info,
  .how-it-works,
  .faq-section {
    padding: 20px;
  }

  .alert-icon {
    font-size: 48px;
  }

  .alert-info h2,
  .how-it-works h2,
  .faq-section h2 {
    font-size: 24px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }
}
