* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.profile-card {
  text-align: center;
  background: #151515;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
  max-width: 400px;
  width: 100%;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #222;
  padding: 1rem;
  border-radius: 1rem;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
  border: 1px solid #333;
}

.icon-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.icon-card span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Platform-specific colors */
.icon-card.discord { color: #5865F2; }
.icon-card.youtube { color: #FF0000; }
.icon-card.donate  { color: #ff5ca2; }
.icon-card.tiktok  { color: #ffffff; }

.icon-card:hover {
  transform: scale(1.05);
  background-color: #1e1e1e;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

@media (max-width: 500px) {
  .social-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* Spotify-like widget */
.spotify-now-playing {
  margin-top: 1.5rem;
  background: #1db954;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 10px #1db954aa;
  cursor: default;
  position: relative;
}

.spotify-now-playing:hover {
  background: #1ed760;
}

.spotify-now-playing i.fab.fa-spotify {
  font-size: 2.5rem;
  color: white;
  flex-shrink: 0;
}

.spotify-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: white;
  text-align: left;
  overflow: hidden;
}

.song-title {
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-name {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-container {
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 3px;
  transition: width 0.3s linear;
}

.btn-play-pause {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-play-pause:hover {
  color: #111;
}
