/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #1a1a1a;
  color: #e0e0e0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 3rem 1.5rem;
}

/* Centered Container */
.container {
  max-width: 600px;
  width: 100%;
  text-align: left;
  
  /* Smooth fade-in animation for a premium feel */
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Typography */
h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.75rem;
  color: #e0e0e0; /* Matches the base off-white paragraph color */
}

p:last-of-type {
  margin-bottom: 0;
}

/* Anchor tags styling per instructions */
a {
  color: inherit; /* Matches the paragraph text color */
  text-decoration: underline;
  text-decoration-thickness: 1px; /* Thin underline */
  text-underline-offset: 4px; /* 4px offset */
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
  text-decoration-color: rgba(224, 224, 224, 0.4); /* Subtly faded underline by default */
}

a:hover {
  text-decoration-color: rgba(224, 224, 224, 1); /* Fully opaque underline on hover */
  color: #ffffff; /* Slightly brighter text color on hover for feedback */
}

/* Page load animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
