@font-face {
  font-family: 'BrittanySignature'; 
  src: url('/fonts/January\ Night.ttf') format('truetype'); 
}

/* Dark beige theme */
body {
  background: #2a2620;
  color: #e0d8cc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

/* Profile image floating above rectangle */
.profile-img-container {
  margin-bottom: -50px;
  z-index: 2;
}

.profile-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #3a3630;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Rectangular container */
.container {
  width: 100%;
  max-width: 400px;
  margin-top: 70px;
}

.content {
  background: #3a3630;
  border-radius: 12px;
  padding: 3rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #4a4640;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

/* Rest of your styles (unchanged) */
h1 {
  font-family: 'BrittanySignature', serif;
  font-size: 2.5rem;
  color: #e0d8cc;
  margin: 0.5rem 0 1rem 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  background: #5a4a3a;
  color: #e0d8cc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
}


.badge:hover {
  transform: translateY(-2px);
  background: #6a5a4a;
}

/* Music Section */
.music-section {
  margin: 1.5rem 0;
}

.music-section h2 {
  font-size: 1.3rem;
  color: #e0d8cc;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.songs-list {
  background: rgba(58, 54, 48, 0.7);
  border-radius: 8px;
  padding: 0.8rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid #4a4640;
}

.song {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #4a4640;
  transition: all 0.2s ease;
}

.song:last-child {
  border-bottom: none;
}

.song:hover {
  background: rgba(90, 74, 58, 0.3);
  border-radius: 6px;
}

.song-title {
  font-weight: 500;
  color: #e0d8cc;
}

.song-artist {
  color: #a0988c;
  font-style: italic;
  font-size: 0.9rem;
}

/* Discord Link */
.discord-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(90, 74, 58, 0.7); 
  color: #e0d8cc;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #4a4640;
  letter-spacing: 0.5px;
}

.discord-link i {
  margin-right: 10px;
  color: #e0d8cc;
  font-size: 1.1rem;
}

.discord-link:hover {
  background: rgba(110, 94, 78, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-color: #5a4a3a;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 480px) {
  .content {
      padding: 3rem 1.5rem 1.5rem;
  }
  
  h1 {
      font-size: 2.2rem;
  }
  
  .profile-img {
      width: 120px;
      height: 120px;
  }
}