     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #790117 15%, #060102 40%, #be0918 100%);
            min-height: 100vh;
            color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        /* Foto do Artista */
        .artist-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #d4d4d4;
            box-shadow: 0 0 30px rgba(14, 13, 13, 0.5);
            margin-bottom: 30px;
            opacity: 0;
            transform: scale(0.8);
            animation: fadeInScale 1s ease forwards;
        }

        @keyframes fadeInScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Nome do Artista */
        .artist-name {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #f00505, #919191, #404040);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        /* Subtítulo/G￪nero */
        .artist-genre {
            font-size: 1.2rem;
            color: #d3d023;
            text-align: center;
            margin-bottom: 30px;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        /* Bio */
        .bio {
            text-align: center;
            max-width: 600px;
            line-height: 1.8;
            color: #bdffe5;
            margin-bottom: 50px;
            font-size: 1.1rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Redes Sociais */
        .social-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }

        .social-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(233, 69, 96, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.4), transparent);
            transition: left 0.5s;
        }

        .social-btn:hover::before {
            left: 100%;
        }

        .social-btn:hover {
            transform: translateY(-5px) scale(1.1);
            border-color: #e94560;
            box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
            background: rgba(233, 69, 96, 0.1);
        }

        .social-btn svg {
            width: 28px;
            height: 28px;
            fill: #ffffff;
            transition: fill 0.3s ease;
        }

        .social-btn:hover svg {
            fill: #e94560;
        }

        /* Part￭culas de fundo */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #e94560;
            border-radius: 50%;
            opacity: 0.5;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Footer */
        .footer {
            margin-top: 60px;
            text-align: center;
            color: #41c9ff;
            font-size: 0.9rem;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
        }

        /* Responsivo */
        @media (max-width: 600px) {
            .artist-name {
                font-size: 2rem;
            }
            
            .artist-photo {
                width: 150px;
                height: 150px;
            }
            
            .social-btn {
                width: 50px;
                height: 50px;
            }
            
            .social-btn svg {
                width: 24px;
                height: 24px;
            }
        }
  