* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(22, 33, 62, 0.75) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg') center/cover no-repeat;
    filter: blur(8px) brightness(0.4) saturate(0.3);
    z-index: -2;
    transform: scale(1.1);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 50%, rgba(26, 26, 46, 0.6) 100%);
    z-index: -1;
}

.artist-profile {
    background: rgba(30, 30, 46, 0.95);
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    padding: 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.6s ease-in;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.profile-image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.profile-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 50%, rgba(26, 26, 46, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.profile-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(1.05) contrast(1.1) saturate(0.4);
}

.profile-content {
    padding: 50px 40px;
    background: rgba(30, 30, 46, 0.95);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.album-section {
    margin: 50px 0;
    padding: 0;
}

.music-services-container {
    margin-top: 30px;
}

.album-banner {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px 50px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.album-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.album-banner .album-title {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.album-banner .album-date {
    display: block;
    font-size: 18px;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.social-section {
    margin: 40px 0 30px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h2 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-links li {
    margin: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link span {
    font-size: 15px;
}

.music-services {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.music-services li {
    margin: 0;
}

.music-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-family: inherit;
    position: relative;
}

.music-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.music-link:active {
    transform: translateY(0);
}

.music-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

.music-link i {
    font-size: 18px;
}

.countdown-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    text-align: center;
}

.countdown-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.95);
}

.music-link:hover .countdown-tooltip,
.music-link:focus .countdown-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.countdown-tooltip .days-count {
    font-weight: 700;
    color: #ffffff;
}

/* Service-specific colors - only for icon and text */
.music-spotify i,
.music-spotify span {
    color: #1DB954;
}

.music-apple i,
.music-apple span {
    color: #FA243C;
}

.music-youtube i,
.music-youtube span {
    color: #FF0000;
}

.music-amazon i,
.music-amazon span {
    color: #00A8E1;
}

.music-bandcamp i,
.music-bandcamp span {
    color: #629AA0;
}

.music-soundcloud i,
.music-soundcloud span {
    color: #FF5500;
}

.link-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 10px 5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.link-button:active {
    transform: translateY(0);
}

.attribution {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.attribution:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
    .artist-profile {
        padding: 0;
        max-width: 100%;
    }

    .profile-content {
        padding: 40px 25px;
    }

    .profile-image {
        height: 300px;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .attribution {
        font-size: 10px;
        bottom: 5px;
        right: 5px;
        padding: 4px 8px;
    }

    .album-banner {
        padding: 25px 30px;
    }

    .album-banner .album-title {
        font-size: 28px;
    }

    .album-banner .album-date {
        font-size: 16px;
    }

    .music-services {
        gap: 10px;
    }

    .music-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .music-link i {
        font-size: 16px;
    }

    .social-link {
        padding: 10px 16px;
        font-size: 14px;
    }

    .social-link i {
        font-size: 16px;
    }

    .social-link span {
        font-size: 14px;
    }

    .social-links {
        gap: 12px;
    }
}

