/* Profile Card Frameless Wrapper */
.profile-card {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 20px 0;
  text-align: center;
}

/* Avatar Header */
.avatar-container {
  width: 220px;
  height: 220px;
  margin: 0 auto 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Artist Information */
.artist-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.artist-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 32px;
}

/* Link Cards List (Spans full screen container width) */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;             /* White background requested */
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  color: #111113;                  /* Dark text for white background */
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.platform-card:hover {
  background: #f8f9fa;             /* Subtle off-white hover background */
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.platform-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.platform-icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.platform-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.platform-name {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: #111113;
}

.platform-action {
  font-family: var(--font-body);
  font-size: 11px;
  color: #555864;                  /* Muted dark grey for details */
  font-weight: 500;
}

.platform-arrow {
  color: #888b97;
  font-size: 20px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.platform-card:hover .platform-arrow {
  transform: translateX(5px);
  color: #111113;
}

/* Hover Accent Colors per Platform */
.platform-card[data-platform="spotify"]:hover {
  border-color: rgba(29, 185, 84, 0.5);
}
.platform-card[data-platform="spotify"]:hover .platform-arrow {
  color: var(--spotify);
}

.platform-card[data-platform="youtube"]:hover {
  border-color: rgba(255, 0, 0, 0.5);
}
.platform-card[data-platform="youtube"]:hover .platform-arrow {
  color: var(--youtube);
}

.platform-card[data-platform="apple-music"]:hover {
  border-color: rgba(252, 60, 68, 0.5);
}
.platform-card[data-platform="apple-music"]:hover .platform-arrow {
  color: var(--apple-music);
}

/* Social Icon Bar */
.social-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Footer Section */
.app-footer {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.app-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.app-footer a:hover {
  color: var(--text-primary);
}

.app-footer .dot {
  margin: 0 6px;
  opacity: 0.4;
}

.footer-disclaimer {
  margin-top: 8px;
}

/* Cookie Banner at Bottom */
.cookie-banner-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.cookie-card {
  background: rgba(15, 15, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-card.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: left;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-decline {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-ui);
  font-size: 13px;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s;
}

.btn-cookie-decline:hover {
  color: var(--text-primary);
}

.btn-cookie-accept {
  background: var(--text-primary);
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-cookie-accept:hover {
  opacity: 0.85;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .app-container {
    padding: 32px 16px 24px;
  }
  
  .avatar-container {
    width: 180px;
    height: 180px;
  }

  .artist-title {
    font-size: 32px;
  }

  .cookie-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }
}
