/* ==========================================================================
   KAĞAN GÜNGÖR - MINIMALIST & TRANSLUCENT BIO / LINK HUB
   Sade, göz yormayan, yarı saydam kartlardan oluşan modern tasarım sistemi.
   ========================================================================== */

:root {
  /* Renk Paleti - Derin Mat Füme & Yumuşak Yarı Saydam Tonlar */
  --bg-main: #0c0e12;
  --bg-gradient-1: radial-gradient(circle at 50% 0%, rgba(30, 36, 48, 0.45) 0%, transparent 60%);
  --bg-gradient-2: radial-gradient(circle at 85% 30%, rgba(24, 28, 38, 0.35) 0%, transparent 50%);

  /* Yarı Saydam Cam (Glassmorphism) Yüzeyler */
  --glass-bg: rgba(255, 255, 255, 0.035);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-bg-active: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.18);
  --glass-blur: blur(20px);

  /* Metin Renkleri */
  --text-main: #f3f4f6;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Vurgu & Rozetler (Sade & Zarif) */
  --badge-bg: rgba(255, 255, 255, 0.06);
  --badge-border: rgba(255, 255, 255, 0.12);
  --badge-text: #e2e8f0;
  
  --accent-soft: rgba(255, 255, 255, 0.15);
  --accent-dot: #10b981; /* Canlı stüdyo durumu yeşili */

  /* Ölçüler & Kenarlıklar */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Gölgeler */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);

  /* Geçişler */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------- RESET & TEMEL ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  background-image: var(--bg-gradient-1), var(--bg-gradient-2);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding: 2.5rem 1.25rem 3.5rem;
  line-height: 1.55;
}

/* Arka plan sakin dokusu */
.bg-ambient-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% 100%, rgba(20, 24, 32, 0.4) 0%, transparent 60%);
}

