
        /* Variáveis CSS */
        :root {
            --gold: #C5A253;
            --gold-light: #D4B267;
            --gold-dark: #B08C45;
            --dark: #0a0a0a;
            --darker: #000000;
            --dark-light: #1a1a1a;
            --text: #e2e2e2;
            --text-light: #a0a0a0;
            --white: #ffffff;
        }

        /* Reset e configurações básicas */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--darker);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }

        /* Background Animado Sofisticado */
        .animated-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        #stars1, #stars2, #stars3 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        #stars1 {
            background: transparent;
            animation: animStar 50s linear infinite;
        }

        #stars2 {
            background: transparent;
            animation: animStar 100s linear infinite;
        }

        #stars3 {
            background: transparent;
            animation: animStar 150s linear infinite;
        }

        #stars1:after, #stars2:after, #stars3:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, 
                rgba(197, 162, 83, 0.1) 0%, 
                rgba(197, 162, 83, 0.05) 25%, 
                rgba(197, 162, 83, 0.025) 50%, 
                transparent 70%);
        }

        @keyframes animStar {
            from { transform: translateY(0px); }
            to { transform: translateY(-2000px); }
        }

        /* Efeito de Partículas Douradas */
        .gold-particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            animation: floatParticle 8s infinite linear;
            z-index: -1;
        }

        .particle-1 {
            width: 6px;
            height: 6px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle-2 {
            width: 4px;
            height: 4px;
            top: 60%;
            left: 85%;
            animation-delay: 1s;
        }

        .particle-3 {
            width: 8px;
            height: 8px;
            top: 80%;
            left: 15%;
            animation-delay: 2s;
        }

        .particle-4 {
            width: 5px;
            height: 5px;
            top: 30%;
            left: 90%;
            animation-delay: 3s;
        }

        .particle-5 {
            width: 7px;
            height: 7px;
            top: 10%;
            left: 70%;
            animation-delay: 4s;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) translateX(50px) rotate(180deg);
                opacity: 0;
            }
        }

        /* Container Principal */
        .main-container {
            max-width: 600px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        /* Profile Picture */
        #profilePicture {
            display: block;
            width: 150px;
            height: 150px;
            margin: 0 auto 30px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid rgba(197, 162, 83, 0.3);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(197, 162, 83, 0.1);
            position: relative;
        }

        #profilePicture:hover {
            transform: scale(1.05);
            border-color: rgba(197, 162, 83, 0.6);
            box-shadow: 
                0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(197, 162, 83, 0.3),
                0 0 30px rgba(197, 162, 83, 0.2);
        }

        #profilePicture img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        #profilePicture:hover img {
            transform: scale(1.1);
        }

        /* User Name */
        #userName {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        #userName::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
        }

        /* Links Container */
        #links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 40px 0;
            width: 100%;
        }

        /* Link Items Sofisticados */
        .link {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 18px 25px;
            background: linear-gradient(145deg, 
                rgba(26, 26, 26, 0.9), 
                rgba(10, 10, 10, 0.9));
            border-radius: 15px;
            border: 1px solid rgba(197, 162, 83, 0.1);
            backdrop-filter: blur(10px);
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            z-index: 1;
        }

        .link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(197, 162, 83, 0.1), 
                transparent);
            transition: left 0.8s ease;
        }

        .link:hover {
            transform: translateY(-5px);
            border-color: rgba(197, 162, 83, 0.4);
            box-shadow: 
                0 15px 30px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(197, 162, 83, 0.2),
                0 0 20px rgba(197, 162, 83, 0.1);
            color: var(--gold-light);
        }

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

        .link i {
            font-size: 1.3rem;
            margin-right: 15px;
            width: 24px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .link:hover i {
            transform: scale(1.2);
        }

        /* Hashtag */
        #hashtag {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-top: 30px;
            padding: 12px 25px;
            border-radius: 30px;
            background: rgba(197, 162, 83, 0.1);
            border: 1px solid rgba(197, 162, 83, 0.2);
            transition: all 0.3s ease;
        }

        #hashtag:hover {
            background: rgba(197, 162, 83, 0.15);
            color: var(--gold-light);
            transform: translateY(-3px);
        }

        /* Popup Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            display: flex;
            opacity: 1;
        }

        .popup {
            background: linear-gradient(145deg, 
                rgba(26, 26, 26, 0.95), 
                rgba(10, 10, 10, 0.95));
            border-radius: 20px;
            border: 1px solid rgba(197, 162, 83, 0.3);
            padding: 40px;
            max-width: 400px;
            width: 90%;
            text-align: center;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(197, 162, 83, 0.2);
        }

        .overlay.active .popup {
            transform: scale(1);
        }

        .popup-photo {
            margin-bottom: 20px;
        }

        .popup-photo img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--gold);
        }

        .popup-quote p:first-child {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

        .popup-quote p:last-child {
            color: var(--text-light);
            font-style: italic;
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .popup-close:hover {
            color: var(--gold);
        }

        /* Efeito de Brilho Pulsante */
        .pulse-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, 
                rgba(197, 162, 83, 0.1) 0%, 
                rgba(197, 162, 83, 0.05) 30%, 
                transparent 70%);
            border-radius: 50%;
            animation: pulseGlow 6s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes pulseGlow {
            0%, 100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        /* Responsividade */
        @media (max-width: 768px) {
            #userName {
                font-size: 2rem;
            }
            
            .link {
                padding: 16px 20px;
            }
            
            .link i {
                font-size: 1.2rem;
                margin-right: 12px;
            }
            
            #profilePicture {
                width: 130px;
                height: 130px;
            }
        }

        @media (max-width: 480px) {
            #userName {
                font-size: 1.8rem;
            }
            
            .link {
                padding: 14px 18px;
                font-size: 0.9rem;
            }
            
            .link i {
                font-size: 1.1rem;
                margin-right: 10px;
            }
            
            #profilePicture {
                width: 110px;
                height: 110px;
            }
            
            #hashtag {
                font-size: 1rem;
            }
        }
        
    