/* Fairness Page Styles */
.fairness-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.6;
}

.fairness-hero {
  text-align: center;
  background: linear-gradient(135deg, #2a2d3f 0%, #1e1f30 100%);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.fairness-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 143, 50, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.fairness-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.fairness-hero .subtitle {
  font-size: 1.2rem;
  color: #b0b4c1;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blockchain-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 143, 50, 0.1);
  border: 2px solid var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.content-section {
  background: var(--secondary-bg);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ff9d45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content-section:hover {
  border-color: rgba(255, 143, 50, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-section:hover::before {
  opacity: 1;
}

.content-section.animate-in {
  animation: slideInFromBottom 0.8s ease-out;
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #ff9d45);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  flex-shrink: 0;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.section-content p {
  font-size: 1.1rem;
  color: #b0b4c1;
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: rgba(255, 143, 50, 0.05);
  transform: translateX(5px);
}

.feature-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--accent-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.verification-steps {
  background: linear-gradient(135deg, #1e1f30 0%, #252638 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 143, 50, 0.2);
}

.verification-steps h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content {
  color: #b0b4c1;
  font-size: 1rem;
}

.blockchain-info {
  background: linear-gradient(135deg, rgba(57, 199, 217, 0.1) 0%, rgba(255, 143, 50, 0.1) 100%);
  border: 1px solid rgba(57, 199, 217, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.blockchain-info h3 {
  color: #39c7d9;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.coming-soon {
  background: linear-gradient(135deg, #2a2d3f 0%, #1e1f30 100%);
  border: 2px dashed rgba(255, 143, 50, 0.3);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.coming-soon h2 {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.coming-soon p {
  color: #b0b4c1;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.company-info {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border-top: 2px solid var(--accent-color);
}

.company-info p {
  color: #8a9aa7;
  font-size: 1rem;
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  transform: translateY(100px);
  opacity: 0;
  box-shadow: 0 4px 12px rgba(255, 143, 50, 0.3);
}

.back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
}

.back-to-top:hover {
  background: #ff9d45;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 143, 50, 0.4);
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  opacity: 0;
  animation: fadeInLeft 1s ease-out 1s forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.floating-nav .nav-item {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 143, 50, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.floating-nav .nav-item:hover {
  background: rgba(255, 143, 50, 0.1);
  border-color: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 143, 50, 0.3);
}

.floating-nav .nav-item.active {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .fairness-container {
    padding: 1rem;
  }
  
  .fairness-hero {
    padding: 2.5rem 1.5rem;
  }
  
  .fairness-hero h1 {
    font-size: 2.2rem;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .feature-list li {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .step-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .floating-nav {
    display: none;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* Animation for scroll effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section {
  animation: fadeInUp 0.6s ease-out;
}

.content-section:nth-child(even) {
  animation-delay: 0.1s;
}

.content-section:nth-child(odd) {
  animation-delay: 0.2s;
}

/* Additional Interactive Elements */
.progress-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #ff9d45);
  z-index: 1000;
  transition: width 0.3s ease;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced hover effects */
.verification-steps:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 143, 50, 0.15);
}

.blockchain-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(57, 199, 217, 0.15);
}

/* Loading state for dynamic content */
.loading-state {
  opacity: 0.6;
  pointer-events: none;
  filter: blur(1px);
}