/* ---------------- ANA KONTEYNER ---------------- */
.app-container {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-container.is-ready {
  opacity: 1;
}

/* ---------------- YARI SAYDAM KART ŞABLONU ---------------- */
.glass-box {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-box:hover {
  border-color: var(--glass-border-hover);
}

/* ---------------- ÜST PROFİL KARTI (HEADER) ---------------- */
.profile-card {
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Üst Paylaşım & İletişim Hızlı Butonları */
.profile-top-actions {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.5rem;
}

.icon-btn-subtle {
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.icon-btn-subtle:hover {
  background: var(--glass-bg-hover);
  color: var(--text-main);
  border-color: var(--glass-border-hover);
  transform: translateY(-1px);
}

.icon-btn-subtle svg {
  width: 17px;
  height: 17px;
}

/* Avatar Görseli */
.avatar-wrapper {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 1.25rem;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.status-indicator {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--accent-dot);
  border: 3px solid var(--bg-main);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

/* İsim & Rozet */
.profile-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.profile-name {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.verified-icon {
  width: 19px;
  height: 19px;
  color: #38bdf8; /* Yumuşak onaylı mavi */
  flex-shrink: 0;
}

.profile-tagline {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.profile-bio-text {
  font-size: 0.88rem;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 1.15rem;
  line-height: 1.5;
}

/* Durum Rozeti (🎧 Stüdyoda) */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.status-dot-pulse {
  width: 7px;
  height: 7px;
  background: var(--accent-dot);
  border-radius: var(--radius-full);
  display: inline-block;
  opacity: 0.9;
}

/* Hızlı Sosyal Medya İkon Çubuğu */
.quick-socials-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
}

.social-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.social-icon-box:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.social-icon-box svg {
  width: 19px;
  height: 19px;
}

/* ---------------- ÖNE ÇIKAN SES / BEAT ÇALAR KARTI ---------------- */
.player-card {
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.player-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.player-thumb {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.player-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Oynat / Durdur Butonu */
.play-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
  transform: scale(1.04);
}

.play-btn svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.play-btn.is-playing svg {
  margin-left: 0;
}

/* Dalga Formu & İlerleme Çubuğu */
.player-controls-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.25rem;
}

.waveform-container {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 0 4px;
}

.wave-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  transition: height 0.2s ease, background-color 0.2s ease;
}

.wave-bar.active {
  background: rgba(255, 255, 255, 0.65);
}

.player-card.is-playing .wave-bar {
  animation: waveMotion 1.2s ease-in-out infinite alternate;
}

@keyframes waveMotion {
  0% { height: 6px; }
  50% { height: 24px; }
  100% { height: 10px; }
}

.player-card.is-playing .wave-bar:nth-child(2n) { animation-delay: 0.15s; }
.player-card.is-playing .wave-bar:nth-child(3n) { animation-delay: 0.3s; }
.player-card.is-playing .wave-bar:nth-child(4n) { animation-delay: 0.45s; }
.player-card.is-playing .wave-bar:nth-child(5n) { animation-delay: 0.6s; }

.player-time {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
  text-align: right;
}

/* ---------------- BİYOGRAFİ KARTI (HAKKIMDA) ---------------- */
.bio-card {
  padding: 1.4rem 1.5rem;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.card-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-title svg {
  width: 17px;
  height: 17px;
  color: var(--text-muted);
}

.bio-content {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bio-content p {
  margin-bottom: 0.75rem;
}

.bio-content p:last-child {
  margin-bottom: 0;
}

.bio-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding-top: 0;
  border-top: none;
}

.tag-pill {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* ---------------- KATEGORİ & LİNK GRUPLARI ---------------- */
#link-groups-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.link-group-section {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.category-header {
  padding: 0.35rem 0.5rem 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.category-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.category-desc {
  font-size: 0.76rem;
  color: var(--text-dim);
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Tekil Link Kartı (Yarı Saydam Box) */
.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.link-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.link-card:active {
  background: var(--glass-bg-active);
  transform: translateY(0);
}

.link-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.link-card:hover .link-icon-box {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.link-icon-box svg {
  width: 20px;
  height: 20px;
}

.link-content {
  flex: 1;
  min-width: 0;
}

.link-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.link-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex-shrink: 1;
}

.link-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--badge-text);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.link-description {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-arrow {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

.link-card:hover .link-arrow {
  color: var(--text-main);
  transform: translateX(3px);
}

/* ---------------- İLETİŞİM & PAYLAŞIM ALT ÇUBUĞU ---------------- */
.quick-footer-card {
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.85rem;
}

.footer-action-btn {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  min-height: 48px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.footer-action-btn:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-1px);
}

.footer-action-btn svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.btn-text-desktop {
  display: inline;
}

.btn-text-mobile {
  display: none;
}

.footer-text {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.footer-link:hover {
  color: var(--text-muted);
  text-decoration: underline;
}

/* ---------------- ÇEREZ BİLDİRİM KUTUSU (CONSENT NOTICE) ---------------- */
.consent-notice-box, .cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 2.5rem);
  max-width: 540px;
  background: rgba(18, 22, 30, 0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.15rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
}

.consent-notice-box.show, .cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.consent-content-row, .cookie-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.consent-icon-svg, .cookie-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-dot);
  flex-shrink: 0;
}

.consent-text-p, .cookie-text {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.consent-text-p a, .cookie-text a {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.consent-text-p a:hover, .cookie-text a:hover {
  color: #38bdf8;
}

.consent-agree-btn, .cookie-accept-btn {
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.81rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.consent-agree-btn:hover, .cookie-accept-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  color: #ffffff;
}

.consent-agree-btn:active, .cookie-accept-btn:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .consent-notice-box, .cookie-banner {
    bottom: 1rem;
    width: calc(100% - 1.5rem);
    padding: 0.85rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .consent-agree-btn, .cookie-accept-btn {
    text-align: center;
    padding: 0.6rem;
    width: 100%;
  }
}

/* ---------------- MODALLER & AÇILIR PENCERELER ---------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 10, 14, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  width: 100%;
  max-width: 440px;
  background: #12151c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.96) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.modal-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.share-url-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.5rem 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  transition: border-color var(--transition-fast);
}

.share-url-box:focus-within {
  border-color: rgba(255, 255, 255, 0.28);
}

.share-url-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  outline: none;
  cursor: text;
  user-select: all;
  -webkit-user-select: all;
}

.share-copy-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.share-copy-text {
  display: inline;
}

.share-copy-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.share-copy-btn:active {
  transform: translateY(0);
}

.qr-code-wrapper {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  width: fit-content;
}

.qr-code-wrapper img, .qr-code-wrapper svg {
  display: block;
}

/* ---------------- BİLDİRİM TOAST ---------------- */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  background: #1a1e27;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  z-index: 1100;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notification svg {
  width: 16px;
  height: 16px;
  color: var(--accent-dot);
}

/* ---------------- RESPONSIVE MEDYA SORGULARI ---------------- */
@media (max-width: 480px) {
  body {
    padding: 1.25rem 0.85rem 2.5rem;
  }

  .profile-card {
    padding: 1.75rem 1.15rem 1.35rem;
  }

  .avatar-wrapper {
    width: 88px;
    height: 88px;
    margin-bottom: 1rem;
  }

  .profile-name {
    font-size: 1.3rem;
  }

  .player-card {
    padding: 1.1rem;
  }

  .link-card {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .link-title {
    font-size: 0.9rem;
  }

  .link-badge {
    font-size: 0.65rem;
    padding: 0.12rem 0.4rem;
  }

  .link-icon-box {
    width: 36px;
    height: 36px;
  }

  .link-icon-box svg {
    width: 18px;
    height: 18px;
  }

  .btn-text-desktop {
    display: none;
  }

  .btn-text-mobile {
    display: inline;
  }

  .quick-footer-card {
    padding: 0.85rem 1rem;
    gap: 0.65rem;
  }

  .footer-action-btn {
    padding: 0.7rem 0.5rem;
    font-size: 0.82rem;
    min-height: 44px;
  }

  .share-copy-text {
    display: none;
  }

  .share-copy-btn {
    padding: 0.45rem 0.6rem;
    min-width: 36px;
    justify-content: center;
  }
}
