       :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;
        }
        /* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* POPUP -- Başlanğıc */
.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #1c1c1c;
    padding: 25px;
    border-radius: 12px;
    width: 320px;
    text-align: center;
    color: white;
    animation: popupOpen .25s ease-out;
}

@keyframes popupOpen {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-btn {
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #ffffff;
}
/* POPUP -- Son */


.logo img {
    height: 200px;   
    width: auto;    
    display: block;
}

        body {
            background-color: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
        }
        
       
        .main-content {
            min-height: calc(100vh - var(--player-height));
            padding-bottom: 30px;
        }
        
       
        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 {
    background: #1DB954; 
    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;
        }
        
        .player-container {
  display: none !important;  /* Başlangıçta gizli */
}
.player-container.active {
  display: flex !important; /* Seçilince görünür */
}

        .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 {
            color: whitesmoke;
            text-decoration: none;
            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;
        }
        
        .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;
        }



        .burning-text {
  color: #80cfd4; 
  font-weight: bold;
  font-size: 36px;
  text-shadow: 0 0 2px #80cfd4; 
  animation: burn 1s infinite alternate;
}

@keyframes burn {
  0% {
    color: #80cfd4;
    text-shadow: 0 0 2px #80cfd4;
    opacity: 1;
  }
  100% {
    color: #80cfd4; 
    text-shadow: 0 0 2px #80cfd4;
    opacity: 0.9;
  }
}


.blueburn-text {
  color: #01a49f; 
  font-weight: bold;
  font-size: 36px;
  text-shadow: 0 0 4px #01a49f; 
  animation: blueburn 1s infinite alternate;
}

@keyframes blueburn {
  0% {
    color: #01a49f;
    text-shadow: 0 0 4px #01a49f, 0 0 8px #01a49f;
    opacity: 1;
  }
  100% {
    color: #b3e6e9; 
    text-shadow: 0 0 6px #01a49f, 0 0 12px #01a49f;
    opacity: 0.9;
  }
}



.secondburn-text {
  color: #449791; 
  font-weight: bold;
  font-size: 36px;
  text-shadow: 0 0 4px #7cc6c1; 
  animation: secondburn 1s infinite alternate;
}

@keyframes secondburn {
  0% {
    color: #01a49f;
    text-shadow: 0 0 4px #156d67, 0 0 8px #01a49f;
    opacity: 1;
  }
  100% {
    color: #156d67; 
    text-shadow: 0 0 6px #156d67, 0 0 12px #01a49f;
    opacity: 0.9;
  }
}


@media (min-width: 768px) {
    .logo img {
        height: 100px; /* Planşet və masaüstündə bir az daha böyük */
    }
}

@media (min-width: 1024px) {
    .logo img {
        height: 150px; /* Böyük ekranlarda daha da böyük */
    }
}

/* POPUP */
.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.popup-content {
    background: #1c1c1c;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    color: white;
    animation: popupOpen .25s ease-out;
}

@keyframes popupOpen {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-btn {
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #ffffff;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px; /* Mobildə padding azaldıldı */
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
}

@media (min-width: 768px) {
    header {
        padding: 16px 32px;
    }
}

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 {
    background: #1DB954; 
    text-decoration: none;
    font-weight: 500;
}
.artist-link:hover {
    text-decoration: underline;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-container {
    background: #FFFFFF;
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s;
}

.search-container input {
    background: transparent;
    border: none;
    color: #282828;
    margin-left: 8px;
    outline: none;
    width: 120px; /* Mobildə axtarış sahəsi kiçildildi */
    font-size: 13px;
    transition: width 0.3s;
}

@media (min-width: 768px) {
    .search-container {
        padding: 8px 12px;
    }
    .search-container input {
        width: 220px;
        font-size: 14px;
    }
}

.search-container:hover {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.login-btn {
    background: var(--primary);
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: transform 0.1s, background-color 0.2s;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .login-btn {
        font-size: 14px;
        padding: 10px 22px;
    }
}

.login-btn:hover {
    background: hsl(120, 2%, 91%);
    transform: scale(1.03);
}

.login-btn:active {
    transform: scale(0.98);
}

/* Sections & Grids */
.section {
    padding: 16px; /* Mobil daxili boşluq */
    margin: 20px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 32px;
        margin: 40px 0;
    }
}

.section h3 {
    color: whitesmoke;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

/* Songs & Artists Grid */
.songs-grid, .artists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobildə yan-yana 2 kart */
    gap: 16px; /* Böyük boşluq (69px) mobildə 16px-ə salındı */
}

@media (min-width: 480px) {
    .songs-grid, .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .songs-grid, .artists-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .songs-grid, .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 32px;
    }
}

.song-card, .artist-card {
    text-align: center;
}

.song-card img, .artist-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
}

