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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1829 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-bg-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.animated-bg-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float-reverse 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(30px) translateX(-20px);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    animation: scaleIn 0.8s ease-out;
    transition: transform 0.3s ease;
    overflow: hidden;
    user-select: none;
}

.profile-image img {
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.profile-image:hover {
    transform: scale(1.05) rotate(5deg);
}

.artist-name {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 10px 30px rgba(0, 100, 255, 0.2);
}

.artist-bio {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00d4ff;
    letter-spacing: 2px;
}

/* Links Container */
.links-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Link Card */
.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.3) 0%, rgba(0, 100, 200, 0.1) 100%);
    border: 2px solid rgba(0, 150, 255, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }

/* Background Effect on Hover */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.link-card:hover::before {
    left: 100%;
}

/* Icon */
.link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    z-index: 2;
}

.link-card:hover .link-icon {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Content */
.link-content {
    flex: 1;
    z-index: 2;
}

.link-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.link-content p {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 600;
}

/* Arrow */
.link-arrow {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
    color: #00d4ff;
}

.link-card:hover .link-arrow {
    transform: translateX(10px) scale(1.2);
}

/* Hover Effects */
.link-card:hover {
    border-color: rgba(0, 212, 255, 0.8);
    background: linear-gradient(135deg, rgba(0, 80, 150, 0.5) 0%, rgba(0, 150, 255, 0.2) 100%);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.link-card:active {
    transform: translateY(-8px) scale(0.98);
}

/* Click Animation */
.link-card.clicked {
    animation: clickPulse 0.6s ease-out;
}

@keyframes clickPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 212, 255, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
    }
}

/* Footer */
.footer {
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(0, 212, 255, 0.6);
    font-weight: 600;
    animation: fadeIn 1s ease-out 1s backwards;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .artist-name {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .artist-bio {
        font-size: 1rem;
    }

    .link-card {
        padding: 18px 20px;
        gap: 15px;
    }

    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .link-content h3 {
        font-size: 1.1rem;
    }

    .link-content p {
        font-size: 0.85rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .header {
        margin-bottom: 40px;
    }

    .links-container {
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .artist-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .link-card {
        padding: 15px 15px;
        gap: 12px;
    }

    .link-content h3 {
        font-size: 1rem;
    }
}
