/* Sol Arena Marketing Site - Cyberpunk Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', monospace;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #e0e6ff;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(120, 219, 226, 0.03) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(255, 119, 198, 0.03) 50%, transparent 100%);
  animation: backgroundShift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.title-sol {
  background: linear-gradient(45deg, #78dbe2, #a8e6cf);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(120, 219, 226, 0.5);
  animation: neonPulse 3s ease-in-out infinite;
}

.title-arena {
  background: linear-gradient(45deg, #ff77c6, #ffd700);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 119, 198, 0.5);
  animation: neonPulse 3s ease-in-out infinite 1.5s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(120, 219, 226, 0.1) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(224, 230, 255, 0.7);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(224, 230, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

/* Contract Address Capsule */
.contract-capsule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto 4rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  border: 1px solid rgba(120, 219, 226, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  max-width: fit-content;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contract-label {
  color: rgba(224, 230, 255, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contract-address {
  font-family: 'Courier New', monospace;
  color: rgba(120, 219, 226, 1);
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(120, 219, 226, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(120, 219, 226, 0.3);
  word-break: break-all;
  max-width: 300px;
}

.copy-btn {
  background: rgba(255, 119, 198, 0.2);
  border: 1px solid rgba(255, 119, 198, 0.4);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 119, 198, 1);
  font-size: 1rem;
}

.copy-btn:hover {
  background: rgba(255, 119, 198, 0.3);
  border-color: rgba(255, 119, 198, 0.6);
  transform: scale(1.1);
}

.copy-btn:active {
  transform: scale(0.95);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.6) 0%, rgba(26, 26, 46, 0.4) 100%);
  border: 1px solid rgba(120, 219, 226, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(15px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #78dbe2, #ff77c6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(224, 230, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Orbitron', monospace;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(120, 219, 226, 0.8) 0%, rgba(255, 119, 198, 0.8) 100%);
  color: #ffffff;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120, 219, 226, 1) 0%, rgba(255, 119, 198, 1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(120, 219, 226, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(120, 219, 226, 0.4);
  color: rgba(224, 230, 255, 0.9);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(120, 219, 226, 0.1);
  border-color: rgba(120, 219, 226, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(120, 219, 226, 0.15);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

.btn span {
  position: relative;
  z-index: 1;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.3) 0%, rgba(26, 26, 46, 0.2) 100%);
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 700;
  background: linear-gradient(45deg, #78dbe2, #ff77c6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  background: rgba(120, 219, 226, 0.05);
  border: 1px solid rgba(120, 219, 226, 0.2);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #78dbe2, #ff77c6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  background: rgba(120, 219, 226, 0.08);
  border-color: rgba(120, 219, 226, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(120, 219, 226, 0.2);
}

.step-number {
  display: inline-block;
  background: linear-gradient(45deg, #78dbe2, #ff77c6);
  color: #0f0f23;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 25px;
  margin-bottom: 25px;
  font-family: 'Orbitron', monospace;
}

.step-card h3 {
  color: #78dbe2;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px 0;
  font-family: 'Orbitron', monospace;
  text-shadow: 0 0 10px rgba(120, 219, 226, 0.3);
}

.step-card p {
  color: #e0e6ff;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/* Rules Grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.rule-category {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.6) 0%, rgba(26, 26, 46, 0.4) 100%);
  border: 1px solid rgba(120, 219, 226, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
}

.rule-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rule-list {
  list-style: none;
}

.rule-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(224, 230, 255, 0.8);
  line-height: 1.6;
}

.rule-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: rgba(120, 219, 226, 0.8);
  font-size: 0.8rem;
}

.rule-list li strong {
  color: rgba(255, 119, 198, 0.9);
}

/* Game Modes */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mode-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.6) 0%, rgba(26, 26, 46, 0.4) 100%);
  border: 1px solid rgba(120, 219, 226, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  position: relative;
}

.mode-card.active {
  border-color: rgba(120, 219, 226, 0.6);
  box-shadow: 0 8px 32px rgba(120, 219, 226, 0.2);
}

.mode-card.locked {
  opacity: 0.6;
}

.mode-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mode-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.mode-status {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.mode-status.available {
  background: rgba(120, 219, 226, 0.2);
  color: rgba(120, 219, 226, 1);
  border: 1px solid rgba(120, 219, 226, 0.4);
}

.mode-status.locked {
  background: rgba(255, 119, 119, 0.2);
  color: rgba(255, 119, 119, 1);
  border: 1px solid rgba(255, 119, 119, 0.4);
}

.mode-card p {
  color: rgba(224, 230, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.mode-features {
  list-style: none;
  text-align: left;
}

.mode-features li {
  margin-bottom: 0.5rem;
  color: rgba(224, 230, 255, 0.8);
  font-size: 0.9rem;
}

/* Requirements */
.requirements-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.requirement-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.6) 0%, rgba(26, 26, 46, 0.4) 100%);
  border: 1px solid rgba(120, 219, 226, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
}

.requirement-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.requirement-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(15, 15, 35, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(120, 219, 226, 0.1);
}

.req-label {
  color: rgba(224, 230, 255, 0.7);
  font-size: 0.9rem;
}

.req-value {
  color: #ffffff;
  font-weight: 600;
  text-align: right;
}

/* Creator Rewards Section */
.rewards-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.rewards-description {
  font-size: 1.2rem;
  color: rgba(224, 230, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.reward-category {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.6) 0%, rgba(26, 26, 46, 0.4) 100%);
  border: 1px solid rgba(120, 219, 226, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  text-align: center;
}

.reward-category:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 219, 226, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.reward-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.reward-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.reward-category > p {
  color: rgba(224, 230, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.reward-features {
  list-style: none;
  text-align: left;
  padding: 0;
}

.reward-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(224, 230, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.reward-features li::before {
  content: '✨';
  position: absolute;
  left: 0;
  color: rgba(255, 119, 198, 0.8);
}

.rewards-vision {
  display: flex;
  justify-content: center;
}

.vision-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  border: 1px solid rgba(255, 119, 198, 0.3);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(20px);
  max-width: 800px;
  box-shadow: 
    0 12px 48px rgba(255, 119, 198, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vision-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff77c6, #ffd700);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision-card > p {
  font-size: 1.1rem;
  color: rgba(224, 230, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.vision-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.vision-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vision-stat .stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(45deg, #78dbe2, #ff77c6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(224, 230, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(120, 219, 226, 0.2);
  border-bottom: 1px solid rgba(120, 219, 226, 0.2);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #78dbe2, #ff77c6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(224, 230, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(120, 219, 226, 0.2);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

.footer-brand p {
  color: rgba(224, 230, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(224, 230, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: rgba(120, 219, 226, 0.9);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(120, 219, 226, 0.1);
  color: rgba(224, 230, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes neonPulse {
  0%, 100% {
    filter: brightness(1) saturate(1);
    text-shadow: 
      0 0 20px currentColor,
      0 0 40px currentColor,
      0 0 60px currentColor;
  }
  50% {
    filter: brightness(1.2) saturate(1.3);
    text-shadow: 
      0 0 30px currentColor,
      0 0 60px currentColor,
      0 0 90px currentColor;
  }
}

@keyframes backgroundShift {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(1%) translateY(-1%);
  }
  50% {
    transform: translateX(-1%) translateY(1%);
  }
  75% {
    transform: translateX(1%) translateY(1%);
  }
}

@keyframes heroGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .rules-grid,
  .modes-grid {
    grid-template-columns: 1fr;
  }
  
  .requirements-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .requirement-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .req-value {
    text-align: center;
  }
  
  .contract-capsule {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .contract-address {
    max-width: 250px;
    font-size: 0.8rem;
  }
  
  .rewards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .vision-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .vision-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .step-card,
  .rule-category,
  .mode-card,
  .requirement-card {
    padding: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.faq-item {
  background: rgba(120, 219, 226, 0.05);
  border: 1px solid rgba(120, 219, 226, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(120, 219, 226, 0.08);
  border-color: rgba(120, 219, 226, 0.4);
  transform: translateY(-5px);
}

.faq-question {
  color: #78dbe2;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  color: #b8c5ff;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

/* Whitepaper Section */
.whitepaper-content {
  max-width: 900px;
  margin: 50px auto 0;
}

.wp-section {
  background: rgba(120, 219, 226, 0.03);
  border: 1px solid rgba(120, 219, 226, 0.15);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
}

.wp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #78dbe2, #ff77c6, #78dbe2);
  border-radius: 20px 20px 0 0;
}

.wp-section h3 {
  color: #78dbe2;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(120, 219, 226, 0.3);
}

.wp-section h4 {
  color: #ff77c6;
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

.wp-section p {
  color: #b8c5ff;
  line-height: 1.8;
  margin-bottom: 20px;
}

.wp-section ul {
  list-style: none;
  padding-left: 0;
}

.wp-section li {
  color: #e0e6ff;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.wp-section li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #78dbe2;
  font-size: 12px;
}

.wp-section li strong {
  color: #ff77c6;
}

/* Power-ups Section */
.powerups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.powerup-category h3 {
  color: #78dbe2;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 20px rgba(120, 219, 226, 0.3);
}

.powerup-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.powerup-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(120, 219, 226, 0.05);
  border: 1px solid rgba(120, 219, 226, 0.15);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.powerup-item:hover {
  background: rgba(120, 219, 226, 0.08);
  border-color: rgba(120, 219, 226, 0.3);
  transform: translateY(-2px);
}

.powerup-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 119, 198, 0.1);
  border-radius: 8px;
}

.powerup-info h4 {
  color: #ff77c6;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.powerup-info p {
  color: #b8c5ff;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.powerup-note {
  background: rgba(255, 119, 198, 0.05);
  border: 1px solid rgba(255, 119, 198, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-top: 40px;
  text-align: center;
}

.powerup-note h4 {
  color: #ff77c6;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.powerup-note p {
  color: #e0e6ff;
  line-height: 1.7;
  margin: 0;
}

/* Enhanced CTA Stats */
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
}

.cta-stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #78dbe2;
  text-shadow: 0 0 20px rgba(120, 219, 226, 0.5);
  margin-bottom: 8px;
}

.cta-stat .stat-label {
  color: #b8c5ff;
  font-size: 14px;
  font-weight: 500;
}

/* Navigation Header */
.navigation-header {
  background: rgba(15, 15, 35, 0.98);
  border-bottom: 2px solid rgba(120, 219, 226, 0.3);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.header-brand {
  justify-self: start;
}

.brand-title {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  justify-self: center;
}

.header-actions {
  justify-self: end;
}

.header-btn {
  background: linear-gradient(45deg, #78dbe2, #ff77c6);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  color: #0f0f23;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(120, 219, 226, 0.4);
}

.nav-tab {
  background: rgba(120, 219, 226, 0.05);
  border: 1px solid rgba(120, 219, 226, 0.2);
  border-radius: 10px;
  padding: 12px 20px;
  color: #b8c5ff;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
  justify-content: center;
}

.nav-tab:hover {
  background: rgba(120, 219, 226, 0.1);
  border-color: rgba(120, 219, 226, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(120, 219, 226, 0.2);
}

.nav-tab.active {
  background: linear-gradient(45deg, rgba(120, 219, 226, 0.2), rgba(255, 119, 198, 0.2));
  border-color: #78dbe2;
  color: #78dbe2;
  box-shadow: 0 0 20px rgba(120, 219, 226, 0.3);
}

.tab-icon {
  font-size: 14px;
}

.tab-text {
  font-weight: 600;
  font-size: 11px;
}

/* Content Section Management */
.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .header-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
    text-align: center;
  }
  
  .header-brand,
  .nav-tabs,
  .header-actions {
    justify-self: center;
  }
  
  .brand-title {
    font-size: 24px;
  }
  
  .nav-tabs {
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-tab {
    padding: 10px 12px;
    font-size: 11px;
  }
  
  .tab-text {
    font-size: 10px;
  }
  
  .header-btn {
    font-size: 11px;
    padding: 8px 14px;
  }
  
  .powerups-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .powerup-item {
    padding: 15px;
  }
  
  .powerup-icon {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  
  .powerup-info h4 {
    font-size: 14px;
  }
  
  .powerup-info p {
    font-size: 13px;
  }
  
  .powerup-note {
    padding: 20px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-item {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 16px;
  }
  
  .wp-section {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .wp-section h3 {
    font-size: 20px;
  }
  
  .wp-section h4 {
    font-size: 16px;
  }
  
  .cta-stats {
    gap: 30px;
  }
  
  .cta-stat .stat-number {
    font-size: 24px;
  }
}
