/* Future Technology Article Styles */
.future-hero {
  position: relative;
  background: linear-gradient(135deg, #00172D 0%, #004080 100%);
  color: #fff;
  overflow: hidden;
}

.future-hero .hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,23,45,0.7) 0%, rgba(0,64,128,0.4) 100%);
}

.future-timeline {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
  min-width: 200px;
  margin: 0.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.timeline-year {
  font-weight: 700;
  color: #4FC3F7;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-content {
  font-size: 0.9rem;
  line-height: 1.4;
}

.future-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.future-card-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #0066CC 0%, #004080 100%);
  color: white;
}

.future-card-icon {
  margin-right: 1rem;
  font-size: 1.8rem;
}

.future-card-body {
  padding: 1.5rem;
}

.future-card-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.future-card-content ul {
  flex: 1;
  min-width: 300px;
}

.future-card-content li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.future-card-content li:before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #0066CC;
}

.future-card-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.future-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
}

.future-impact {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f5f9ff;
  border-left: 4px solid #0066CC;
  border-radius: 0 4px 4px 0;
}

.future-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-box {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-box i {
  font-size: 2rem;
  color: #0066CC;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-box h3 {
  margin: 0.5rem 0;
  color: #004080;
}

.future-quote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
  border-left: 4px solid #0066CC;
  border-radius: 0 8px 8px 0;
}

.future-quote blockquote {
  margin: 0;
  font-style: italic;
  color: #333;
}

.future-quote footer {
  margin-top: 1rem;
  font-weight: 600;
  color: #0066CC;
  font-style: normal;
}

.future-comparison {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  gap: 2rem;
}

.comparison-box {
  flex: 1;
  min-width: 250px;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-box.future-version {
  border-top: 4px solid #0066CC;
}

.comparison-box h3 {
  color: #004080;
  margin-top: 0;
}

.comparison-box ul {
  margin: 1rem 0 0 0;
  padding-left: 1.2rem;
}

.comparison-box li {
  margin-bottom: 0.5rem;
}

.comparison-arrow {
  color: #0066CC;
  font-size: 1.5rem;
}

.future-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0066CC;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #555;
}

.energy-sources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.energy-source {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.energy-source:hover {
  transform: translateY(-5px);
}

.energy-icon {
  font-size: 2.5rem;
  color: #0066CC;
  margin-bottom: 1rem;
}

.energy-source h3 {
  color: #004080;
  margin: 0.5rem 0;
}

.future-impact-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f5f9ff;
  border-radius: 8px;
  border-left: 4px solid #0066CC;
}

.future-impact-box h3 {
  color: #004080;
  margin-top: 0;
}

.society-aspects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.aspect-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.aspect-card h3 {
  color: #004080;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aspect-card i {
  color: #0066CC;
}

.aspect-card ul {
  margin: 1rem 0 0 0;
  padding-left: 1.2rem;
}

.aspect-card li {
  margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .future-card-content {
    flex-direction: column;
  }
  
  .future-card-image {
    order: -1;
  }
  
  .future-timeline {
    flex-direction: column;
  }
  
  .timeline-item {
    margin-bottom: 1rem;
  }
  
  .comparison-box {
    min-width: 100%;
  }
  
  .comparison-arrow {
    display: none;
  }
}

/* Particle.js container */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

/* Ensure the particle container is properly positioned */
.particles-js-canvas-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Fix for hero section to accommodate particles */
.future-hero {
  position: relative;
  z-index: 1;
}

.future-hero .hero-content {
  position: relative;
  z-index: 2;
}