/* Home Page Specific Styles */

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-16);
  padding: var(--space-12) 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: var(--space-4);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
  line-height: 1.1;
}

.hero-content p {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.neon-image {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3), 0 0 40px rgba(0, 243, 255, 0.1);
  transition: all var(--transition-base);
}

.neon-image:hover {
  border-color: rgba(0, 243, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.6), 0 0 60px rgba(0, 243, 255, 0.3);
  transform: translateY(-5px);
}

.neon-image-accent {
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.3), 0 0 40px rgba(188, 19, 254, 0.1);
}

.neon-image-accent:hover {
  box-shadow: 0 0 30px rgba(188, 19, 254, 0.6), 0 0 60px rgba(188, 19, 254, 0.3);
}

/* Mission Section */
.mission-section {
  padding: var(--space-16) 0;
  border-top: 2px solid rgba(0, 243, 255, 0.1);
  border-bottom: 2px solid rgba(0, 243, 255, 0.1);
  background: rgba(18, 18, 26, 0.3);
  margin: var(--space-16) calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .mission-container {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-4);
  color: var(--accent);
  text-shadow: var(--shadow-neon-accent);
}

.mission-content h3 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

.mission-content p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-4);
}

.mission-image-wrapper {
  display: flex;
  justify-content: center;
}

/* Features Section */
.features-section {
  padding: var(--space-16) 0;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .lg-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: var(--space-8);
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid rgba(0, 243, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(0, 243, 255, 0.3);
  box-shadow: var(--shadow-neon-primary);
  background: rgba(18, 18, 26, 0.8);
  transform: translateY(-8px);
}

.card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

.card p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  flex: 1;
  margin-bottom: var(--space-4);
}

.feature-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: all var(--transition-fast);
  display: inline-block;
}

.feature-link:hover {
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
  transform: translateX(4px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(0, 243, 255, 0.1);
  box-shadow: var(--shadow-neon-primary);
}

/* Utility Classes */
.mt-4 {
  margin-top: var(--space-4);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
    padding: var(--space-8) 0;
  }

  .mission-section {
    padding: var(--space-12) var(--space-4);
  }

  .mission-container {
    flex-direction: column-reverse;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .mission-content h2 {
    font-size: 1.75rem;
  }
}

/* Timeline Preview Section */
.timeline-preview-section {
  padding: var(--space-16) 0;
}

.timeline-preview-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-6);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

.timeline-preview-content p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-8);
}

.timeline-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.highlight-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: rgba(18, 18, 26, 0.6);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.highlight-item:hover {
  background: rgba(18, 18, 26, 0.9);
  border-left-color: var(--primary);
  box-shadow: var(--shadow-neon-primary);
  transform: translateX(8px);
}

.highlight-item .year {
  font-weight: 700;
  color: var(--accent);
  min-width: 80px;
  font-size: var(--font-size-lg);
  text-shadow: var(--shadow-neon-accent);
}

.highlight-item .event {
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.timeline-preview-image {
  display: flex;
  justify-content: center;
}

.timeline-preview-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

/* Featured Collections Section */
.featured-collections-section {
  padding: var(--space-16) 0;
  background: rgba(18, 18, 26, 0.3);
  margin: var(--space-16) calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.collection-card {
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid rgba(0, 243, 255, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection-card:hover {
  border-color: rgba(0, 243, 255, 0.4);
  box-shadow: var(--shadow-neon-primary);
  transform: translateY(-12px);
}

.collection-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.collection-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.collection-card:hover .collection-image-wrapper img {
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-info {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.collection-info h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

.collection-info p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-4);
  flex: 1;
}

.collection-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  display: inline-block;
  align-self: flex-start;
}

.collection-link:hover {
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
  transform: translateX(4px);
}

/* Technology Evolution Section */
.technology-evolution-section {
  padding: var(--space-16) 0;
}

.tech-evolution-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-6);
  color: var(--accent);
  text-shadow: var(--shadow-neon-accent);
}

.tech-evolution-content p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-8);
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.tech-feature {
  padding: var(--space-6);
  background: rgba(188, 19, 254, 0.1);
  border: 1px solid rgba(188, 19, 254, 0.2);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.tech-feature:hover {
  background: rgba(188, 19, 254, 0.15);
  border-color: rgba(188, 19, 254, 0.4);
  box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
  transform: translateX(8px);
}

.tech-feature h4 {
  font-size: var(--font-size-base);
  color: var(--accent);
  margin-bottom: var(--space-2);
  text-shadow: var(--shadow-neon-accent);
}

.tech-feature p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.tech-evolution-image {
  display: flex;
  justify-content: center;
}

.tech-evolution-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  border: 2px solid rgba(188, 19, 254, 0.2);
}

.primary-glow {
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3), 0 0 40px rgba(0, 243, 255, 0.1);
}

.primary-glow:hover {
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.6), 0 0 60px rgba(0, 243, 255, 0.3);
}

.accent-glow {
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.3), 0 0 40px rgba(188, 19, 254, 0.1);
}

.accent-glow:hover {
  box-shadow: 0 0 30px rgba(188, 19, 254, 0.6), 0 0 60px rgba(188, 19, 254, 0.3);
}

.secondary-glow {
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.25), 0 0 40px rgba(0, 243, 255, 0.08);
}

.secondary-glow:hover {
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.5), 0 0 60px rgba(0, 243, 255, 0.25);
}

/* Arcade Heritage Section */
.arcade-heritage-section {
  padding: var(--space-16) 0;
}

.heritage-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-6);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

.heritage-content p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-6);
}

.heritage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.heritage-list li {
  padding: var(--space-4) var(--space-6);
  background: rgba(0, 243, 255, 0.05);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
}

.heritage-list li:hover {
  background: rgba(0, 243, 255, 0.1);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-neon-primary);
  transform: translateX(8px);
}

.heritage-list strong {
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

/* Exploration Invitation Section */
.exploration-invitation-section {
  padding: var(--space-16) 0;
  background: rgba(18, 18, 26, 0.3);
  margin: var(--space-16) calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.exploration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.exploration-item {
  padding: var(--space-8);
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid rgba(0, 243, 255, 0.15);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.exploration-item:hover {
  border-color: rgba(0, 243, 255, 0.4);
  box-shadow: var(--shadow-neon-primary);
  transform: translateY(-10px);
  background: rgba(18, 18, 26, 0.95);
}

.exploration-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  display: block;
}

.exploration-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

.exploration-item p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-4);
  flex: 1;
}

.exploration-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  display: inline-block;
}

.exploration-link:hover {
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
  transform: translateX(4px);
}

/* CTA Section */
.cta-section {
  padding: var(--space-16) 0;
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-6);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
  line-height: 1.1;
}

.cta-content p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-8);
}

.cta-image-wrapper {
  display: flex;
  justify-content: center;
}

.neon-image-wide {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.3), 0 0 50px rgba(0, 243, 255, 0.15);
  transition: all var(--transition-base);
}

.neon-image-wide:hover {
  border-color: rgba(0, 243, 255, 0.5);
  box-shadow: 0 0 35px rgba(0, 243, 255, 0.6), 0 0 70px rgba(0, 243, 255, 0.3);
  transform: translateY(-8px);
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  .exploration-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    margin: 0 auto;
  }

  .featured-collections-section .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .timeline-preview-section .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .arcade-heritage-section .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .technology-evolution-section .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}
