/* CSS Variables */
:root {
  --background: #FAFAFA;
  --foreground: #09090B;
  --secondary: #71717A;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --border: #E4E4E7;
  --white: #FFFFFF;
  --font-body: 'Space Grotesk', sans-serif;
  --font-heading: 'Archivo', sans-serif;
}

/* Dark Mode */
[data-theme="dark"] {
  --background: #09090B;
  --foreground: #FAFAFA;
  --secondary: #A1A1AA;
  --accent: #3B82F6;
  --accent-hover: #60A5FA;
  --border: #27272A;
  --white: #18181B;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.accent {
  color: var(--accent);
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .navbar {
  background: rgba(9, 9, 11, 0.8);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--foreground);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(128, 128, 128, 0.12);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  padding: 2px;
}

.nav-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.nav-title::after {
  content: "Fairy Oracle Sanctuary";
}

@media (max-width: 640px) {
  .nav-title::after {
    content: "FOS";
  }
}

.nav-menu {
  display: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-actions {
  display: none;
}

.navbar.nav-open .nav-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 1.25rem 2.5rem;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  z-index: 40;
}

.navbar.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.navbar.nav-open .nav-links .nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--foreground);
}

.navbar.nav-open .nav-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar.nav-open .theme-toggle,
.navbar.nav-open .lang-btn {
  width: 100%;
}

.navbar.nav-open .language-switcher {
  width: 100%;
}

.navbar.nav-open .nav-actions .nav-link {
  font-size: 1rem;
  justify-content: flex-start;
  gap: 0.5rem;
}

.navbar.nav-open .nav-social .nav-link {
  justify-content: center;
  flex: 1;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.navbar.nav-open .nav-actions .nav-link .icon {
  width: 22px;
  height: 22px;
}

.navbar.nav-open .lang-dropdown {
  width: 100%;
}

.nav-links .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  transition: color 0.2s;
}

.nav-links .nav-link:hover {
  color: var(--foreground);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--foreground);
}

.theme-toggle:hover {
  background: var(--border);
}

.theme-toggle .icon {
  width: 18px;
  height: 18px;
  color: var(--foreground);
}

.theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.nav-link {
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent);
}

.icon {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex: 1;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-left: 2rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .nav-social {
    gap: 1rem;
  }

  .nav-social .nav-link {
    border: none;
    min-height: auto;
  }
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s;
}

.lang-btn:hover {
  background: rgba(128, 128, 128, 0.15);
}

.lang-btn .icon {
  color: var(--foreground);
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: 160px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 50;
  display: none;
}

[data-theme="dark"] .lang-dropdown {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.lang-dropdown.show {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--foreground);
  transition: background-color 0.2s;
}

.lang-option:hover {
  background: rgba(128, 128, 128, 0.15);
}

.lang-option.active {
  font-weight: 700;
  color: var(--accent);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  background-image: url('https://res.cloudinary.com/do6rggmy6/image/upload/v1777485867/hero_image_krkwva.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

[data-theme="dark"] .hero {
  background-image: url('https://res.cloudinary.com/do6rggmy6/image/upload/v1777526585/hero_image_dark_van0qo.png');
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  animation: float-particle var(--duration) linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) translateX(var(--drift));
    opacity: 0;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0.5), rgba(250, 250, 250, 0.95));
  z-index: 1;
}

[data-theme="dark"] .hero::before {
  background: linear-gradient(to bottom, rgba(9, 9, 11, 0.3), rgba(9, 9, 11, 0.95));
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-content {
  flex: 1.5;
  max-width: 52rem;
  animation: fadeInUp 0.5s ease-out;
}

.hero-logo {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease-out;
}

.hero-logo img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

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

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-logo {
    display: none;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: center;
  }
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: transparent;
  color: var(--foreground);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover .icon {
  transform: rotate(12deg);
}

.btn-secondary {
  border: 2px solid var(--foreground);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(9, 9, 11, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .values-grid {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    padding: 0 2rem;
  }
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-icon.blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

.value-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

.value-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  color: #9333EA;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.value-description {
  color: var(--secondary);
}

/* Projects Section */
.projects {
  padding: 6rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .projects {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .projects {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.projects-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .projects-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--secondary);
}

.view-all-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  transition: text-decoration 0.2s;
}

@media (min-width: 640px) {
  .view-all-link {
    display: inline-flex;
  }
}

.view-all-link:hover {
  text-decoration: underline;
}

.view-all-link .icon {
  width: 16px;
  height: 16px;
}

.project-category-section {
  margin-bottom: 4rem;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--secondary);
  pointer-events: none;
}

.no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--secondary);
  font-size: 1.125rem;
}

.project-category-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.projects-subgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .projects-subgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.3s;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.project-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

.project-image-fallback svg {
  width: 36px;
  height: 36px;
  color: #ccc;
}

.project-card.animate {
  animation: fadeInUp 0.5s ease-out forwards;
}

.project-card.animate:nth-child(1) { animation-delay: 0.1s; }
.project-card.animate:nth-child(2) { animation-delay: 0.2s; }
.project-card.animate:nth-child(3) { animation-delay: 0.3s; }
.project-card.animate:nth-child(4) { animation-delay: 0.4s; }

.project-card:hover {
  border-color: var(--accent);
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.05);
}

.project-content {
  position: relative;
  z-index: 10;
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.2s;
}

.project-card:hover .project-title {
  color: var(--accent);
}

.github-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary);
  transition: color 0.2s;
}

.project-card:hover .github-icon {
  color: var(--accent);
}

.project-description {
  color: var(--secondary);
  font-size: 0.8rem;
  line-height: 1.4;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 500;
  border-radius: 9999px;
}

/* Contributors */
.contributors {
  padding: 5rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contributors {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contributors {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.contributors-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contributors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contributor-avatar {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid var(--border);
}

.contributor-avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contributor-avatar:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
  border-color: var(--accent);
  z-index: 1;
}

.contributor-avatar::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
}

.contributor-avatar::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
}

.contributor-avatar:hover::after,
.contributor-avatar:hover::before {
  opacity: 1;
}

.contributor-avatar.supporter {
  cursor: default;
}

.supporters-section {
  margin-top: 4rem;
  text-align: center;
}

.thanks-section {
  margin-top: 4rem;
  text-align: center;
}

.supporters-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.supporters-subtitle {
  font-size: 0.875rem;
  color: var(--secondary);
  opacity: 0.7;
  margin-bottom: 2rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 40;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-to-top:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Footer */
.footer {
  padding: 5rem 1rem;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 4px;
}

.footer-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-quote {
  color: var(--secondary);
  font-style: italic;
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-links a {
  color: var(--secondary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-copyright {
  font-size: 0.875rem;
  color: #9CA3AF;
}