.artist-card img {
    border-radius: 50%;
}

/* Featured Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .albums-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.album-card {
    background: #181818;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
}

@media (min-width: 768px) {
    .album-card {
        padding: 16px;
    }
}

.album-card:hover {
    background: #282828;
}

.album-cover-container {
    position: relative;
    margin-bottom: 12px;
}

.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: 8px;
    right: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .play-icon-container {
        width: 48px;
        height: 48px;
        bottom: 10px;
        right: 10px;
    }
}

.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: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .album-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
}

.album-artist {
    color: var(--text-secondary);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .album-artist {
        font-size: 14px;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 16px;
    background: linear-gradient(to bottom, #1E3264, #121212);
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 24px;
    }
}

.hero h2 {
    font-size: 32px; /* Mobildə böyük başlıqlar kiçildildi */
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h2 {
        font-size: 52px;
        margin-bottom: 24px;
        letter-spacing: -1.5px;
        line-height: 1.1;
    }
}

.hero p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 15px;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns button {
    padding: 10px 24px;
    border-radius: 500px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    border: none;
    transition: transform 0.1s;
}

@media (min-width: 768px) {
    .hero-btns button {
        padding: 12px 40px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}

.hero-btns button:active {
    transform: scale(0.96);
}

.play-btn {
    background: var(--primary);
    color: #000000;
}

.play-btn:hover {
    background: rgb(238, 238, 238);
}

.signup-btn {
    background: transparent;
    color: white;
    border: 2px solid #727272;
}

.signup-btn:hover {
    border-color: white;
}

/* 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 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

@media (min-width: 768px) {
    .song-item {
        padding: 8px 16px;
    }
}

.song-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.song-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .song-info {
        gap: 16px;
    }
}

.song-index {
    color: var(--text-secondary);
    width: 20px;
    font-size: 14px;
    text-align: right;
    display: none; /* Mobildə yer qazanmaq üçün gizlədildi */
}

@media (min-width: 480px) {
    .song-index {
        display: block;
    }
}

.song-cover {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.song-title {
    font-weight: 500;
    font-size: 14px;
}

@media (min-width: 768px) {
    .song-title {
        font-size: 16px;
    }
}

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

@media (min-width: 768px) {
    .song-artist, .song-artist a {
        font-size: 14px;
    }
}

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

.play-song-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 8px;
    opacity: 1; /* Mobildə hover olmadığı üçün həmişə görünür */
    cursor: pointer;
}

@media (min-width: 768px) {
    .play-song-btn {
        opacity: 0;
        transition: opacity 0.2s;
    }
    .song-item:hover .play-song-btn {
        opacity: 1;
    }
}

/* Player */
.player-container {
    display: none !important;
}

.player-container.active {
    display: flex !important;
    flex-direction: row;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--player-height);
    background: #181818;
    border-top: 1px solid #282828;
    z-index: 100;
    padding: 8px 16px;
    justify-content: space-between;
    align-items: center;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 40%; /* Mobildə mətnlər sığışsın deyə genişlik artırıldı */
    min-width: 120px;
}

@media (min-width: 768px) {
    .player-left {
        width: 25%;
        min-width: 180px;
    }
}

.now-playing-cover {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .now-playing-cover {
        width: 56px;
        height: 56px;
    }
}

.now-playing-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden; /* Taşmaları önləmək üçün */
}

.now-playing-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .now-playing-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
}

