       :root {
      --primary: rgb(9, 164, 159);
            --dark-bg: #121212;
            --light-bg: #181818;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --player-height: 90px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Circular', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
        }
        
        /* Layout */
        .main-content {
            min-height: calc(100vh - var(--player-height));
            padding-bottom: 30px;
        }
        
        /* Navbar */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 32px;
            background: rgba(0, 0, 0, 0.6);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .logo {
            font-size: 22px;
            font-weight: 700;
        }
        
        nav {
            display: none;
        }
        
        @media (min-width: 768px) {
            nav {
                display: flex;
                gap: 24px;
            }
        }
        
        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: color 0.2s;
        }
        
        nav a:hover {
            color: var(--text-primary);
        }
    
.artist-link {
    text-decoration: none;
    font-weight: 500;
}
.artist-link:hover {
    text-decoration: underline;
}
        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .search-container {
            background: #FFFFFF;
            padding: 8px 12px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            transition: box-shadow 0.2s;
        }
        
        .search-container:hover {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
        }
         .section {
            margin: 40px 0;
        }
        .songs-grid, .artists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 69px;
        }
        .song-card, .artist-card {
            text-align: center;
        }
        .song-card img, .artist-card img {
            width: 100%;
            border-radius: 8px;
        }
        .artist-card img {
            border-radius: 50%;
        }
        
        .search-container input {
            background: transparent;
            border: none;
            color: #282828;
            margin-left: 8px;
            outline: none;
            width: 220px;
            font-size: 14px;
        }
        
        .login-btn {
            background: var(--primary);
            color: #000000;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            transition: transform 0.1s, var(--dark-bg) 0.2s;
        }
        
        .login-btn:hover {
            background: hsl(120, 2%, 91%);
            transform: scale(1.03);
        }
        
        .login-btn:active {
            transform: scale(0.98);
        }
        
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 80px 24px;
            background: linear-gradient(to bottom, #1E3264, #121212);
        }
        
        .hero h2 {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
            line-height: 1.1;
        }
        
        .hero p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 32px;
            font-size: 18px;
        }
        
        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-btns button {
            padding: 12px 40px;
            border-radius: 500px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1.5px;
            cursor: pointer;
            text-transform: uppercase;
            border: none;
            transition: transform 0.1s;
        }
        
        .hero-btns button:active {
            transform: scale(0.96);
        }
        
        .play-btn {
            background: var(--primary);
            color: #000000;
        }
        
        .play-btn:hover {
            background: rgb(238, 238, 238)0;
        }
        
        .signup-btn {
            background: transparent;
            color: white;
            border: 2px solid #727272;
        }
        
        .signup-btn:hover {
            border-color: white;
        }
        
        /* Featured Albums */
        .section {
            padding: 32px;
            padding-top: 40px;
        }
        
        .section h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        
        .albums-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        @media (min-width: 768px) {
            .albums-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .albums-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        .album-card {
            background: #181818;
            border-radius: 8px;
            padding: 16px;
            cursor: pointer;
            transition:var(--dark-bg) 0.3s;
            position: relative;
        }
        
        .album-card:hover {
            background: #282828;
        }
        
        .album-cover-container {
            position: relative;
            margin-bottom: 16px;
        }
        
        .album-cover {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 6px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }
        
        .play-icon-container {
            position: absolute;
            bottom: 10px;
            right: 10px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s;
            background: var(--primary);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .album-card:hover .play-icon-container {
            opacity: 1;
            transform: translateY(0);
        }
        
        .play-icon-container:hover {
            transform: scale(1.05) translateY(0);
        }
        
        .album-title {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .album-artist {
            color: var(--text-secondary);
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* Songs List */
        .songs-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .song-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            padding: 8px 16px;
            border-radius: 6px;
            transition: var(--light-bg) 0.2s;
        }
        
        .song-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .song-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .song-index {
            color: var(--text-secondary);
            width: 24px;
            font-size: 16px;
            text-align: right;
        }
        
        .song-cover {
            width: 40px;
            height: 40px;
            border-radius: 4px;
        }
        
        .song-title {
            font-weight: 500;
            font-size: 16px;
        }
        
        .song-artist {
            color: var(--text-secondary);
            font-size: 14px;
            margin-top: 2px;
        }

        

        .song-artist a {
            color: gray;
            font-size: 14px;
            margin-top: 2px;
            text-decoration: none;
        }

        .song-artist a:hover {
           color: rgb(9, 164, 159) !important; 
        }

     
        
        .play-song-btn {
            background: transparent;
            color: white;
            border: none;
            padding: 8px;
            opacity: 0;
            transition: opacity 0.2s;
            cursor: pointer;
        }
        
        .song-item:hover .play-song-btn {
            opacity: 1;
        }
        
        /* Player */
        .player-container {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: var(--player-height);
            background: #181818;
            border-top: 1px solid #282828;
            display: flex;
            z-index: 100;
            padding: 8px 16px;
        }
        
        .player-left {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 25%;
            min-width: 180px;
        }
        
        .now-playing-cover {
            width: 56px;
            height: 56px;
            border-radius: 4px;
        }
        
        .now-playing-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .now-playing-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .now-playing-artist {
            font-size: 12px;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .like-btn {
            margin-left: 16px;
            background: transparent;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
        }
        
        .player-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
            max-width: 600px;
        }
        
        .player-controls {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 8px;
        }
        
        .player-btn {
            color: var(--text-secondary);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .player-btn:hover {
            color: white;
        }
        
        .shuffle-btn,
        .repeat-btn {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        .play-pause-btn {
            background: white;
            color: black;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.1s;
        }
        
        .play-pause-btn:hover {
            transform: scale(1.05);
        }
        
        .play-pause-btn:active {
            transform: scale(0.98);
        }
        
        .progress-container {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .progress-time {
            font-size: 11px;
            color: var(--text-secondary);
            min-width: 40px;
        }
        
        .progress-bar {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }
        
        .progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: var(--text-secondary);
            border-radius: 2px;
            width: 30%;
        }
        
        .progress:hover {
            background: var(--primary);
        }
        
        .progress-handle {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translate(50%, -50%);
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.2s;
        }
        
        .progress-bar:hover .progress-handle {
            opacity: 1;
        }
        
        .progress-bar:hover .progress {
            height: 6px;
            transform: translateY(-1px);
        }
        
        .player-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            width: 25%;
            min-width: 180px;
        }
        
        .volume-container {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 120px;
        }
        
        .volume-icon {
            color: var(--text-secondary);
        }
        
        .volume-bar {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }
        
        .volume-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: var(--text-secondary);
            border-radius: 2px;
            width: 80%;
        }
        
        .volume-bar:hover .volume-progress {
            background: var(--primary);
        }
        
        /* Footer */
        .main-footer {
            background: #181818;
            padding: 60px 32px 32px;
            border-top: 1px solid #282828;
            margin-top: 40px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 40px;
        }
        
        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .footer-column h4 {
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 16px;
        }
        
        .footer-link a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            transition: color 0.2s;
        }
        
        .footer-link a:hover {
            color: var(--primary);
        }
        
        .social-links {
            color: white;
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }
        /* VERIFIED BADGE — böyüdülmüş */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9,164,159,0.15);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 14px; /* artdı */
  font-weight: 600;
  color: var(--primary);
  position: relative;
}
.verified-badge svg {
  width: 20px; /* 16 → 20 oldu */
  height: 20px;
  color: var(--primary);
}
.verified-text {
  font-size: 14px; /* yazı da böyüdü */
}
.verified-tip {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  background: #111;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}
.verified-badge:hover .verified-tip {
  opacity: 1;
}

        
        .social-link {
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--dark-bg) 0.2s;
        }
        
        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .footer-bottom {
            margin-top: 60px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            color: var(--text-secondary);
            font-size: 12px;
        }
        
        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        .footer-legal-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .footer-legal-links a {
            color: var(--text-secondary);
            text-decoration: none;
        }
        
        .footer-legal-links a:hover {
            color: white;
            text-decoration: underline;
        }
    .artist-hero {
      padding: 48px 24px 28px;
      background: linear-gradient(to bottom, #1E3264, var(--dark-bg));
    }
    .artist-hero .wrap {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: end;
    }
    @media (min-width: 768px){ .artist-hero .wrap{ grid-template-columns: 220px 1fr; gap: 32px; } }
    .artist-avatar {
      width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
      box-shadow: 0 14px 36px rgba(0,0,0,.55);
    }
    @media (min-width: 768px){ .artist-avatar{ width: 220px; height: 220px; } }

    .artist-name { font-size: clamp(36px, 9vw, 80px); font-weight: 900; line-height: .95; margin: 6px 0 10px; }
    .verified-badge {
      display: inline-flex; gap: 8px; align-items: center;
      color: var(--text-secondary); font-size: 14px;
    }
    .verified-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); display:inline-block; }
    .monthly-chip { color: var(--text-secondary); margin-top: 6px; }

    .artist-actions { display:flex; gap:12px; margin-top:16px; flex-wrap: wrap; }
    .more-btn { background: transparent; color: var(--text-primary); border: 2px solid #727272; border-radius: 500px; padding: 10px 16px; font-weight:700; }
    .follow-btn { background: transparent; color: #fff; border:2px solid #727272; border-radius: 500px; padding: 10px 22px; font-weight:700; }
    .follow-btn.active { background: var(--primary); color:#000; border-color: var(--primary); }

    /* Popular + Artist pick iki kolon */
    .artist-main {
      max-width: 1200px; margin: 20px auto 0; padding: 0 24px;
      display: grid; grid-template-columns: 1fr; gap: 28px;
    }
    @media (min-width: 1024px){ .artist-main{ grid-template-columns: 1.5fr .9fr; } }

    .section h3 { margin-bottom: 8px; }
    .subtle { color: var(--text-secondary); font-size: 14px; }

    /* Popular list: senin .songs-list/.song-item stillerini kullanıp sağa metrik ekledik */
    .song-right { display:flex; align-items:center; gap:16px; }
    .song-plays { color: var(--text-secondary); min-width: 110px; text-align:right; font-size:14px; }
    .song-duration { color: var(--text-secondary); min-width: 42px; text-align:right; font-size:14px; }
    .song-index { width: 24px; text-align:right; }

    /* Artist pick kartı: senin .album-card bazlı */
    .artist-pick-card { background:#181818; border-radius:12px; padding:16px; }
    .artist-pick-card .cover { width:100%; border-radius:8px; aspect-ratio: 16/9; object-fit: cover; margin-top:10px; }
    .mini-badges { display:flex; gap:8px; margin-bottom:8px; }
    .mini-badge { padding: 4px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.15); font-size:12px; color:var(--text-secondary); }

    /* Discography üstü sekmeler */
    .tabs { display:flex; gap:8px; flex-wrap: wrap; margin-bottom: 16px; }
    .tab { background: transparent; border:1px solid rgba(255,255,255,.15); color:#fff; padding:8px 12px; border-radius:999px; cursor:pointer; font-size:14px; }
    .tab.active { background:#fff; color:#000; border-color:#fff; }

    .albums-grid .album-card { transition: transform .25s ease; }
    .albums-grid .album-card:hover { transform: translateY(-4px); }

    /* küçük yardımcı */
    .muted-link { color: var(--text-secondary); text-decoration:none; font-size:14px; }
    .muted-link:hover { color: #fff; text-decoration: underline; }

    