/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0d1117;
  color: #00ff00;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #00ff00;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Full-screen section */
.section-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bg-gradient-1 {
  background: linear-gradient(135deg, hsl(222, 25%, 8%) 0%, hsl(222, 20%, 14%) 100%);
}

.bg-gradient-2 {
  background: linear-gradient(135deg, hsl(222, 20%, 14%) 0%, hsl(222, 25%, 8%) 100%);
}

/* Dot pattern overlay */
.dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Layout containers */
.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* Home page - centered links */
.home-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.home-links a {
  font-size: 1.125rem;
}

/* Landing pages - flex layout */
.page-layout {
  display: flex;
  flex-direction: column;
}

.page-left {
  flex: 1;
}

.page-heading {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.link-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.link-list a {
  font-size: 1rem;
}

/* Contact info */
.contact-info {
  margin-top: 2rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.contact-info p {
  line-height: 1.6;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-item {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}

.animate-right {
  opacity: 0;
  animation: fadeInRight 0.5s ease-out forwards;
}

/* Stagger delays for links */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1.0s; }
.delay-11 { animation-delay: 1.1s; }
.delay-12 { animation-delay: 1.2s; }
.delay-13 { animation-delay: 1.3s; }
.delay-14 { animation-delay: 1.4s; }
.delay-contact { animation-delay: 0.8s; }

/* Responsive - desktop */
@media (min-width: 768px) {
  .home-links a {
    font-size: 1.5rem;
  }

  .page-layout {
    flex-direction: row;
  }

  .page-heading {
    font-size: 1.875rem;
  }

  .link-list a {
    font-size: 1.125rem;
  }

  .contact-info {
    margin-top: 0;
    margin-left: 2rem;
    text-align: right;
    font-size: 1.125rem;
    align-self: center;
    flex-shrink: 0;
  }
}
