



.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero-title span {
    color: var(--pink-500);
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    max-width: 32rem;
    min-height: 3em;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.1s;
    background-color: rgba(255, 255, 255, 0.05);
}

.store-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.store-button svg {
    width: 32px;
    height: 32px;
}

.store-button .button-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-button .small {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.store-button .large {
    font-size: 1rem;
    font-weight: 600;
}

.app-store svg {
    fill: white;
}

.google-play svg {
    fill: white;
}

.player-container {
    position: relative;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    overflow: hidden;
}

.player-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(59, 130, 246, 0.3));
    filter: blur(100px);
    z-index: -1;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.album-art {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    object-fit: cover;
    animation: album-pulse 3s ease-in-out infinite;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.album-art:hover {
    transform: scale(1.1);
}

@keyframes album-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 12px rgba(236, 72, 153, 0.2);
    }
}

.track-info h3 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.track-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--pink-500);
    width: 0;
    transition: width 0.1s linear;
}

.time-info {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.control-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s;
}

.control-button:hover {
    color: white;
}

.play-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pink-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: #d53f8c;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-percentage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    width: 40px;
    text-align: right;
}

.volume-slider {
    width: 100px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    border-radius: 5px;
    height: 5px;
}

.volume-slider:hover {
    opacity: 1;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--pink-500);
    cursor: pointer;
    border-radius: 50%;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: var(--pink-500);
    cursor: pointer;
    border-radius: 50%;
}

.btn-share {
    background: none;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.btn-share:hover {
    color: white;
}

.btn-share svg {
    width: 24px;
    height: 24px;
}

.share-icon {
    stroke: var(--pink-500);
}

.install-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2); 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(59, 130, 246, 0.3));
}



.install-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.install-button path {
    fill: var(--pink-500);
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-20px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); visibility: hidden; }
}

@media (max-width: 1024px) {
    main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(10, 1, 24, 0.9);
        backdrop-filter: blur(10px);
    }



    .store-buttons {
        display: none;
    }

    .play-button {
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .controls {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .volume-control {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    body {
        padding-top: 70px; 
        background-color: rgba(10, 1, 24, 0.9);

    } 

   
    .player-container {
        margin-top: -2rem; 
    }

   