/* Recent Notifications History Page Styles */

body {
  line-height: 1.4;
  font-size: 16px;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

a {
  color: #9800de
}

.feature-list {
  padding: 20px 0;
}

/* Step Item Styles */
.step-item {
  text-align: center;
  padding: 20px;
  margin: 20px 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #9800de;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 15px;
  box-shadow: 0 0 15px rgba(152,0,222,0.5);
}

.step-item h4 {
  color: #fff;
  margin: 15px 0 10px;
  font-family: 'Orbitron', sans-serif;
}

.step-item p {
  color: #ccc;
  font-size: 14px;
}

/* Use Case Item Styles */
.use-case-item {
  text-align: center;
  padding: 20px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.use-case-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.use-case-item i {
  font-size: 3em;
  color: #9800de;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(152,0,222,0.5);
}

.use-case-item h4 {
  color: #fff;
  margin: 15px 0 10px;
  font-family: 'Orbitron', sans-serif;
}

.use-case-item p {
  color: #ccc;
  font-size: 14px;
}

/* Feature Item Styles */
.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-item h3 {
  color: #fff;
  margin: 15px 0 10px;
  font-family: 'Orbitron', sans-serif;
}

.feature-item h3 i {
  color: #9800de;
  margin-right: 10px;
  text-shadow: 0 0 10px rgba(152,0,222,0.5);
}

.feature-item p {
  color: #ccc;
  font-size: 14px;
}

/* Section Title Styles */
.section-title {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(152,0,222,0.5);
  padding: 30px 0 20px 0;
}

.section-header {
  margin: 30px 0 20px 0;
  color: #fff;
  text-shadow: 0 0 10px rgba(152,0,222,0.5);
}

/* Button Styles */
.btn-color {
  background: #9800de;
  border: none;
  box-shadow: 0 0 15px rgba(152,0,222,0.5);
  transition: all 0.3s ease;
}

.btn-color:hover {
  background: #7a00b3;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(152,0,222,0.7);
}

/* FAQ Section Styles */
.faq-section {
  background: rgba(5, 5, 5, 0.5);
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
}

.faq-question {
  color: #eeeeee;
  margin: 20px 0 10px;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
}

.faq-answer {
  margin-left: 20px;
  color: #ccc;
}

/* Store Badge Container */
.store-badge-container {
  margin: 40px 0;
  text-align: center;
}

.store-badge-container h3 {
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
}

.store-badge-container p {
  color: #ccc;
  margin-bottom: 20px;
}

/* Final CTA Section */
.final-cta-section {
  background: rgba(152,0,222,0.1);
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
  border: 1px solid rgba(152,0,222,0.3);
}

.final-cta-section h2 {
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
}

.final-cta-section p {
  color: #ccc;
  margin-bottom: 25px;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .step-item,
  .use-case-item,
  .feature-item {
    margin: 15px 0;
    padding: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .use-case-item i {
    font-size: 2.5em;
  }
  
  .faq-section {
    padding: 20px;
  }
  
  .final-cta-section {
    padding: 25px;
  }
}
