:root {
  --main-bg-color: #1a1a1a;
  --main-bg-gradient: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  --main-text-color: #d0d0d0;
  --white: #ffffff;
  --accent-color: #e0e0e0;
  --border-color: #404040;
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-hover-bg: rgba(255, 255, 255, 0.05);
  --glow-color: rgba(255, 255, 255, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: ShareTechMono;
  src: url(ShareTechMono-Regular.ttf);
}

body {
  background: url("images/background.svg") no-repeat center top, linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  background-attachment: fixed;
  color: var(--main-text-color);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  font-family: ShareTechMono, Monospace, Courier;
  margin: 0;
  padding: 40px 0;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo {
  height: 80px;
  transition: transform 0.3s ease;
}

#logo:hover {
  transform: scale(1.05);
}

#container {
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px 40px;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 20px;
}

h1 {
  margin-top: 16px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.subtitle {
  margin-bottom: 16px;
  margin-top: 32px;
  font-size: 1.1em;
}

.formerly {
  font-size: 14px;
  color: #808080;
  margin-top: 0;
  font-style: italic;
}

strong, h1, h2, h3 {
  color: var(--white);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--white);
}


.formerly a,
main > p a,
section > p a,
.subtitle a {
  position: relative;
}

.formerly a::after,
main > p a::after,
section > p a::after,
.subtitle a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.formerly a:hover::after,
main > p a:hover::after,
section > p a:hover::after,
.subtitle a:hover::after {
  width: 100%;
}


ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

li {
  margin: 0;
}

li a {
  display: block;
  padding: 16px 20px;
  background: var(--card-bg);
  border-radius: 12px;
  text-align: left;
  transition: all 0.25s ease;
}

li a:hover {
  background: var(--card-hover-bg);
  transform: translateX(4px);
  color: var(--white);
}

li.featured a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.04);
  color: var(--white);
}

li.featured a:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.07);
}


.info-row {
  margin-top: 20px;
}

.info-row p {
  margin: 4px 0;
  font-size: 16px;
  opacity: 0.7;
}


.stats-banner {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--card-bg);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.stats-banner:hover {
  background: var(--card-hover-bg);
  color: var(--main-text-color);
}

.stats-banner-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stats-banner-number {
  font-size: 1.3em;
  font-weight: bold;
  color: var(--white);
}

.stats-banner-label {
  font-size: 0.7em;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .stats-banner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}



section {
  margin-top: 32px;
}

section:first-of-type {
  margin-top: 24px;
}

main > p {
  margin-top: 24px;
}


a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
  border-radius: 4px;
}

li a:focus-visible {
  outline-offset: 2px;
  border-radius: 12px;
}


@media only screen and (max-width: 730px) {
  body {
    padding: 20px 0;
  }

  #container {
    margin: 0 auto;
    padding: 20px 15px;
    border-radius: 8px;
    border: none;
  }

  li a {
    padding: 14px 16px;
  }
}
