/* Variables */
:root {
  --white: #fff;
  --gray-dark: #a2a2a2;
  --gray-light: #eaeaea;
  --rose: #d8a39d;
  --navy: #2c3e50;
  --shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
}

/* Base Styles */
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
}

/* Linktree Container */
.linktree {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* Profile Image */
.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

/* Profile Name */
.profile-name {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Profile Bio */
.profile-bio {
  padding: 0 10%;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Link Grid */
.link-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

/* Link Items */
.link-item {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.link-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--rose);
  color: var(--rose);
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: var(--gray-dark);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-light);
  text-decoration: none;
}

.social-link:hover {
  background: var(--rose);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .profile-name {
    font-size: 1.75rem;
  }
  
  .link-item {
    padding: 0.9rem;
  }
  
  .linktree {
    margin: 1rem auto;
    padding: 0 1rem;
  }
}
