/* Software page specific styles */

.software-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.software-features li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.software-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: bold;
}

/* Right-aligned sections (even index) have bullets on the right */
[data-aos="fade-left"] .software-features li {
  padding-left: 0;
  padding-right: 1.5rem;
  text-align: right;
}

[data-aos="fade-left"] .software-features li:before {
  left: auto;
  right: 0;
}

/* Required layers list styling */
.required-layers-list {
  list-style: none;
  padding: 0;
}

.required-layers-list li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.required-layers-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: bold;
}

/* Right-aligned sections have required layers bullets on the right */
[data-aos="fade-left"] .required-layers-list {
  margin-left: 0;
  margin-right: 1rem;
}

[data-aos="fade-left"] .required-layers-list li {
  text-align: right;
  padding-left: 0;
  padding-right: 1.5rem;
}

[data-aos="fade-left"] .required-layers-list li:before {
  left: auto;
  right: 0;
}

.platform-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(156, 163, 175, 0.2);
  color: rgb(156, 163, 175);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: #fbbf24;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.download-section-wrapper {
  margin-top: 1rem;
}

/* Highlights section */
.highlights-section {
  margin: 2rem 0;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.highlight-image-wrapper {
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-image {
  transform: scale(1.02);
}

.highlight-content {
  text-align: left;
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.highlight-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