.now-playing-artist {
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.like-btn {
    margin-left: 8px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

@media (min-width: 768px) {
    .like-btn {
        margin-left: 16px;
    }
}

.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: 12px;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .player-controls {
        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;
}

/* Mobildə bəzi nəzarət elementlərini gizlədirik ki pleyer sıxılmasın */
.shuffle-btn,
.repeat-btn {
    font-size: 14px;
    color: var(--text-secondary);
    display: none; 
}

@media (min-width: 480px) {
    .shuffle-btn,
    .repeat-btn {
        display: block;
    }
}

@media (min-width: 768px) {
    .shuffle-btn,
    .repeat-btn {
        font-size: 16px;
    }
}

.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: 10px;
    color: var(--text-secondary);
    min-width: 30px;
}

@media (min-width: 768px) {
    .progress-time {
        font-size: 11px;
        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: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

@media (min-width: 768px) {
    .progress-handle {
        width: 12px;
        height: 12px;
    }
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.progress-bar:hover .progress {
    height: 6px;
    transform: translateY(-1px);
}

/* Sağ tərəf (Səs paneli) */
.player-right {
    display: none; /* Mobildə səs panelini gizlədirik, yalnız planşet və kompyuterdə görünür */
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 25%;
    min-width: 150px;
}

@media (min-width: 768px) {
    .player-right {
        display: flex;
    }
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100px;
}

.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: 40px 16px 24px;
    border-top: 1px solid #282828;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .main-footer {
        padding: 60px 32px 32px;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* Mobildə sütunlar alt-alta düzülür */
    gap: 32px;
}

@media (min-width: 480px) {
    .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: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 24px;
    }
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .footer-link {
        margin-bottom: 16px;
    }
}

.footer-link a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
}

@media (min-width: 768px) {
    .footer-link a {
        font-size: 16px;
    }
}

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

.social-links {
    color: white;
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

@media (min-width: 768px) {
    .social-link {
        width: 40px;
        height: 40px;
    }
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 11px;
}

@media (min-width: 768px) {
    .footer-bottom {
        margin-top: 60px;
        flex-direction: row;
        justify-content: space-between;
        font-size: 12px;
    }
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-legal-links {
        gap: 16px;
    }
}

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Animasiyalı Mətnlər */
.burning-text {
    color: #80cfd4; 
    font-weight: bold;
    font-size: 24px; /* Mobildə ölçü kiçildildi */
    text-shadow: 0 0 2px #80cfd4; 
    animation: burn 1s infinite alternate;
}

@media (min-width: 768px) {
    .burning-text {
        font-size: 36px;
    }
}

@keyframes burn {
    0% {
        color: #80cfd4;
        text-shadow: 0 0 2px #80cfd4;
        opacity: 1;
    }
    100% {
        color: #80cfd4; 
        text-shadow: 0 0 2px #80cfd4;
        opacity: 0.9;
    }
}

.blueburn-text {
    color: #01a49f; 
    font-weight: bold;
    font-size: 24px; /* Mobildə ölçü kiçildildi */
    text-shadow: 0 0 4px #01a49f; 
    animation: blueburn 1s infinite alternate;
}

@media (min-width: 768px) {
    .blueburn-text {
        font-size: 36px;
    }
}

@keyframes blueburn {
    0% {
        color: #01a49f;
        text-shadow: 0 0 4px #01a49f, 0 0 8px #01a49f;
        opacity: 1;
    }
    100% {
        color: #b3e6e9; 
        text-shadow: 0 0 6px #01a49f, 0 0 12px #01a49f;
        opacity: 0.9;
    }
}

.secondburn-text {
    color: #449791; 
    font-weight: bold;
    font-size: 24px; /* Mobildə ölçü kiçildildi */
    text-shadow: 0 0 4px #7cc6c1; 
    animation: secondburn 1s infinite alternate;
}

@media (min-width: 768px) {
    .secondburn-text {
        font-size: 36px;
    }
}

@keyframes secondburn {
    0% {
        color: #01a49f;
        text-shadow: 0 0 4px #156d67, 0 0 8px #01a49f;
        opacity: 1;
    }
    100% {
        color: #156d67; 
        text-shadow: 0 0 6px #156d67, 0 0 12px #01a49f;
        opacity: 0.9;
    }
}