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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #eff1f9 0%, #c35201 100%);
  min-height: 100vh;
}

/* Mobile-first (LinkTree style) */
.container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.profile-section {
  margin-bottom: 30px;
}

.profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent url('images/headSplotchv1.gif') center center no-repeat;
  background-size: cover;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-name {
  color: white;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Medula One', sans-serif;
}

.profile-bio {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 20px;
}

.interest-tag {
  color: white;
  padding: 2px 12px;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.link-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: white;
}

.link-icon {
  font-size: 20px;
}

.cta-section {
  color: white;
}

.cta-section a {
  color: inherit;
  text-decoration: none;
}
/* Desktop styles */
@media (min-width: 768px) {
  body {
    background: linear-gradient(135deg, #eff1f9 0%, #c35201 100%);
    overflow-x: hidden;
  }

  .container {
    max-width: 1200px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    gap: 60px;
  }

  .profile-section {
    padding: 60px;
    text-align: left;
    margin-bottom: 0;
  }

  .profile-image {
    width: 200px;
    height: 200px;
    margin: 0 0 25px 0;
  }

  .profile-name {
    font-size: 96px;
    margin-bottom: 20px;
  }

  .profile-bio {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
  }

  .interests {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }

  .interest-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .links-container {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: center;
  }

  .link-item {
    padding: 25px 30px;
    border-radius: 15px;
    font-size: 18px;
    min-height: 80px;
  }

  .cta-section {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-top: 20px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
  }

  .cta-section h3 {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .cta-section p {
    font-size: 16px;
    opacity: 0.9;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .container {
    gap: 100px;
  }

  .profile-section {
    padding: 80px;
  }

  .links-container {
    padding: 80px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-section,
.links-container {
  animation: fadeInUp 0.8s ease-out;
}

.link-item:nth-child(1) {
  animation-delay: 0.1s;
}

.link-item:nth-child(2) {
  animation-delay: 0.2s;
}

.link-item:nth-child(3) {
  animation-delay: 0.3s;
}

.link-item:nth-child(4) {
  animation-delay: 0.4s;
}

.link-item:nth-child(5) {
  animation-delay: 0.5s;
}