:root {
  color-scheme: dark;
  --bg-primary: #050505;
  --bg-secondary: #111113;
  --bg-panel: rgba(24, 24, 26, 0.76);
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --accent: #c8c8c8;
  --accent-soft: rgba(200, 200, 200, 0.12);
  --text-primary: #f3f3f3;
  --text-secondary: rgba(235, 235, 235, 0.78);
  --text-muted: rgba(200, 200, 200, 0.52);
  --font-body: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

/*--- NAVIGATION ---*/

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 15% 20%, rgba(90, 90, 90, 0.25), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(65, 65, 65, 0.3), transparent 45%),
    linear-gradient(160deg, var(--bg-primary), var(--bg-secondary));
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.75rem 1.5rem;
}

.page {
  width: min(100%, var(--max-width));
  display: grid;
  gap: 2.5rem;
  justify-items: center;
  text-align: center;
  background: rgba(8, 8, 9, 0.65);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  padding: clamp(2rem, 3vw + 1rem, 4.25rem);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(18px);
}

.title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 2.3rem + 2vw, 4.25rem);
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0;
}

.status {
  font-size: 22px;
  font-weight: bold;
  padding-top: 20px;
}

.logo {
  width: 100%;
  max-width: 450px;
  margin: 0;
  padding: .5rem;
  border-radius: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 0 1px var(--border-soft), 0 24px 80px rgba(0, 0, 0, 0.75);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.description {
  max-width: 58ch;
  font-size: 20px;
  line-height: 1.8;
  text-align: left;
}

.description h2 {
  text-align: center;
  margin-bottom: 0;
}

.description h3 {
  text-align: center;
  font-size: 20px;
  margin-top: 0;
}

.highlight {
  color: var(--text-primary);
  background: linear-gradient(120deg, var(--accent-soft), transparent);
  padding: 0 0.2em;
  border-radius: 0.3em;
}

.link-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.link-card {
  display: grid;
  font-size: 20px;
  gap: 0.4rem;
  padding: 1.6rem;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(22, 22, 24, 0.9), rgba(12, 12, 14, 0.96));
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.6);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-card ol {
  text-align: left;
}

.link-card ol li {  
  padding-bottom: 10px;
}

.social-links a {
  display: inline-block;
  margin: 10px;
}

.social-links a img {
  border-radius: 100%; 
  border: 4px solid white; 
  margin: 10px; 
  padding: 15px;
  width: 72px;
}

.text-link {
  color: white;
}

button:hover,
.link-button:hover,
.nav-social-links, 
.social-links a img:hover,
.link-card:hover,
.link-card:focus,
footer a:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}

.link-card:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 200, 200, 0.32), 0 28px 64px rgba(0, 0, 0, 0.7);
}

.link-label {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}

.link-description {
  font-size: 20px;
  color: var(--text-muted);
}

.footer {
  display: grid;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.tagline {
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

@media (max-width: 600px) {
  body {
    padding: 1.75rem;
  }

  .page {
    gap: 2rem;
    padding: 2.5rem 1.75rem;
  }

  .link-card {
    padding: 1.4rem;
  }
}

/* Improve readability on mobile */
.description p {
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Hero spacing */
.hero .title {
  margin-bottom: 0.5rem;
}

.hero {
  margin-top: 0.5rem;
  font-size: 1rem;
  opacity: 0.9;
}

/* Card spacing */
.link-card {
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.5rem;
}

/* Hashtags */
.highlight {
  display: inline-block;
  margin-right: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
}

/* Disclaimer styling */
.disclaimer {
  margin-top: 2.5rem;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  opacity: 0.6;
}

/* Footer spacing */
.footer {
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.link-button {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #f3f3f3;
    padding: 10px;
  color: #f3f3f3;
  border: 1px solid #f3f3f3;
  border-radius: 10px;
  margin-top: 20px;
}

ol {
  margin: 10px;
  padding-left: 0;
}