:root {
  --primary-color: #6366f1;
  --bg-color: #0d0d0f;
  --text-color: #f7f7f7;
  --secondary-bg-color: #1a1a1f; 
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 90%;
  max-width: 1000px;
  text-align: center;
  padding: 3rem 1rem;
}

header h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -0.05rem;
  background: linear-gradient(135deg, #fff 0%, #a5a2a2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-image-container {
  margin-bottom: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #111;
  transition: transform 0.5s ease;
}

.hero-image-container:hover {
  transform: translateY(-8px);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.hero-image-container:hover img {
  opacity: 1;
}

.links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: #fff;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 12px;
  min-width: 200px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.button.secondary {
  background-color: var(--secondary-bg-color);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.button:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.button.secondary:hover {
  background-color: #2a2a32;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-text {
  font-size: 1.25rem;
  font-weight: 600;
}

.btn-sub {
  font-size: 0.8rem;
  opacity: 0.7;
}

footer {
  margin-top: 5rem;
  opacity: 0.4;
  font-size: 0.9rem;
}

.family-links {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.family-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.5;
  transition: all 0.3s ease;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
}

.family-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2.5rem;
  }
  .links {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
}
