 :root {
            --bg-color: #2B323B;
            --card-bg: #34404E;
            --accent-color: #FCBB3E;
            --text-secondary: #A6A6A6;
            --text-light: #FFFFFF;
            --text-light2:rgb(182, 182, 182);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-light);
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
        }

        .container {
            width: 100%;
            max-width: 400px;
            text-align: center;
        }

        /* Seções de Perfil */
        .profile-section {
            margin-bottom: 50px;
        }

        .avatar {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 3px solid var(--accent-color);
            margin-bottom: 15px;
            object-fit: cover;
        }

        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 25px;
            letter-spacing: -0.5px;
        }

        /* Botões */
        .link-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--card-bg);
            color: var(--text-light2);
            text-decoration: none;
            padding: 16px;
            margin-bottom: 12px;
            border-radius: 12px;
            border: 1px solid rgba(252, 187, 62, 0.1);
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        .link-button i {
            position: absolute;
            left: 20px;
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        .link-button:hover {
            transform: translateY(-3px);
            background-color: #3d4b5c;
            border-color: var(--accent-color);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Rodapé */
        footer {
            margin-top: 20px;
            color: #525252;
            font-size: 0.8rem;
            line-height: 1.5;
        }

        footer strong {
            color: #525252;
        }

        /* Divisor sutil entre perfis */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            margin: 40px 0;
            opacity: 0.3;
        }