/* CSS Custom Properties - Change these to customize colors easily! */
:root {
  --primary-color: #f8d7da;        /* Button color */
  --secondary-color: #9b7cb6;      /* Text accent color */
  --text-color: white;             /* Main text color */
  --bg-gradient: linear-gradient(135deg, #2a1b3d, #44318d, #6b5b95);
  --button-hover: #9b7cb6;         /* Button hover color */
  --border-color: #f8d7da;         /* Avatar border color */
}

body {
  margin: 0;
  padding: 0;
  /* Using Google Fonts with good fallbacks */
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  background: var(--bg-gradient);
  color: var(--text-color);
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow-x: hidden;
}

.container {
  max-width: 600px;
  padding: 2rem;
  backdrop-filter: blur(6px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--border-color);
  margin-bottom: 1rem;
  object-fit: cover; /* This ensures the image fits nicely in the circle */
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.subtitle {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: var(--secondary-color);
  font-weight: 500;
}

.description {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.main-link {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.btn {
  background-color: var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  color: #2a1b3d;
  font-weight: 700;
  transition: all 0.3s ease;
  display: block;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-main {
  background-color: var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  color: #2a1b3d;
  font-weight: 700;
  transition: all 0.3s ease;
  display: block;
  font-size: 1rem;
}

.btn-main:hover {
  background-color: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

footer {
  font-size: 0.8rem;
  opacity: 0.7;
  color: var(--secondary-color);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .links {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .avatar {
    width: 100px;
    height: 100px;
  }
}

a {
  color: #f8d7da;
  text-decoration: none;
}